/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --color-emerald: #047857;
    --color-emerald-dark: #065f46;
    --color-emerald-light: #059669;
    --color-cream: #F5F5DC;
    --color-cream-light: #FAF9F6;
    --color-cream-dark: #E8E8C8;
    --color-text: #1a1a1a;
    --color-text-light: #4a4a4a;
    --color-white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    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-cream-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Background Shapes
   =================================== */
.bg-shape {
    position: fixed;
    z-index: -1;
    pointer-events: none;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(4,120,87,0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,245,220,0.5) 0%, transparent 70%);
    bottom: 20%;
    left: -100px;
    border-radius: 50%;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(4,120,87,0.06) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    border-radius: 50%;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-emerald);
    color: var(--color-white);
    border-color: var(--color-emerald);
}

.btn-primary:hover {
    background: var(--color-emerald-dark);
    border-color: var(--color-emerald-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-emerald);
    border-color: var(--color-emerald);
}

.btn-secondary:hover {
    background: var(--color-emerald);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-emerald);
    border-color: var(--color-emerald);
}

.btn-outline:hover {
    background: var(--color-emerald);
    color: var(--color-white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Section Tags & Titles
   =================================== */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-emerald);
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: var(--color-emerald);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

/* ===================================
   Navigation
   =================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,249,246,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(4,120,87,0.1);
    transition: var(--transition);
}

#navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-emerald);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--color-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
}

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

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

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

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

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

.nav-links .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-emerald);
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-cream-light);
    z-index: 1001;
    padding: 80px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-emerald);
    cursor: pointer;
    line-height: 1;
}

.mobile-link {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 16px 0;
    border-bottom: 1px solid var(--color-cream-dark);
}

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

.mobile-menu .btn {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-cream-light) 0%, var(--color-cream) 50%, rgba(245,245,220,0.7) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-emerald);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(4,120,87,0.1);
    border-radius: 50px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--color-emerald);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(4,120,87,0.15);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 550px;
}

.hero-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.hero-card:hover {
    transform: translateY(-8px);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-1 {
    width: 280px;
    height: 380px;
    top: 0;
    right: 40px;
    z-index: 2;
}

.card-2 {
    width: 240px;
    height: 200px;
    bottom: 40px;
    right: 0;
    z-index: 1;
}

.card-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--color-emerald);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Geometric Accents */
.geo-accent {
    position: absolute;
    opacity: 0.6;
}

.geo-circle {
    width: 120px;
    height: 120px;
    border: 4px solid var(--color-emerald);
    border-radius: 50%;
    top: 15%;
    left: -60px;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid rgba(4,120,87,0.15);
    bottom: 20%;
    left: 10%;
    transform: rotate(-15deg);
}

.geo-square {
    width: 60px;
    height: 60px;
    background: var(--color-cream-dark);
    border-radius: 12px;
    top: 45%;
    left: 5%;
    transform: rotate(45deg);
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 100px 0;
    background: var(--color-white);
}

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

.about-image-wrap {
    position: relative;
    height: 600px;
}

.about-img-main {
    width: 75%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--color-white);
    z-index: 3;
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Geometric accent behind images */
.about-image-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--color-emerald);
    border-radius: var(--radius-lg);
    opacity: 0.1;
    z-index: 1;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--color-cream-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: var(--color-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

/* ===================================
   Menu Section
   =================================== */
.menu {
    padding: 100px 0;
    background: var(--color-cream-light);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-emerald), var(--color-emerald-light), var(--color-emerald));
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.menu-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--color-white);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.menu-card--large {
    grid-column: span 7;
}

.menu-card:not(.menu-card--large) {
    grid-column: span 5;
}

.menu-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.menu-card-content {
    padding: 24px;
}

.menu-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-emerald);
    margin-bottom: 8px;
}

.menu-card-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.menu-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    padding: 100px 0;
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,120,87,0.3), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 5; }

/* ===================================
   Location Section
   =================================== */
.location {
    padding: 100px 0;
    background: var(--color-cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.location-info {
    padding: 40px;
    background: var(--color-emerald);
    border-radius: var(--radius-lg);
    color: var(--color-white);
}

.location-info .section-tag {
    color: var(--color-cream);
}

.location-info .section-tag::before {
    background: var(--color-cream);
}

.location-info .section-title {
    color: var(--color-white);
}

.location-details {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.location-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
}

.location-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--color-cream);
}

.location-item p,
.location-item a {
    font-size: 0.95rem;
    color: rgba(245,245,220,0.85);
    line-height: 1.6;
}

.location-item a:hover {
    color: var(--color-white);
}

.location-info .btn-primary {
    background: var(--color-cream);
    color: var(--color-emerald);
    border-color: var(--color-cream);
}

.location-info .btn-primary:hover {
    background: var(--color-white);
    border-color: var(--color-white);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 450px;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 100px 0;
    background: var(--color-cream-light);
}

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

.contact-content {
    padding: 40px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-email {
    margin-top: 24px;
}

.contact-email a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-emerald);
    padding: 12px 24px;
    background: rgba(4,120,87,0.08);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contact-email a:hover {
    background: var(--color-emerald);
    color: var(--color-white);
}

.contact-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition);
    background: var(--color-cream-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-emerald);
    background: var(--color-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(4,120,87,0.1);
    border-radius: var(--radius-sm);
    color: var(--color-emerald);
    font-weight: 500;
    margin-top: 16px;
}

.form-success svg {
    min-width: 24px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-emerald-dark);
    color: var(--color-cream);
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    color: var(--color-cream);
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    background: var(--color-cream);
    color: var(--color-emerald);
}

.footer-brand p {
    color: rgba(245,245,220,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-cream);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(245,245,220,0.7);
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-white);
}

.footer-contact li {
    color: rgba(245,245,220,0.7);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(245,245,220,0.15);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(245,245,220,0.5);
    font-size: 0.85rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrap {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .menu-card--large {
        grid-column: span 12;
    }

    .menu-card:not(.menu-card--large) {
        grid-column: span 6;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 220px);
    }

    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(2) { grid-column: span 1; }
    .gallery-item:nth-child(3) { grid-column: span 1; }
    .gallery-item:nth-child(4) { grid-column: span 1; }
    .gallery-item:nth-child(5) { grid-column: span 1; }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .menu-card--large,
    .menu-card:not(.menu-card--large) {
        grid-column: span 12;
    }

    .menu-card img {
        height: 220px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .location-info {
        padding: 24px;
    }

    .contact-content,
    .contact-form {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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