/* ===== VARIABLES ===== */
:root {
    --gold: #C9A962;
    --gold-light: #D4B978;
    --gold-dark: #B89A4F;
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --cream: #F5F0E8;
    --cream-dark: #E8E0D4;
    --white: #FFFFFF;
    --gray: #666666;
    --gray-light: #999999;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.logo-icon {
    width: 28px;
    height: 28px;
}

.logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

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

.badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.hero h1 {
    font-size: clamp(48px, 10vw, 90px);
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.divider::before,
.divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.divider.white::before,
.divider.white::after {
    background: var(--white);
}

.divider.left {
    justify-content: flex-start;
}

.divider.left::before {
    display: none;
}

.divider svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.divider.white svg {
    fill: var(--white);
}

.subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ===== BUTTONS ===== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--black);
    padding: 18px 45px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn-gold svg {
    width: 16px;
    height: 16px;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold);
    padding: 18px 45px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-outline-gold svg {
    width: 16px;
    height: 16px;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-label.white {
    color: var(--gold);
}

.section-header h2 {
    font-size: clamp(36px, 5vw, 52px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
}

.section-header h2.white {
    color: var(--white);
}

.section-header p {
    color: var(--gray);
    max-width: 500px;
    margin: 20px auto 0;
}

/* ===== MENU CATEGORIES ===== */
.menu-categories {
    padding: 100px 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: var(--white);
    border: 1px solid #E5E5E5;
    padding: 50px 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
}

.category-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--gold);
}

.category-card h3 {
    font-size: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
}

.category-card p {
    font-size: 13px;
    color: var(--gray);
}

.text-center {
    text-align: center;
}

.mt-12 {
    margin-top: 50px;
}

/* ===== MENU SECTIONS ===== */
.menu-section {
    padding: 100px 0;
}

.bg-cream {
    background: var(--cream);
}

.bg-white {
    background: var(--white);
}

.bg-dark {
    background: var(--black);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.menu-grid.reverse {
    direction: rtl;
}

.menu-grid.reverse > * {
    direction: ltr;
}

.menu-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.menu-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.menu-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.menu-content h2 {
    font-size: clamp(32px, 4vw, 44px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
}

.menu-content h2.white {
    color: var(--white);
}

.menu-list {
    margin-top: 30px;
}

.menu-list.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px dotted rgba(201, 169, 98, 0.3);
}

.menu-item .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
}

.menu-item .price {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* Special Cards (Jus Spéciaux) */
.special-items {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.special-card {
    background: rgba(201, 169, 98, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 4px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.special-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.special-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.2);
    border-radius: 50%;
}

.special-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.special-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 5px;
}

.special-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.special-price {
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
}

/* Breakfast Cards */
.breakfast-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.breakfast-card {
    background: var(--white);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 4px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.breakfast-card:hover {
    border-color: rgba(201, 169, 98, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.breakfast-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.breakfast-header svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.breakfast-card h3 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 5px;
}

.breakfast-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

.breakfast-card .price {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
}

/* Supplements Box */
.supplements-box {
    background: rgba(201, 169, 98, 0.08);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 4px;
    padding: 25px;
}

.supplements-box h4 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 15px;
}

.supplements-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
}

.supplement-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.supplement-item span:first-child {
    color: var(--gray);
}

.supplement-item span:last-child {
    color: var(--gold);
    font-weight: 600;
}

/* Couscous Section */
.couscous-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.couscous-card {
    background: rgba(201, 169, 98, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 4px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.couscous-card h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 5px;
}

.couscous-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.couscous-card .price {
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
}

.couscous-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.badge-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--cream);
    padding: 100px 0 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
}

.contact-item h3 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 14px;
    color: var(--gray);
}

.phone-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
}

.phone-link:hover {
    text-decoration: underline;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.hour-item span:first-child {
    color: var(--gray);
}

.hour-item span:last-child {
    color: var(--black);
    font-weight: 500;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.contact-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
}

/* ===== FOOTER ===== */
footer {
    margin-top: 100px;
    padding: 60px 0;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-content h3 {
    font-size: 32px;
    color: var(--black);
    margin-bottom: 10px;
}

.footer-content p {
    font-size: 13px;
    color: var(--gray);
}

.footer-content .copyright {
    margin-top: 30px;
    color: var(--gray-light);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        gap: 50px;
    }
    
    .menu-list.two-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .menu-grid.reverse {
        direction: ltr;
    }
    
    .menu-image img {
        height: 350px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-image img {
        min-height: 300px;
    }
    
    .supplements-list {
        grid-template-columns: 1fr;
    }
    
    .couscous-badges {
        flex-direction: column;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .btn-gold,
    .btn-outline-gold {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .category-card {
        padding: 35px 20px;
    }
    
    .special-card,
    .couscous-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .special-price,
    .couscous-card .price {
        align-self: flex-end;
    }
}
