/* ========================================
   CSS Variables & Reset
======================================== */
:root {
    --forest-green: #3d5340;
    --forest-green-dark: #2d3d30;
    --cream: #f5f3ed;
    --cream-dark: #e8e4d9;
    --gold: #c9a961;
    --gold-dark: #b89653;
    --charcoal: #2c2c2c;
    --gray: #6b7270;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    color: var(--charcoal);
    line-height: 1.6;
}

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

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    font-weight: 700;
}

.cinzel {
    font-family: 'Cinzel', serif;
}

/* ========================================
   Utility Classes
======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.relative {
    position: relative;
    z-index: 10;
}

.hidden {
    display: none !important;
}

.section-padding {
    padding: 120px 0;
}

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

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

.bg-forest-green {
    background-color: var(--forest-green);
    position: relative;
}

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

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

/* ========================================
   Animations
======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.delay-5 { transition-delay: 0.5s; }

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.3);
}

/* ========================================
   Navigation
======================================== */
#navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(61, 83, 64, 0.95);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 50px;
    }
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

.desktop-menu {
    display: none;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--cream);
    cursor: pointer;
    padding: 8px;
}

.menu-icon {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    background: var(--forest-green);
    padding: 16px 24px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--gold);
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    position: relative;
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    object-fit: contain;
}

.hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 48px;
    font-weight: 300;
}

.btn-gold {
    background: var(--gold);
    color: white;
    padding: 16px 48px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    cursor: pointer;
}

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

.btn-full {
    width: 100%;
}

.scroll-indicator {
    margin-top: 64px;
    animation: bounce 2s infinite;
}

.scroll-icon {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    color: var(--gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
}

/* ========================================
   Section Headers
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* ========================================
   About Section - Chef Cards
======================================== */
.chef-grid {
    display: grid;
    gap: 32px;
}

.chef-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.chef-image-wrapper {
    width: 192px;
    height: 192px;
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    overflow: hidden;
}

.chef-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chef-name {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.chef-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.chef-description {
    color: var(--gray);
    margin-bottom: 16px;
}

.chef-experience {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .chef-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   Services Section
======================================== */
.pattern-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.services-grid {
    display: grid;
    gap: 32px;
}

.service-card {
    background: var(--forest-green-dark);
    padding: 32px;
    border-radius: 8px;
}

.service-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.service-description {
    color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   What Sets Us Apart
======================================== */
.distinction-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.distinction-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.distinction-image {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.distinction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.distinction-content {
    padding: 0;
}

.distinction-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.distinction-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

@media (min-width: 768px) {
    .distinction-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    
    .distinction-image {
        height: 280px;
    }
    
    .distinction-row-center {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .distinction-image {
        height: 320px;
    }
    
    .distinction-title {
        font-size: 2rem;
    }
    
    .distinction-description {
        font-size: 1.125rem;
    }
}

/* ========================================
   Cuisines Section
======================================== */
.cuisines-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.cuisine-item {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    border: 2px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cuisine-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.2);
}

.cuisine-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.cuisine-description {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .cuisines-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cuisines-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   Timeline Section
======================================== */
.timeline-container {
    position: relative;
}

.timeline-line {
    display: none;
}

.timeline-grid {
    display: grid;
    gap: 48px;
}

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

.timeline-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.timeline-number {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
}

.timeline-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.timeline-description {
    color: var(--gray);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .timeline-line {
        display: block;
        position: absolute;
        top: 40px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: var(--gold);
        z-index: 0;
    }
    
    .timeline-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 32px;
    }
}

/* ========================================
   Contact Section
======================================== */
.contact-grid {
    display: grid;
    gap: 48px;
}

.contact-info {
    background: var(--forest-green);
    padding: 48px;
    border-radius: 8px;
    color: var(--white);
}

.contact-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    object-fit: contain;
}

.contact-heading {
    font-size: 2rem;
    margin-bottom: 16px;
    text-align: center;
}

.contact-tagline {
    color: var(--gold);
    text-align: center;
    margin-bottom: 48px;
    font-style: italic;
    font-size: 1.125rem;
}

.team-contacts {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.team-contact {
    padding-top: 24px;
    border-top: 1px solid var(--gold);
}

.team-member-name {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.team-member-phone {
    color: var(--white);
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.team-member-phone:hover {
    color: var(--gold);
}

.main-contact {
    border-top: 2px solid var(--gold);
}

.main-contact-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.main-contact-phone {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--cream);
    padding: 48px;
    border-radius: 8px;
}

.form-heading {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-textarea {
    resize: vertical;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 0;
    object-fit: contain;
}

.footer-tagline {
    color: var(--gray);
    font-style: italic;
    margin: 0;
}

.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: var(--gold);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--white);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.footer-copyright {
    color: var(--gray);
    font-size: 0.875rem;
}

.footer-credit {
    color: var(--gold);
    font-size: 0.875rem;
    font-style: italic;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ========================================
   Responsive Utilities
======================================== */
@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}