/* ===================================================================
   ARTEMIS RESTAURANT - ELEGANT BASE STYLING
   Sophisticated Dark Theme with Patterns & Premium Typography
   =================================================================== */

:root {
    --gold: #c9a86d;
    --gold-light: #e6c89f;
    --gold-dark: #8b7355;
    --dark: #0f0f0f;
    --dark-secondary: #1a1a1a;
    --cream: #f5f3f0;
    --text-primary: #2a2a2a;
    --text-light: #7a7a7a;
    --border: #e0dbd7;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
    --transition: all 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--cream);
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-dark);
}

/* ===================================================================
   HEADER & NAVIGATION
   =================================================================== */

.site-header {
    background: var(--dark-secondary);
    border-bottom: 1px solid rgba(201, 168, 109, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(26, 26, 26, 0.95);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--gold) !important;
    font-size: 1.3rem;
    transition: var(--transition);
    white-space: nowrap;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.brand-icon {
    font-size: 2.2rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-weight: 700;
}

.brand-logo {
    height: 40px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
}

.brand-info {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.brand-name {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 0.55rem;
    color: rgba(201, 168, 109, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    transition: var(--transition);
    border-radius: 16px;
    position: relative;
}

.nav-link:hover {
    color: var(--gold) !important;
    background: rgba(201, 168, 109, 0.1);
}

.nav-link.active {
    color: var(--gold) !important;
    background: rgba(201, 168, 109, 0.15);
    border-bottom: 2px solid var(--gold);
}

.nav-link i {
    margin-right: 0.5rem;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
    border-left: 1px solid rgba(201, 168, 109, 0.3);
    padding-left: 1rem;
}

.lang-badge {
    padding: 0.35rem 0.75rem;
    background: rgba(201, 168, 109, 0.1);
    color: rgba(201, 168, 109, 0.8);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(201, 168, 109, 0.2);
}

.lang-badge:hover,
.lang-badge.active {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

/* ===================================================================
   CONTAINER & LAYOUT
   =================================================================== */

.container-xl {
    max-width: 1400px;
}

.site-main {
    min-height: calc(100vh - 200px);
}

/* ===================================================================
   DECORATIVE ELEMENTS
   =================================================================== */

.divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 2rem 0;
}

.divider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.divider-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.ornament {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.6;
    display: block;
    text-align: center;
}

.pattern-bg {
    position: relative;
    overflow: hidden;
}

.pattern-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(201, 168, 109, 0.03) 35px, rgba(201, 168, 109, 0.03) 70px);
    pointer-events: none;
    z-index: 0;
}

/* ===================================================================
   IMAGES & FRAMES
   =================================================================== */

.image-frame {
    position: relative;
    display: inline-block;
    width: 100%;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid var(--gold);
    opacity: 0.3;
    z-index: -1;
}

.image-frame::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gold);
    opacity: 0.15;
    z-index: -2;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* ===================================================================
   BUTTONS
   =================================================================== */

.btn-elegant {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border: 2px solid var(--gold);
    border-radius: 12px;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: var(--transition);
    z-index: -1;
}

.btn-elegant:hover::before {
    left: 0;
}

.btn-elegant:hover {
    color: var(--dark);
    box-shadow: var(--shadow);
}

.btn-elegant-filled {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.btn-elegant-filled:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-lg);
}

/* ===================================================================
   CARDS
   =================================================================== */

.card-elegant {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card-elegant:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.card-elegant h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark);
    margin-bottom: 1rem;
}

/* ===================================================================
   FOOTER
   =================================================================== */

.site-footer {
    background: var(--dark-secondary);
    color: var(--text-light);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(201, 168, 109, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 3rem 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
}

.footer-column h4 {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-column p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gold-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

/* Footer Brand Column */
.footer-brand {
    text-align: center;
}

.brand-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand-tagline {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.brand-motto {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    margin: 1rem 0 0;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '▸';
    color: var(--gold);
    margin-right: 0.75rem;
    font-size: 0.85rem;
    opacity: 0;
    transition: all 0.3s ease;
    margin-left: -1rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
    margin-left: 0;
}

/* Contact Info */
.contact-info p {
    margin-bottom: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.contact-link i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.address-text {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.address-text i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Hours List */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 168, 109, 0.1);
}

.hours-item strong {
    color: var(--gold);
    font-weight: 600;
    min-width: 80px;
}

.hours-item span {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: right;
}

@media (max-width: 480px) {
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .hours-item span {
        text-align: left;
    }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .footer-brand .social-links {
        justify-content: center;
    }
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 12px;
    color: var(--gold);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-4px);
}

/* Footer Bottom */
.footer-bottom {
    background: linear-gradient(180deg, transparent, rgba(201, 168, 109, 0.05));
    padding: 2rem 0;
    border-top: 1px solid rgba(201, 168, 109, 0.1);
    margin-top: 2rem;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-bottom-inner {
        gap: 1rem;
    }
}

.copyright {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================================================
   RESPONSIVE DESIGN
   =================================================================== */

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .navbar-brand {
        gap: 0.5rem;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .language-selector {
        border-left: none;
        border-top: 1px solid rgba(201, 168, 109, 0.3);
        padding-left: 0;
        padding-top: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .btn-elegant {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .card-elegant {
        padding: 1.5rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .site-header .navbar {
        padding: 0.75rem 0;
    }

    .brand-icon {
        font-size: 2rem;
    }

    .nav-link {
        padding: 0.4rem 0.7rem !important;
        font-size: 0.85rem;
    }

    .language-selector {
        gap: 0.3rem;
    }

    .lang-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* ===================================================================
   UTILITY CLASSES
   =================================================================== */

.text-gold {
    color: var(--gold);
}

.text-light {
    color: var(--text-light);
}

.divider {
    height: 1px;
    background: var(--border);
}

.section {
    padding: 4rem 0;
}

.section.dark {
    background: var(--dark-secondary);
    color: rgba(255, 255, 255, 0.9);
}

.section.dark h2,
.section.dark h3 {
    color: white;
}

.section.dark p {
    color: rgba(255, 255, 255, 0.8);
}
