:root {
    --green: #0B3D2E;
    --cream: #FAF6F0;
    --orange: #D38B53;
    --gold: #C7A56A;
    --font-serif: "Cormorant Garamond", serif;
    --font-sans: "Lato", sans-serif;
}

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

body {
    background: var(--cream);
    font-family: var(--font-sans);
    color: var(--green);
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--green);
    color: white;
}

.navbar .logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    text-decoration: none;
}

.nav-links a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-size: 1rem;
}

.btn-small {
    padding: 6px 14px;
    border: 1px solid var(--gold);
    border-radius: 3px;
}

/* NAVBAR positioned for dropdown */
.navbar { position: relative; z-index: 1000; }

/* Dropdown menu anchored to header (left/top set by JS to align with the button) */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: auto;
    right: auto;
    background: white;
    color: var(--green);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 8px;
    display: none;
    min-width: 220px;
    z-index: 3000; /* sit above most page elements */
}
.nav-dropdown.open { display: block; }
.nav-dropdown-content a {
    display: block;
    padding: 10px 14px;
    color: var(--green);
    text-decoration: none;
    border-radius: 6px;
}
.nav-dropdown-content a:hover {
    background: #f5f5f5;
    color: var(--orange);
}

/* Ensure dropdown doesn't overflow on small screens */
@media (max-width: 480px) {
    .nav-dropdown { left: 8px !important; right: 8px !important; min-width: auto; }
}

/* HERO */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background: var(--cream);
}

.hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fork-knife-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 350px;
}

.hero-img {
    /* Use a positioned container so child images can overlap like a collage */
    position: relative;
    width: 100%;
    height: 420px;
    /* remove grid behavior; images will be absolutely positioned */
}

.hero-img img {
    position: absolute;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

/* Layout for three-image collage (first = large left, second = top-right, third = bottom overlapping)
   Adjust widths/heights and offsets to taste. */
.hero-img img:nth-child(1) {
    top: 0;
    left: 0;
    width: 58%;
    height: 68%;
    z-index: 3;
}

.hero-img img:nth-child(2) {
    top: 6%;
    right: 0;
    width: 40%;
    height: 50%;
    z-index: 4;
    transform: translateX(6%);
}

.hero-img img:nth-child(3) {
    bottom: 0;
    left: 28%;
    width: 52%;
    height: 54%;
    z-index: 2;
    transform: translateY(8%);
}

/* Hover lift for subtle interaction */
.hero-img img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Responsive: stack images more naturally on narrow screens */
@media (max-width: 900px) {
    .hero-img {
        height: 360px;
    }

    .hero-img img:nth-child(1) {
        left: 4%;
        top: 0;
        width: 62%;
        height: 60%;
    }

    .hero-img img:nth-child(2) {
        right: 6%;
        top: 4%;
        width: 36%;
        height: 44%;
        transform: none;
    }

    .hero-img img:nth-child(3) {
        left: 10%;
        bottom: -6%;
        width: 54%;
        height: 46%;
        transform: none;
    }
}

@media (max-width: 480px) {
    /* On very small screens, fall back to stacked, non-overlapping layout */
    .hero-img {
        position: relative;
        height: auto;
    }

    .hero-img img {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 12px;
        transform: none !important;
        box-shadow: none;
    }
}

/* INTRO SECTION */
.intro {
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.intro h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
}

.intro-images {
    display: grid;
    gap: 10px;
    grid-auto-rows: 500px; /* controls vertical size of each image row */
    overflow: hidden;
}

.intro-images img {
    width: 100%;
    border-radius: 6px;
}

/* SPICES SECTION */
.spices-section {
    top: 2060px;
    left: 110px;
    width: 530px;
    height: 482px;
    /* overflow: hidden;
    margin: 60px 0; */
}

.spices-section img {
    /* width: 100%;
    height: 100%;
    object-fit: cover; */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* COMMITMENT SECTION */
.commitment {
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.commitment-images {
    display: grid;
    gap: 10px;
    grid-auto-rows: 500px; /* controls vertical size of each image row */
    overflow: hidden;
}

.commitment-content {
    max-width: 500px;
}

.commitment h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.commitment p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--green);
    margin-bottom: 30px;
}

.menu-buttons {
    display: flex;
    gap: 20px;
}

.btn-menu {
    padding: 12px 25px;
    border: 2px solid var(--green);
    color: var(--green);
    text-decoration: none;
    font-size: 0.95rem;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-menu:hover {
    background: var(--green);
    color: white;
}

/* SPECIALS */
.specials {
    padding: 60px 5%;
    text-align: center;
}

.specials h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
}

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

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 6px;
}

