/* ========================================
   CSS VARIABLES & DESIGN SYSTEM
   ======================================== */
:root {
    /* Colors - Nature & Prestige Palette */
    --primary: #2E4B2C;           /* Hunter Green */
    --accent: #B87333;            /* Copper Metallic */
    --background: #F9FAF8;        /* Off-white */
    --text-dark: #1A1A1A;         /* Soft Black */
    --text-light: #FFFFFF;        /* White */
    --overlay: rgba(0, 0, 0, 0.6);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--background);
    line-height: 1.7;
    letter-spacing: 0.3px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-tag.light {
    color: var(--accent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

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

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    line-height: 1.8;
}

.section-subtitle.centered {
    margin: 0 auto;
    text-align: center;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.8);
}

.highlight-word {
    color: var(--accent);
    font-weight: 600;
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-hero {
    background: var(--accent);
    color: var(--text-light);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.4);
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.6);
}

.btn-submit {
    background: var(--primary);
    color: var(--text-light);
    width: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* ========================================
   HEADER - Sticky Glassmorphism
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(46, 75, 44, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.header.scrolled .logo-img {
    height: 50px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition-smooth);
}

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

/* Fallback text logo if image doesn't load */
.logo a:not(:has(img)) {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.mobile-menu-content {
    text-align: center;
}

.mobile-nav-list {
    margin-bottom: var(--spacing-lg);
}

.mobile-nav-list li {
    margin-bottom: var(--spacing-md);
}

.mobile-nav-link {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
    color: var(--accent);
    transform: translateX(10px);
    display: inline-block;
}

.btn-mobile {
    margin-top: var(--spacing-md);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1600891964599-f61ba0e24092?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 0 var(--spacing-md);
}

.hero-subtitle {
    font-size: 0.875rem;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent);
    border-radius: 15px;
    position: relative;
    animation: bounce 2s infinite;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* ========================================
   CONCEPT SECTION
   ======================================== */
.concept {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.concept-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
    transition: var(--transition-smooth);
}

.concept-image:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.concept-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.concept-image:hover img {
    transform: scale(1.1);
}

.concept-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(46, 75, 44, 0.4), transparent);
}

.concept-content {
    padding: var(--spacing-md);
}

.concept-text {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: var(--spacing-md);
    color: #555;
}

.concept-highlights {
    margin: var(--spacing-lg) 0;
    display: grid;
    gap: var(--spacing-md);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.05), rgba(46, 75, 44, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--accent);
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(184, 115, 51, 0.15);
}

.highlight-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #d4964e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(184, 115, 51, 0.3);
}

.highlight-icon i {
    color: white;
    font-size: 1.75rem;
}

.highlight-content {
    flex: 1;
}

.highlight-word {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.25rem 0;
    display: block;
}

.highlight-desc {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin: 0;
}

/* ========================================
   PRESTATIONS SECTION
   ======================================== */
.prestations {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f5f7fa 0%, var(--background) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.prestation-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.prestation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), #d4964e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.prestation-card:hover::before {
    transform: scaleX(1);
}

.prestation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.prestation-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #3a5f38 100%);
    color: var(--text-light);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(46, 75, 44, 0.3);
}

.prestation-card.featured::before {
    background: linear-gradient(90deg, var(--accent), #d4964e);
    transform: scaleX(1);
}

.prestation-card.featured .card-title,
.prestation-card.featured .card-description,
.prestation-card.featured .card-features li {
    color: var(--text-light);
}

.prestation-card.featured .card-icon {
    background: var(--accent);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.4);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--text-dark);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7);
    }
}

.card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent), #d4964e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: var(--transition-bounce);
    box-shadow: 0 10px 25px rgba(184, 115, 51, 0.3);
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    top: 0;
    left: 0;
}

.prestation-card:hover .card-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 35px rgba(184, 115, 51, 0.5);
}

