/* =======================================
   CSS Variables & Design System
   ======================================= */
   :root {
    /* Color Palette */
    --color-primary: #1F3D2B; /* Deep Green */
    --color-secondary: #C89B3C; /* Warm Gold */
    --color-accent: #4A2C2A; /* Rich Brown */
    --color-bg: #F8F6F2; /* Off-white */
    --color-text: #2B2B2B; /* Charcoal */
    --color-light: #FFFFFF;
    --color-grey: #666666;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =======================================
   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(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.w-full { width: 100%; }
.flex { display: flex; }
.items-center { align-items: center; gap: 15px; }

/* =======================================
   Typography Utilities
   ======================================= */
h1 { font-size: 4rem; color: var(--color-light); }
h2 { font-size: 3rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
p { color: var(--color-grey); margin-bottom: 1rem; }

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

/* =======================================
   Buttons
   ======================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 44, 42, 0.2);
}

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

.btn-outline-light:hover {
    background-color: var(--color-light);
    color: var(--color-primary);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline-dark:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-gold {
    background-color: var(--color-secondary);
    color: var(--color-light);
}
.btn-gold:hover {
    background-color: #b58931;
}

/* =======================================
   Icons & Badges
   ======================================= */
.lucide { width: 20px; height: 20px; }
.icon-gold { color: var(--color-secondary); }
.icon-green { color: var(--color-primary); }
.icon-primary { color: var(--color-primary); width: 24px; height: 24px; }
.fill-gold { fill: var(--color-secondary); }

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(31, 61, 43, 0.1);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =======================================
   Navbar
   ======================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all var(--transition-fast);
}

.navbar.scrolled {
    background-color: var(--color-light);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--color-primary);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-light);
    transition: color var(--transition-fast);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--color-light);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width var(--transition-fast);
}

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

@media (max-width: 768px) {
    .nav-links { display: none; }
    .d-mobile-none { display: none; }
}

/* =======================================
   Hero Section
   ======================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.hero:hover .hero-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(31,61,43,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--color-light);
    max-width: 800px;
}

.hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 3rem;
}

.quick-info {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

/* =======================================
   About Section
   ======================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-highlights {
    list-style: none;
    margin-top: 2rem;
}

.about-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.main-img img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
}

/* =======================================
   Menu Section
   ======================================= */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.menu-card {
    background: var(--color-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-body {
    padding: 25px;
    position: relative;
}

.card-body h3 {
    margin-bottom: 10px;
}

.card-body p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.price {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.25rem;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(200,155,60,0.1);
    border-radius: 30px;
}

/* =======================================
   Features / Why Choose Us
   ======================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.feature-item {
    padding: 30px 20px;
    background: var(--color-light);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform var(--transition-fast);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(31,61,43,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--color-primary);
}

/* =======================================
   Gallery Section
   ======================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    margin-top: 3rem;
}

.gallery-item {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transition: transform var(--transition-fast);
}

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

.item-large { grid-column: span 2; grid-row: span 2; }
.item-tall { grid-row: span 2; }
.item-wide { grid-column: span 3; }

@media (max-width: 768px) {
    .gallery-grid { display: flex; flex-direction: column; }
    .gallery-item { height: 250px; }
}

/* =======================================
   Reviews Section
   ======================================= */
.bg-light { background-color: var(--color-light); }

.rating-overall {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 10px;
}

.reviews-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
}

.review-card {
    min-width: 320px;
    background: var(--color-bg);
    padding: 30px;
    border-radius: 20px;
    scroll-snap-align: start;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text);
}

.reviewer {
    margin-top: 15px;
    font-weight: 600;
    color: var(--color-primary);
}

/* =======================================
   Location & Contact
   ======================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-card {
    background: var(--color-light);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.contact-card h4 {
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.contact-card p { margin-bottom: 0; }

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #e2dfd5;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* =======================================
   CTA Strip
   ======================================= */
.cta-strip {
    background-color: var(--color-primary);
    padding: 60px 0;
    color: var(--color-light);
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-flex h2 {
    color: var(--color-light);
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 15px;
}

@media (max-width: 768px) {
    .cta-flex { flex-direction: column; text-align: center; }
}

/* =======================================
   Footer
   ======================================= */
.footer {
    background: #112217; /* Darker green */
    color: rgba(255,255,255,0.7);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--color-light);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
}

.social-links a:hover {
    background: var(--color-secondary);
}

.footer h4 {
    color: var(--color-light);
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* =======================================
   Mobile Sticky Bar
   ======================================= */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-light);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.btn-sticky {
    flex: 1;
    padding: 15px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-sticky.call {
    background: var(--color-light);
    color: var(--color-primary);
}

.btn-sticky.order {
    background: var(--color-primary);
    color: var(--color-light);
}

@media (max-width: 768px) {
    .mobile-sticky-bar { display: flex; }
    /* Prevent content from hiding behind the sticky bar */
    body { padding-bottom: 60px; }
}

/* =======================================
   Animations
   ======================================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