/* RESERVATION CTA SECTION */
.reservation-cta {
    background: var(--orange);
    padding: 80px 5%;
    text-align: center;
    color: white;
}

.reservation-cta h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-cta {
    padding: 12px 35px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    background: white;
    color: var(--orange);
}

/* SOCIAL SECTION */
.social-section {
    background: url('../img/social-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px 5%;
    text-align: center;
    color: white;
    font-size: 1.2rem;
}

/* FOOTER */
.footer {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--green);
    color: white;
    padding: 60px 5%;
    gap: 40px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

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

.footer-left p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-left a {
    color: white;
    text-decoration: none;
}

.footer-left a:hover {
    text-decoration: underline;
}

.footer-center {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-center p {
    margin-bottom: 15px;
}

.footer-right {
    border-radius: 8px;
    overflow: hidden;
}

.footer-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-map {
    background: url('../img/map.png');
    background-size: cover;
    border-radius: 6px;
}

.footer-map {
    background: url('../img/map.png');
    background-size: cover;
    border-radius: 6px;
}

/* PAGE HEADER */
.header {
  top: 0px;
  left: 0px;
  width: 1440px;
  height: 120px;
  background-color: #052b0e;
  box-shadow: 0px 2px 10px rgba(3,3,3,0.1);
}


.pattern {
    background-image: url('../img/pattern.png');
    background-size: 280px;
    background-repeat: repeat;
}

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

.page-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-subtext {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ABOUT HERO SECTION */
.about-hero {
    background: linear-gradient(rgba(11, 61, 46, 0.85), rgba(11, 61, 46, 0.85)), 
                url('../img/pattern.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 5%;
    display: flex;
    align-items: center;
}

.about-hero-content {
    max-width: 600px;
}

.about-hero h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-hero p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* OUR TEAM SECTION */
.our-team {
    padding: 80px 5%;
    background: var(--cream);
    text-align: center;
}

.our-team h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: var(--green);
}

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

.team-member {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--green);
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* AWARDS SECTION */
.awards-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #d4a574 0%, #e5b896 100%);
    text-align: center;
}

.awards-section h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: var(--green);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.award {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    background: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.award h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--green);
    margin-bottom: 10px;
}

/* SOCIAL FOOTER */
.social-footer {
    background: white;
    padding: 40px 5%;
    text-align: center;
    font-size: 1.1rem;
    color: var(--green);
    border-bottom: 2px solid #e5e5e5;
}

/* SERVICE CARDS */
.services-section {
    padding: 60px 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--orange);
    padding: 40px 20px;
    text-align: center;
    border-radius: 6px;
    color: white;
}

.service-card h3 {
    font-family: var(--font-serif);
    margin: 15px 0;
}

.service-icon {
    width: 60px;
}

/* MENU PAGE */
.menu-section {
    padding: 80px 5% 60px;
    background: var(--cream);
}

.menu-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 2.6rem;
    margin-bottom: 50px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.menu-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.menu-item h3 {
    font-family: var(--font-serif);
    margin-bottom: 6px;
    font-size: 1.4rem;
}

.menu-item p {
    opacity: 0.8;
    font-size: 1rem;
    margin-bottom: 6px;
}

.menu-item span {
    font-weight: bold;
    color: var(--green);
}



/* Menu hero visual (copied from page-specific styles) */


.menu-title.special-hero{font-family:'Dancing Script', cursive;font-size:3.2rem;text-align:center;margin-top:8px;margin-bottom:18px;color:var(--green)}