.card-icon i {
    font-size: 2.75rem;
    color: white;
    position: relative;
    z-index: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    text-align: center;
    line-height: 1.3;
}

.card-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.card-features {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: rgba(249, 250, 248, 0.5);
    border-radius: 15px;
}

.prestation-card.featured .card-features {
    background: rgba(255, 255, 255, 0.1);
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #555;
}

.card-features li:last-child {
    margin-bottom: 0;
}

.card-features i {
    color: var(--accent);
    font-size: 1rem;
    min-width: 20px;
}

.prestation-card.featured .card-features i {
    color: var(--accent);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: var(--spacing-sm);
    transition: var(--transition-smooth);
}

.card-link:hover {
    gap: 1rem;
    transform: translateX(5px);
}

.prestation-card.featured .card-link {
    color: var(--accent);
}

/* ========================================
   MENU SECTION (Dark Mode)
   ======================================== */
.menu-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1f3520 100%);
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.1), transparent);
    border-radius: 50%;
}

.menu-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: var(--spacing-md);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-header {
    margin-bottom: var(--spacing-xs);
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
}

.menu-item-dish {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.dish-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
}

.dish-dots {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        var(--accent) 0px,
        var(--accent) 4px,
        transparent 4px,
        transparent 8px
    );
}

.dish-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
}

.menu-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.menu-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.menu-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.menu-footer {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.menu-note {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.menu-note i {
    color: var(--accent);
    font-size: 1.25rem;
}

/* ========================================
   GALERIE & CHEF SECTION
   ======================================== */
.galerie {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.galerie-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.chef-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
}

.chef-bio,
.chef-philosophy {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: var(--spacing-md);
}

.chef-signature {
    margin-top: var(--spacing-lg);
}

.signature-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    height: 300px;
}

.gallery-item.large {
    grid-column: span 2;
    height: 400px;
}

.gallery-item.tall {
    grid-row: span 2;
    height: 620px;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(46, 75, 44, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 700;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f5f7fa 0%, var(--background) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 120px;
}

.contact-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: var(--spacing-lg);
}

.contact-details {
    margin-top: var(--spacing-lg);
}

.contact-detail-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #d4964e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 1.5rem;
    color: white;
}

.detail-content h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.detail-content p,
.detail-content a {
    color: #666;
    font-size: 1rem;
}

.detail-content a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
}

.form-note {
    font-size: 0.875rem;
    color: #999;
    text-align: center;
    margin-top: var(--spacing-sm);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1a2e1a 0%, var(--primary) 100%);
    color: var(--text-light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.footer-tagline {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-list a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
}

.footer-copyright,
.footer-credit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-credit a {
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-credit a:hover {
    color: var(--accent);
}

/* ========================================
   MODAL (Mentions Légales)
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    margin: var(--spacing-lg);
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary);
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.modal-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: var(--spacing-sm);
}

.modal-content a {
    color: var(--accent);
}

.modal-content a:hover {
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .concept-grid,
    .menu-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .menu-image {
        order: -1;
    }
    
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }
    
    .nav,
    .header .btn-primary {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .concept-image {
        transform: rotate(0deg);
        height: 400px;
    }
    
    .concept-image img {
        height: 100%;
    }
    
    .prestations-grid {
        grid-template-columns: 1fr;
    }
    
    .prestation-card.featured {
        transform: scale(1);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Menu mobile - réduction hauteur */
    .menu-list {
        gap: var(--spacing-md);
    }
    
    .menu-item {
        padding-bottom: var(--spacing-sm);
    }
    
    .dish-name {
        font-size: 1.25rem;
    }
    
    .dish-description {
        font-size: 0.875rem;
    }
    
    /* Logo mobile */
    .logo-img {
        height: 50px;
    }
    
    .header.scrolled .logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-md);
    }
}

/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .burger,
    .mobile-menu,
    .scroll-indicator,
    .btn,
    .contact-form {
        display: none;
    }
}