.menu-hero-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:36px;padding:24px 6%;position:relative;align-items:start}
.menu-hero-grid::after{content:'';position:absolute;left:50%;top:22%;transform:translateX(-50%);width:60%;height:38%;background:url('../img/GheeKaramDosa.jpg') center/contain no-repeat;opacity:0.12;pointer-events:none;z-index:0}
.menu-item{position:relative;z-index:2;display:flex;align-items:center;gap:20px}
.circle{width:160px;height:160px;border-radius:50%;background-size:cover;background-position:center;box-shadow:0 8px 20px rgba(0,0,0,0.16);border:12px solid rgba(111,64,46,0.92);flex-shrink:0}
.label{background:#7a4f36;color:white;padding:16px 22px;border-radius:6px;font-weight:800;font-size:1.5rem;display:inline-block;margin-left:-30px;box-shadow:0 8px 20px rgba(0,0,0,0.12)}
.price{font-size:1.6rem;font-weight:900;color:#000;margin-top:8px}
.label-right{margin-left:0;margin-right:-30px}
.label-sub{display:block;font-size:0.95rem;font-weight:600;margin-top:6px;color:#222}
.menu-section::before, .menu-section::after{content:'';position:absolute;width:140px;height:140px;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='%237a4f36' opacity='0.9'><path d='M35 10c35 20 70 25 95 45 15 13 30 40 20 60-16 31-55 40-90 30-40-12-40-50-25-78C42 44 18 30 35 10z'/></g></svg>");background-size:contain;background-repeat:no-repeat;opacity:0.9}
.menu-section::before{left:18px;top:0}
.menu-section::after{right:18px;bottom:0;transform:rotate(180deg)}

@media (max-width:980px){.menu-hero-grid{grid-template-columns:repeat(2,1fr)}.circle{width:128px;height:128px}.label{font-size:1.25rem}}
@media (max-width:600px){.menu-hero-grid{grid-template-columns:1fr;padding:18px}.circle{width:96px;height:96px;border-width:8px}.label{display:block;margin-left:0}.label-right{margin-right:0}.menu-title{font-size:2rem}}

/* larger variation */
.menu-hero-grid--large .circle{width:180px;height:180px;border-width:14px}
.menu-hero-grid--large .label{font-size:1.45rem;padding:18px 24px}
.menu-hero-grid--large .menu-item{gap:18px}

.menu-footer-pattern {
    background: url('../img/pattern.png');
    height: 160px;
    background-size: 240px;
    background-repeat: repeat;
}

/* MOBILE MENU */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
}

.drawer {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background: var(--green);
    color: white;
    padding: 40px 20px;
    transition: 0.3s;
    z-index: 1000;
}

.drawer.open {
    left: 0;
}

.drawer a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 20px 0;
    font-size: 1.2rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 900;
}

.overlay.show {
    display: block;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .desktop-only {
        display: none;
    }

    .hamburger {
        display: block;
    }

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

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

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

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

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

/* SIMPLE HEADER (LOGO + MENU ICON ONLY) */
.simple-header {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  background-color: #052b0e;
  box-shadow: 0px 2px 10px rgba(3,3,3,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
}

.simple-header .logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  padding: 8px 20px;
  flex: 1;
  text-align: center;
}

/* RESERVATION PAGE */
.reservation-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 5%;
}

.reservation-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
}

.reservation-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.res-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: white;
    font-weight: 600;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-section h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* GUEST BUTTONS */
.guest-buttons {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
}

.guest-btn {
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--green);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.guest-btn:hover,
.guest-btn.active {
    background: var(--orange);
    color: white;
}

/* GUEST SELECT */
.guest-select {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--green);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
}

/* TIME BUTTONS */
.time-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.time-btn {
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--green);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.time-btn:hover,
.time-btn.active {
    background: var(--orange);
    color: white;
}

.time-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* TIME SELECT */
.time-select {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--green);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
}

/* CALENDAR */
.date-input {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--green);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
}

/* Selected calendar day */
.calendar .day.selected {
    background: var(--orange);
    color: white;
    border-radius: 4px;
} 

.calendar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 15px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: var(--green);
    font-weight: 600;
}

.calendar-header span {
    cursor: pointer;
    font-size: 1.2rem;
}

.month-year {
    font-size: 0.95rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.day-header {
    font-weight: 600;
    color: var(--green);
    padding: 8px 0;
    font-size: 0.85rem;
}

.day {
    padding: 10px 5px;
    cursor: pointer;
    border-radius: 4px;
    color: var(--green);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.day:hover {
    background: var(--orange);
    color: white;
}

.day.today {
    background: var(--orange);
    color: white;
    font-weight: 600;
}

.day.empty {
    cursor: default;
    background: none;
}

/* CONTACT INFO */
.input-field {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--green);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: var(--font-sans);
}

.input-field::placeholder {
    color: rgba(11, 61, 46, 0.6);
}

/* SUBMIT BUTTON */
.btn-submit {
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.btn-submit:hover {
    background: white;
    color: var(--green);
}

/* SUCCESS PAGE */
.success-box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.success-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.success-icon {
    font-size: 4.5rem;
    color: var(--orange);
}

.success-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--orange);
    font-weight: 600;
}

.success-message {
    color: white;
    font-size: 1rem;
    line-height: 1.8;
}

.btn-back {
    padding: 12px 40px;
    background: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    text-transform: capitalize;
}

.btn-back:hover {
    background: white;
    color: var(--green);
}

.btn-reservation {
  padding: 10px 20px;
  border: 2px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.95rem;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.menu-icon img {
    width: 26px;
    cursor: pointer;
}

/* FULLSCREEN MENU */
.fullmenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green);
    display: none;
    z-index: 2000;
}

.fullmenu.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.fullmenu a {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin: 20px 0;
    color: white;
    text-decoration: none;
}

.close-fullmenu {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2.2rem;
    color: white;
    cursor: pointer;
}

/* NAVIGATION PAGE */
.navigation-page {
    display: grid;
    grid-template-columns: 350px 1fr;
    min-height: 100vh;
    background: var(--green);
}

.nav-sidebar {
    background: white;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    border-right: 4px solid var(--orange);
}

.nav-close {
    align-self: flex-end;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--orange);
    font-weight: bold;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--orange);
    font-weight: 600;
}

.nav-logo span:first-child {
    font-size: 1.8rem;
}

.nav-links-menu {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nav-links-menu a {
    color: var(--green);
    text-decoration: none;
    font-size: 1.2rem;
    font-family: var(--font-serif);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links-menu a:hover {
    color: var(--orange);
    padding-left: 10px;
}

.nav-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--green);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.social-icon {
    font-size: 1.2rem;
    color: var(--orange);
}

/* NAV CONTENT AREA */
.nav-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
}

/* GALLERY */
.nav-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    flex: 1;
    height: 100%;
}

.gallery-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.item-1 {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 400px;
}

.item-2 {
    grid-column: 2;
    grid-row: 1;
    min-height: 180px;
}

.item-3 {
    grid-column: 2;
    grid-row: 2;
    min-height: 180px;
}

.item-4 {
    grid-column: 1;
    grid-row: 3;
    min-height: 150px;
}

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

    .nav-sidebar {
        border-right: none;
        border-bottom: 4px solid var(--orange);
        padding: 30px 20px;
    }

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

    .gallery-item {
        grid-column: 1 !important;
        grid-row: auto !important;
        min-height: 200px !important;
    }
}

    /* CONTACT PAGE */
    .contact-header-img {
        width: 100%;
        height: 300px;
        overflow: hidden;
    }

    .contact-header-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contact-section {
        padding: 60px 5%;
        background: var(--cream);
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .contact-left {
        padding: 20px;
    }

    .contact-left h2 {
        font-family: var(--font-serif);
        font-size: 1.3rem;
        color: var(--green);
        margin-bottom: 10px;
        font-weight: 600;
    }

    .contact-left h3 {
        font-family: var(--font-serif);
        font-size: 1rem;
        color: var(--green);
        font-weight: 600;
        margin-bottom: 8px;
    }

    .contact-left p {
        color: var(--green);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .contact-left a {
        color: var(--green);
        text-decoration: none;
    }

    .contact-left a:hover {
        text-decoration: underline;
    }

    .contact-form {
        background: white;
        padding: 40px 30px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-form h2 {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        color: var(--green);
        margin-bottom: 10px;
    }

    .textarea-field {
        min-height: 100px;
        resize: vertical;
    }

    .btn-send {
        padding: 12px 30px;
        background: white;
        color: var(--green);
        border: 2px solid var(--green);
        border-radius: 4px;
        cursor: pointer;
        font-size: 0.95rem;
        font-weight: 600;
        transition: all 0.3s ease;
        align-self: flex-start;
    }

    .btn-send:hover {
        background: var(--green);
        color: white;
    }

    /* MAP SECTION */
    .map-section {
        width: 100%;
        height: 300px;
        overflow: hidden;
    }

    .map-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* SOCIAL FOOTER CONTACT */
    .social-footer-contact {
        background: white;
        padding: 40px 5%;
        text-align: center;
        font-size: 1.1rem;
        color: var(--green);
        border-bottom: 2px solid #e5e5e5;
    }
