/* =========================================
   1. Variables & Reset
   ========================================= */
:root {
    /* Colors */
    --color-primary: #00C851;
    /* Standard Green */
    --color-primary-hover: #007E33;
    --color-dark: #1a1a1a;
    --color-light: #ffffff;
    --color-beige: #F5F5DC;
    --color-text-main: #222222;
    --color-text-muted: #555555;

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --backdrop-blur: 12px;

    /* Typography */
    --font-main: 'Inter', sans-serif;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --container-width: 1200px;
}

.bg-light-alt {
    background-color: #f4eee8;
    /* Light touch of brown/sepia */
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.about-image {
    padding: 0;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.amenities-list,
.business-list {
    list-style: none;
    text-align: left;
}

.amenities-list li,
.business-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.amenities-list li::before,
.business-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.business-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*
.business-image {
    padding: 0;
    overflow: hidden;
}

.business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.business-image:hover img {
    transform: scale(1.05);
}

.business-text {
    margin-bottom: 1.5rem;
}
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-light);
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

button,
input {
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}

/*===========================================================================================================================

/* =========================================
   2. Utility Classes
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}


/* Glass Effect */
.glass-card,
.glass-panel,
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Section Styling */
.section {
    padding: 10rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/*===========================================================================================================================

/* =========================================
   3. Header
   ========================================= */
.header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1000px;
    /* Increased from 850px for better spread */
    z-index: 1000;
    padding: 0.8rem 0;
    /* Restored slightly more vertical breathing room */
    transition: all 0.3s ease;
    border-radius: 100px;
    /* Floating pill shape */
    background: rgba(255, 255, 255, 0.7);
    /* Initialize with some bg */
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    /* Increased for a more spacious, balanced feel */
}


.brand-font {
    height: 40px;
    width: auto;
    mix-blend-mode: multiply;
    display: block;
}

/*===========================================================================================================================


/* Reservation Buttons */
.lease-btn,
.event-btn {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.85);
    color: #1f1f1f;

    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;

    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.08);

    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

.lease-btn:hover,
.event-btn:hover {
    background: #1ca55c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(28,165,92,0.3);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 3rem;
    /* Increased from 2rem to fill the wider bar gracefully */
}

.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}


/*===========================================================================================================================


/* =========================================
   4. Hero
   ========================================= 
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding: 150px 0;
    /* Balanced vertical padding for hero content */


/* Video Background for Hero /*
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
    z-index: 1;
    
}

/* HERO SECTION */
.hero {
    min-height: 520px; /* smaller section */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 100px 20px 50px;

    background: linear-gradient(
        135deg,
        #f8f6f0,
        #eee9dc
    );
}

/* HERO CONTENT */
.hero-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* BIG MIRAYA LOGO */
.hero-logo {
    width: min(55%, 550px); /* smaller logo */
    max-height: 300px;

    object-fit: contain;

    margin-bottom: 20px;
}

/* TEXT UNDER LOGO */
.hero-text {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    line-height: 1.6;

    margin-bottom: 25px;
}

/* BUTTON */
.hero-btn {
    background: #356b55;
    color: white;

    padding: 14px 32px;
    border-radius: 10px;

    text-decoration: none;
    font-weight: 600;

    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #2c5a47;
    transform: translateY(-3px);
}

/* SIMPLE ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        padding: 100px 20px 60px;
    }

    .hero-logo {
        width: 90%;
        max-height: 300px;
    }

    .hero-text {
        font-size: 16px;
    }
}



/*===========================================================================================================================



/* =========================================
   5. Value Proposition
   ========================================= */
.value-prop {
    background-color: var(--color-beige);
    text-align: center;

}
.styled-text {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: italic;
  font-weight: 600; /* Medium to bold thickness */
  color: #0b1320;   /* Dark navy/black */
  letter-spacing: 0.5px;
}
.dotted-list {
  list-style: none;   /* remove default bullet so we control it exactly */
  padding-left: 0;
  margin: 0;
}

.dotted-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.6;
}


.dotted-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-size: 1.4rem;
  line-height: 1;
  top: 0.05em;
}

/*===========================================================================================================================

/* =========================
   WHAT'S NEW SECTION
========================= */

.whats-new-section {
    width: 100%;
    padding: 100px 8%;
    background: #f5f3e8;
}

.section-container {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 30px;
    align-items: center;
}

/* ---------- News section heading ---------- */

.news-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 120px 20px 70px !important;
    max-width: 700px;
    margin: 0 auto !important;
}

.news-header p {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1f8a4c;
    margin: 0 0 16px;
    text-align: center;
}

.news-header h2 {
    font-size: 68px;
    font-weight: 700;
    line-height: 1.05;
    color: #1a1a1a;
    margin: 0 0 20px;
    text-align: center;
    position: relative;
}

.news-header h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    background: #1f8a4c;
    border-radius: 2px;
    margin: 22px auto 0;
}

.news-header span {
    display: block;
    font-size: 17px;
    color: #6b7280;
    margin-top: 16px;
    text-align: center;
}

@media (max-width: 640px) {
    .news-header {
        padding: 80px 20px 45px !important;
    }

    .news-header h2 {
        font-size: 40px;
    }
}


/* =========================
   LEFT PANEL
========================= */

.events-intro {
    background: rgba(255, 255, 255, 0.45);

    min-height: 420px;

    padding: 70px;

    display: flex;
    flex-direction: column;

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04);
}

.events-intro h2 {
    font-size: 48px;
    color: #2d3138;

    margin-bottom: 35px;

    font-weight: 700;
}

.events-intro h3 {
    font-size: 30px;

    line-height: 1.8;

    letter-spacing: 1px;

    color: #343941;

    margin-bottom: auto;
}


/* =========================
   VIEW ALL EVENTS BUTTON
========================= */

.partner-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 30px;
}

.view-events-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 300px;

    padding: 18px 25px;

    background: #007E33;
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    border-radius: 6px;

    transition: all 0.3s ease;
}

.view-events-btn:hover {
    background: #006B2C;

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(0, 126, 51, 0.25);
}


/*===========================================================================================================================


/* =========================
   FOR NEWS AND UPDATES
========================= */
/* NEWS SECTION */
.news-section {
    position: relative;
    padding: 100px 8%;
    background: #f8f7ef;
    overflow: hidden;
}

/* Decorative background circle */
.news-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(0, 166, 81, 0.08);
    border-radius: 50%;
    left: -180px;
    top: 80px;
}

.news-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(0, 166, 81, 0.04);
    border-radius: 50%;
    right: -120px;
    bottom: -100px;
}


/* HEADER */
.news-header {
    position: relative;
    z-index: 2;
    margin-bottom: 45px;
}

.news-header p {
    color: #009b4d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.news-header h2 {
    color: #252525;
    font-size: 52px;
    margin: 0;
    font-weight: 700;
}

.news-header span {
    display: block;
    margin-top: 10px;
    color: #666;
    font-size: 18px;
}


/* CARDS CONTAINER */
.news-cards {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

    max-width: 900px;
    margin-left: auto;
}


/* CARD */
.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

    transition: all 0.35s ease;
}


/* HOVER EFFECT */
.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}


/* IMAGE */
.card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.5s ease;
}

.news-card:hover .card-image img {
    transform: scale(1.08);
}


/* CATEGORY */
.category {
    position: absolute;
    left: 20px;
    top: 20px;

    background: #009b4d;
    color: white;

    padding: 7px 14px;
    border-radius: 30px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* CONTENT */
.card-content {
    padding: 28px;
}

.card-content h3 {
    margin: 0 0 12px;

    color: #252525;
    font-size: 24px;
    line-height: 1.2;
}

.card-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 25px;
}


/* ---------- News cards (Event Center / Pre-Leasing) ---------- */

.news-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

.news-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    width: 340px;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.news-card .card-image {
    position: relative;
    height: 190px;
}

.news-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card .card-image .category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #1f8a4c;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    border-radius: 999px;
}

.news-card .card-content {
    padding: 22px 24px 26px;
}

.news-card .card-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.news-card .card-content p {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 20px;
}

.news-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    padding: 0;
    color: #1f8a4c;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.news-card .learn-more span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #1f8a4c;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.news-card:hover .learn-more span {
    transform: translateX(3px);
}

@media (max-width: 640px) {
    .news-cards {
        padding: 0 20px 60px;
        gap: 20px;
    }

    .news-card {
        width: 100%;
    }
}


/*===========================================================================================================================

/* LEARN MORE */
/* LEARN MORE BUTTON */
.news-card .learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 0;

    border: none;
    outline: none;

    background: transparent;

    color: #009b4d;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    text-decoration: none;
}


/* ARROW CIRCLE */
.news-card .learn-more span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: #009b4d;
    color: white;

    font-size: 18px;
    line-height: 1;

    transition: all 0.3s ease;
}


/* HOVER */
.news-card .learn-more:hover {
    background: transparent;
    color: #007d3d;
}


.news-card .learn-more:hover span {
    transform: translateX(5px);
    background: #007d3d;
}


/* REMOVE BROWSER BUTTON EFFECT */
.news-card .learn-more:focus {
    outline: none;
    box-shadow: none;
}

.learn-more span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    border-radius: 50%;
    background: #009b4d;
    color: white;

    transition: all 0.3s ease;
}

.learn-more:hover span {
    transform: translateX(5px);
}


/* RESPONSIVE */
@media (max-width: 768px) {

    .news-section {
        padding: 70px 5%;
    }

    .news-header h2 {
        font-size: 40px;
    }

    .news-cards {
        grid-template-columns: 1fr;
        margin-left: 0;
    }

    .card-image {
        height: 220px;
    }
}

/*===========================================================================================================================

/* =========================
   EVENTS SLIDER
========================= */

.events-slider {
    position: relative;

    overflow: hidden;
}

.events-track {
    display: flex;

    gap: 25px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

    padding: 20px 10px;
}
@media (max-width: 1024px) {
    .whats-new {
      grid-template-columns: 1fr;
      padding: 3rem 2rem;
    }
    .card-row {
      grid-template-columns: repeat(2, 1fr);
    }
    .whats-new-intro h2 { font-size: 2.2rem; }
    .whats-new-intro p { font-size: 1.1rem; }
  }
 
  /* Mobile: single column everything */
  @media (max-width: 640px) {
    .whats-new {
      padding: 2.5rem 1.25rem;
      gap: 1.5rem;
    }
    .card-row {
      grid-template-columns: 1fr;
    }
    .whats-new-intro h2 { font-size: 1.8rem; }
    .whats-new-intro p { font-size: 1rem; }
    .card img { height: 160px; }
  }

.events-track::-webkit-scrollbar {
    display: none;
}

/*===========================================================================================================================


/* =========================
   EVENT CARD
========================= */

.event-card {
    flex: 0 0 300px;

    background: #ffffff;

    border-radius: 15px;

    overflow: hidden;

    text-decoration: none;

    color: inherit;

    transition: all 0.3s ease;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);
}

.event-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.12);
}


/* EVENT IMAGE */

.event-card img {
    width: 100%;

    height: 190px;

    object-fit: cover;

    display: block;
}


/* EVENT CONTENT */

.event-content {
    padding: 25px;
}

.event-category {
    display: inline-block;

    color: #007E33;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.event-content h3 {
    color: #2d3138;

    font-size: 22px;

    line-height: 1.3;

    margin-bottom: 15px;
}

.event-content p {
    color: #666;

    font-size: 15px;

    line-height: 1.6;

    margin-bottom: 20px;
}

.read-more {
    color: #007E33;

    font-weight: 700;

    font-size: 14px;

    letter-spacing: 1px;
}
.Events-Section {
    width: 100%;
    padding: 100px 8%;
    background-image:
        linear-gradient(to bottom, rgba(245, 243, 232, 0.9), rgba(245, 243, 232, 0.9)),
        url("images/background4.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*===========================================================================================================================

/* =========================
   SLIDER ARROWS
========================= */

.slider-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    border: none;

    border-radius: 50%;

    background: #ffffff;

    color: #007E33;

    font-size: 25px;

    cursor: pointer;

    z-index: 10;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.15);

    transition: 0.3s;
}

.slider-arrow:hover {
    background: #007E33;

    color: white;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .section-container {
        grid-template-columns: 1fr;
    }

    .events-intro {
        min-height: 300px;
    }

}


@media (max-width: 768px) {

    .whats-new-section {
        padding: 60px 20px;
    }

    .events-intro {
        padding: 40px 30px;
    }

    .events-intro h2 {
        font-size: 38px;
    }

    .events-intro h3 {
        font-size: 24px;
    }

    .event-card {
        flex: 0 0 85%;
    }

    .slider-arrow {
        display: none;
    }

}


/*===========================================================================================================================


/* =========================================
   6. Experience Section
   ========================================= */

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Flush glass panels */
    border-radius: 20px;
    overflow: hidden;
}

.glass-panel {
    padding: 4rem;
    background: rgba(255, 255, 255, 0.3);
}

.experience-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}

.experience-image {
    padding: 0;
    position: relative;
    min-height: 400px;
    background-color: #ddd;
    /* Fallback */
}

.experience-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.experience-image:hover .experience-img {
    transform: scale(1.02);
}
.tagline {
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/*===========================================================================================================================


/* =========================================
   8. Footer
   ========================================= */
.footer {
    background-color: var(--color-dark);
    color: #fff;
    padding: 5rem 0 2rem;
    margin-top: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 0px;
    align-items: start;
}

/* Prevent fixed-width cards from forcing grid tracks wider than the viewport */
.footer-container > * {
    min-width: 0;
}

.footer-bottom {
    grid-column: 1 / -1;
}

.footer-brand {
    margin-bottom: 1rem;
    display: block;
}

.footer-font {
    height: 50px;
    width: auto;
    mix-blend-mode: screen;
    display: block;
}

.footer-desc {
    color: #999;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.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;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-primary);
    color: var(--color-dark);
}

.footer-heading {
    color: var(--color-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a,
.footer-links-list span {
    color: #999;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}
/* Tablet: 4 columns -> 2 columns */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-container .brand-col {
        grid-column: 1 / -1;
    }

    .footer-desc {
        max-width: none;
    }
}

/* Mobile: everything stacks in one column */
@media (max-width: 600px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-desc {
        max-width: 100%;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .footer-heading {
        margin-bottom: 1rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
    }
}


/* =========================
   LOCATION QR CODE
========================= */

.qr-location {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-card {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    text-align: center;

    padding: 20px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 16px;

    transition: all 0.3s ease;
}

.qr-card:hover {
    transform: translateY(-5px);

    border-color: #007E33;

    box-shadow: 0 12px 35px rgba(0, 126, 51, 0.18);
}

.qr-card h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 20px;

    font-weight: 600;
}

.qr-card p {
    margin: 0 0 15px;

    color: #aaaaaa;

    font-size: 13px;

    line-height: 1.5;
}

.qr-image {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 10px;

    background: #ffffff;

    border-radius: 12px;

    margin-bottom: 15px;
}

.qr-image img {
    display: block;

    width: 170px;
    height: 170px;

    object-fit: contain;
}

.location-text {
    color: #c5c5c5;

    font-size: 13px;

    line-height: 1.6;
}

/*===========================================================================================================================


/* =========================
   CONTACT US CARD
========================= */

.contact-card {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;

    padding: 28px 25px;

    background: #292929;

    border: 1px solid #454545;

    border-radius: 20px;

    text-align: center;

    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);

    border-color: #007E33;

    box-shadow: 0 12px 30px rgba(0, 126, 51, 0.15);
}

.contact-card h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 26px;

    font-weight: 700;
}

.contact-subtitle {
    margin: 0 0 25px;

    color: #b5b5b5;

    font-size: 15px;

    line-height: 1.6;
}

.contact-info {
    display: flex;

    flex-direction: column;

    gap: 18px;

    text-align: left;
}

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 12px;

    background: rgba(255, 255, 255, 0.03);

    border-radius: 10px;
}

.contact-item p {
    margin: 0;

    color: #cfcfcf;

    font-size: 14px;

    line-height: 1.6;

    word-break: break-word;
}

.contact-icon {
    font-size: 18px;

    min-width: 24px;
}

/* =========================
   EXPLORE CARD
========================= */

.explore-card {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;

    padding: 28px 25px;

    background: #292929;

    border: 1px solid #454545;

    border-radius: 20px;

    text-align: center;

    transition: all 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);

    border-color: #007E33;

    box-shadow: 0 12px 30px rgba(0, 126, 51, 0.15);
}

.explore-card h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 26px;

    font-weight: 700;
}

.explore-subtitle {
    margin: 0 0 25px;

    color: #b5b5b5;

    font-size: 15px;

    line-height: 1.6;
}

.explore-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.explore-links a {
    display: block;

    padding: 12px 15px;

    background: rgba(255, 255, 255, 0.03);

    color: #cfcfcf;

    text-decoration: none;

    border-radius: 10px;

    font-size: 14px;

    transition: all 0.3s ease;
}

.explore-links a:hover {
    background: #007E33;

    color: #ffffff;

    transform: translateX(5px);
}
/* =========================================
   phone links
   ========================================= */
.phone-link {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: #007E33;
    transform: translateY(-3px);
}

.phone-link:hover p,
.phone-link:hover .contact-icon {
    color: #ffffff;
}

/* =========================================
   9. Responsiveness
   ========================================= */
@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero {
        padding: 100px 0;
    }

    

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        z-index: 999;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        padding: 2rem;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .nav-list a {
        font-size: 1.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .glass-panel {
        padding: 2rem;
    }

    .experience-image,
    .business-image {
        min-height: 250px;
    }



    /*===========================================================================================================================
    

    /* Response Update for Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}
}


/*===========================================================================================================================


/* =========================================
   10. Gallery Slider
   ========================================= */
.gallery-section {
    background-color: var(--color-beige);
    position: relative;
    overflow: hidden;
    padding: 2rem 0 3rem;
    /* Further reduced */
}

.gallery-section .section-header {
    margin-bottom: 1.5rem;
    /* Reduced from default */
}

.text-center {
    text-align: center;
}

.gallery-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
}

.gallery-viewport {
    overflow: hidden;
    /* Changed from auto to hide scrollbar and allow JS control */
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    will-change: transform;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 14px);
    background: #000;
    border: 3px solid #000;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Changed from 4/3 to make it shorter */
    overflow: hidden;
    background: #f0f0f0;
}

.gallery-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-label {
    background-color: #3d231a;
    /* Dark Brown from example */
    color: #ffffff;
    padding: 1rem 0.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav {
    background: #3d231a;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.gallery-nav:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}


@media (max-width: 600px) {

    .gallery-item {
        flex: 0 0 85%;
    }

    .gallery-container {
        position: relative;
        padding: 0 10px;
    }

    /* Keep arrows visible on mobile */
    .gallery-nav {
        display: flex;
        position: absolute;

        top: 50%;
        transform: translateY(-50%);

        width: 40px;
        height: 40px;

        background: #007E33;
        color: white;

        border: none;
        border-radius: 50%;

        z-index: 20;

        font-size: 20px;
        font-weight: bold;

        align-items: center;
        justify-content: center;

        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    }

    /* Left arrow */
    .gallery-nav:first-child {
        left: 5px;
    }

    /* Right arrow */
    .gallery-nav:last-child {
        right: 5px;
    }

    .gallery-nav:hover {
        transform: translateY(-50%) scale(1.05);
        background: #00662a;
    }
}

/*===========================================================================================================================


/* =========================
   BUSINESS CATEGORIES
========================= */

.categories-section {
    width: 100%;
    padding: 90px 20px;
    background: linear-gradient(
        to bottom,
        #f5f3ee,
        #eee8d5
    );
}

.categories-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.categories-container h1 {
    font-size: 42px;
    color: #2f2f2f;
    margin-bottom: 10px;
    font-weight: 700;
}

.categories-subtitle {
    color: #666;
    font-size: 17px;
    margin-bottom: 50px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card {
    background: rgba(255, 255, 255, 0.75);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.category-icon {
    font-size: 35px;
    margin-bottom: 15px;
}

.category-card h3 {
    color: #2f2f2f;
    font-size: 20px;
    margin-bottom: 12px;
}

.category-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}
.categories-section {
    width: 100%;
    padding: 90px 20px;
    background-image:
        linear-gradient(to bottom, rgba(245, 243, 238, 0.9), rgba(238, 232, 213, 0.9)),
        url("images/background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}


/* Tablet */
@media (max-width: 900px) {

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* Mobile */
@media (max-width: 600px) {

    .categories-section {
        padding: 70px 15px;
    }

    .categories-container h1 {
        font-size: 32px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

}

/*===========================================================================================================================


/* =========================
   LEASE RESERVATION PAGES
========================= */

.reservation-page {
    min-height: 100vh;
    padding: 60px 20px;
    background: linear-gradient(
        to bottom,
        #f5f3ee,
        #eee8d5
    );
}

.reservation-container {
    max-width: 700px;
    margin: auto;
}

.back-btn {
    display: inline-block;
    margin-bottom: 25px;
    text-decoration: none;
    color: #2f6f4f;
    font-weight: 600;
    transition: 0.3s;
}

.back-btn:hover {
    transform: translateX(-5px);
}

.reservation-box {
    background: rgba(255, 255, 255, 0.85);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.reservation-box h1 {
    text-align: center;
    color: #2f2f2f;
    font-size: 36px;
    margin-bottom: 15px;
}

.reservation-box p {
    text-align: center;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.reservation-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reservation-box input,
.reservation-box textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
}

.reservation-box input:focus,
.reservation-box textarea:focus {
    border-color: #2f6f4f;
}

.reservation-box button {
    background: #2f6f4f;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.reservation-box button:hover {
    background: #24583d;
    transform: translateY(-2px);
}

.lease-btn,
.event-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    white-space: nowrap;
}

.lease-btn:hover,
.event-btn:hover {
    background: #2f6f4f;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 600px) {

    .reservation-box {
        padding: 30px 20px;
    }

    .reservation-box h1 {
        font-size: 28px;
    }

}

/*===========================================================================================================================


/* Reservation Choice Page */

.reservation-choice {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.choice-container {
    width: 100%;
    max-width: 630px;
    background: rgba(255, 255, 255, 0.88);
    padding: 55px 45px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.choice-container h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #303030;
}

.choice-container p {
    color: #555;
    margin-bottom: 35px;
    font-size: 16px;
}

.choice-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.choice-btn {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 220px;
    min-height: 65px;

    padding: 15px 20px;
    border-radius: 12px;

    text-decoration: none;
    font-size: 17px;
    font-weight: 600;

    transition: 0.3s ease;
}

/* Lease Button */

.lease-choice {
    background: #356b55;
    color: white;
}

/* Event Button */

.event-choice {
    background: #356b55;
    color: white;
}

.choice-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/*===========================================================================================================================


/* =========================
   BUSINESS CATEGORIES
========================= */

.category-card {

    cursor: pointer;

    transition: all 0.3s ease;

}

.category-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

}

/* Business Section */

.business-list {

    margin-top: 40px;

    animation: fadeIn 0.4s ease;

}

.hidden {

    display: none;

}

.back-button {

    border: none;

    background: transparent;

    font-size: 16px;

    cursor: pointer;

    margin-bottom: 20px;

}

#category-title {

    font-size: 32px;

    margin-bottom: 8px;

}

#category-description {

    margin-bottom: 30px;

}

/* Business Cards */

.business-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}

.business-card {

    background: white;

    border-radius: 18px;

    padding: 25px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    display: flex;

    gap: 20px;

    transition: 0.3s ease;

}

.business-card:hover {

    transform: translateY(-5px);

}

.business-icon {

    font-size: 40px;

}

.business-info h3 {

    margin: 0 0 8px;

}

.business-info p {

    margin-bottom: 15px;

    color: #666;

}

.business-info button {

    border: none;

    padding: 10px 18px;

    border-radius: 8px;

    cursor: pointer;

    background: #5a9f6b;

    color: white;

}

.business-info button:hover {

    opacity: 0.85;

}

.business-info .fb-visit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    background: #5a9f6b;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.business-info .fb-visit-btn:hover {
    opacity: 0.85;
}

/* Animation */

@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(15px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* Mobile */

@media (max-width: 768px) {

    .business-grid {

        grid-template-columns: 1fr;

    }

}


/*===========================================================================================================================


/* =========================
   BUSINESS CATEGORIES / IMAGES
========================= */
.business-card {
    display: flex;
    align-items: center;
    gap: 25px;

    background: #f8f8f8;
    border-radius: 20px;
    padding: 30px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.business-image {
    width: 110px;
    height: 110px;
    flex-shrink: 0;

    border-radius: 15px;
    overflow: hidden;
}

.business-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}

.business-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.business-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/*===========================================================================================================================



/* =========================================
            FOR CHATBOX DESIGH
   =========================================*/


    :root {
    --fb-widget-color: #1ca55c;
  }

  #fbChatWidget * {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }

  /* Floating round bubble button */
  #fbChatBubble {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--fb-widget-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.2s ease;
  }
  #fbChatBubble:hover {
    transform: scale(1.06);
  }
  #fbChatBubble svg {
    width: 30px;
    height: 30px;
    fill: #fff;
  }

  /* Chat card popup */
  #fbChatCard {
    position: fixed;
    bottom: 98px;
    left: 24px;
    width: 330px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    z-index: 9999;
    overflow: hidden;
    display: none;
    animation: fbFadeIn 0.25s ease;
  }
  #fbChatCard.open { display: block; }

  @keyframes fbFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fb-card-header {
    background: #f4f4f5;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
  }
  .fb-card-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--fb-widget-color);
  }
  .fb-card-header .fb-title {
    font-weight: 700;
    font-size: 14.5px;
    color: #1c1e21;
    line-height: 1.3;
  }
  .fb-card-header .fb-subtitle {
    font-size: 12.5px;
    color: #65676b;
    margin-top: 2px;
  }
  .fb-close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 18px;
    color: #65676b;
    cursor: pointer;
    line-height: 1;
  }

  .fb-card-body {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .fb-card-body img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }
  .fb-bubble-msg {
    background: #f0f0f0;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13.5px;
    color: #1c1e21;
    line-height: 1.4;
  }

  .fb-card-footer {
    padding: 0 18px 18px 18px;
  }
  .fb-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--fb-widget-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
  }
  .fb-send-btn svg {
    width: 17px;
    height: 17px;
    fill: #fff;
  }
  .fb-send-btn:hover {
    filter: brightness(0.95);
  }


  /*===========================================================================================================================

/* =========================================
   SHOP DETAILS POPOVER
   ========================================= */
.shop-popover-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.shop-popover-overlay.active {
    display: flex;
}

.shop-popover-box {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px 30px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: shop-popover-pop 0.25s ease;
}

@keyframes shop-popover-pop {
    from {
        transform: scale(0.92);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.shop-popover-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    transition: color 0.2s ease;
}

.shop-popover-close:hover {
    color: #007E33;
}

.shop-popover-image {
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.shop-popover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-popover-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
}

.shop-popover-address {
    color: #777;
    font-size: 14px;
    margin: 0 0 16px;
    line-height: 1.5;
}

.shop-popover-about {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
    text-align: left;
}

.shop-popover-fb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #007E33;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.shop-popover-fb:hover {
    background: #006B2C;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .shop-popover-box {
        padding: 36px 22px 26px;
    }
}

/* ---------- News-card popover (Learn More) ---------- */

.mc-popover-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
}

.mc-popover-overlay.open {
    display: flex;
}

.mc-popover-box {
    background: #fff;
    border-radius: 16px;
    max-width: 380px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    animation: mc-popover-in 0.18s ease;
}

@keyframes mc-popover-in {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mc-popover-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mc-popover-image .category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #1f8a4c;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.mc-popover-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.mc-popover-close:hover {
    background: rgba(0, 0, 0, 0.65);
}

.mc-popover-content {
    padding: 22px 24px 26px;
}

.mc-popover-content h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1f2937;
}

.mc-popover-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px;
}

.mc-popover-table {
    width: 100%;
    border-top: 1px solid #e5e7eb;
    border-collapse: collapse;
}

.mc-popover-table td {
    padding: 8px 0;
    font-size: 13.5px;
}

.mc-popover-table td:first-child {
    color: #6b7280;
}

.mc-popover-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #1f2937;
}

/* ---------- News-card popover (Learn More) ---------- */

.mc-popover-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
}

.mc-popover-overlay.open {
    display: flex;
}

.mc-popover-box {
    background: #fff;
    border-radius: 16px;
    max-width: 380px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    animation: mc-popover-in 0.18s ease;
}

@keyframes mc-popover-in {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mc-popover-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mc-popover-image .category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #1f8a4c;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.mc-popover-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.mc-popover-close:hover {
    background: rgba(0, 0, 0, 0.65);
}

.mc-popover-content {
    padding: 22px 24px 26px;
}

.mc-popover-content h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1f2937;
}

.mc-popover-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px;
}

.mc-popover-table {
    width: 100%;
    border-top: 1px solid #e5e7eb;
    border-collapse: collapse;
}

.mc-popover-table td {
    padding: 8px 0;
    font-size: 13.5px;
}

.mc-popover-table td:first-child {
    color: #6b7280;
}

.mc-popover-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #1f2937;
}

.mc-viber-link {
    color: #1f8a4c;
    text-decoration: none;
}

.mc-viber-link:hover {
    text-decoration: underline;
}

.shop-popover-about ul {
    margin: 0 0 12px;
    padding-left: 20px;
}



/*Shop popover about*/

.shop-popover-about li {
    margin-bottom: 6px;
    line-height: 1.6;
}

.shop-popover-about p {
    margin: 0 0 12px;
    line-height: 1.6;
}

.shop-popover-about p:last-child {
    margin-bottom: 0;
}

/* =========================================
   Mobile performance and touch refinements
   ========================================= */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 88px;
    }

    body {
        width: 100%;
        overflow-x: clip;
        -webkit-text-size-adjust: 100%;
    }

    .container {
        width: 100%;
        padding-inline: clamp(16px, 5vw, 24px);
    }

    .header {
        top: max(10px, env(safe-area-inset-top));
        width: calc(100% - 24px);
        padding-block: 0.65rem;
    }

    .brand-font {
        height: 34px;
    }

    .mobile-toggle {
        min-width: 44px;
        min-height: 44px;
        width: 44px;
        height: 44px;
        padding: 11px 7px;
    }

    .nav {
        inset: 0;
        right: auto;
        width: 100%;
        height: 100dvh;
        min-height: 100svh;
        padding: calc(88px + env(safe-area-inset-top)) 24px calc(24px + env(safe-area-inset-bottom));
        overflow-y: auto;
        overscroll-behavior: contain;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.28s ease, opacity 0.2s ease, visibility 0s linear 0.28s;
    }

    .nav.active {
        right: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
        transition-delay: 0s;
    }

    .nav-list {
        gap: 0.65rem;
        margin: auto 0;
    }

    .nav-list a {
        display: flex;
        min-height: 48px;
        align-items: center;
        justify-content: center;
    }

    .hero {
        min-height: 100svh;
        padding: 96px 18px 48px;
    }

    .hero > img {
        width: min(88vw, 480px);
        height: auto;
    }

    .section {
        padding: clamp(4rem, 12vw, 5rem) 0;
    }

    .section-title,
    .categories-container h1,
    .choice-container h1,
    .reservation-box h1 {
        overflow-wrap: anywhere;
    }

    .gallery-viewport,
    .events-track {
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x proximity;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .gallery-item,
    .event-card {
        scroll-snap-align: center;
    }

    .gallery-track {
        will-change: auto;
    }

    .gallery-stage,
    .moments-stage {
        touch-action: pan-y;
    }

    .choice-container,
    .reservation-box {
        padding: 32px 20px;
        border-radius: 16px;
    }

    .choice-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .choice-btn {
        width: 100%;
        min-height: 52px;
    }

    .reservation-page,
    .reservation-choice {
        min-height: 100svh;
        padding-inline: 16px;
    }

    .reservation-box input,
    .reservation-box textarea,
    .reservation-box select {
        min-height: 48px;
        font-size: 16px;
    }

    #fbChatBubble {
        left: max(16px, env(safe-area-inset-left));
        bottom: max(16px, env(safe-area-inset-bottom));
        width: 54px;
        height: 54px;
    }

    #fbChatCard {
        left: max(16px, env(safe-area-inset-left));
        bottom: calc(82px + env(safe-area-inset-bottom));
        width: min(330px, calc(100vw - 32px));
        max-height: calc(100dvh - 110px);
        overflow-y: auto;
    }

    .shop-popover-overlay,
    .mc-popover-overlay {
        padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
        overflow-y: auto;
    }
}

/* =====================================================
   MIRAYA RESPONSIVE HEADER + CARD MENU (FINAL)
   This section intentionally stays last in the file.
===================================================== */

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    order: 3;
}

.header-reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.65rem 1rem;
    color: #fff;
    background: linear-gradient(135deg, #20a861, #087b3e);
    border: 1px solid rgba(0, 95, 45, 0.25);
    border-radius: 999px;
    box-shadow: 0 5px 14px rgba(10, 126, 65, 0.24);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-reserve-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 126, 65, 0.32);
}

.mobile-menu-heading,
.mobile-menu-watermark,
.mobile-nav-close,
.nav-icon,
.nav-chevron {
    display: none;
}

@media (min-width: 769px) {
    .header {
        max-width: 1180px;
    }

    .header-container {
        gap: 1.5rem;
    }

    .brand {
        order: 1;
        flex-shrink: 0;
    }

    .nav {
        position: static;
        display: block;
        width: auto;
        height: auto;
        min-height: 0;
        margin-left: auto;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        order: 2;
    }

    .nav-list {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: clamp(1.25rem, 2.3vw, 2.5rem);
        margin: 0;
    }

    .nav-list li,
    .nav-list .nav-link {
        width: auto;
    }

    .nav-list .nav-link {
        display: inline-flex;
        min-height: 40px;
        align-items: center;
        padding: 0.4rem 0;
        color: var(--color-dark);
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        font-size: 0.92rem;
        font-weight: 500;
    }

    .mobile-toggle {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        top: max(10px, env(safe-area-inset-top));
        width: calc(100% - 20px);
        padding: 0.5rem 0;
        border-radius: 26px;
    }

    .header-container {
        gap: 0.55rem;
        padding-inline: 0.85rem;
    }

    .brand {
        min-width: 0;
        flex: 1;
    }

    .brand-font {
        width: clamp(84px, 24vw, 120px);
        height: auto;
    }

    .header-actions {
        display: flex;
        flex-shrink: 0;
        gap: 0.4rem;
    }

    .header-reserve-btn {
        min-height: 46px;
        padding: 0.55rem 0.75rem;
        gap: 0.35rem;
        border-radius: 13px;
        font-size: clamp(0.56rem, 2.5vw, 0.7rem);
    }

    .header-reserve-btn i {
        font-size: 0.95rem;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        width: 50px;
        min-width: 50px;
        height: 50px;
        padding: 6px;
        color: #173f2c;
        background: #fff;
        border: 2px solid #14814a;
        border-radius: 13px;
    }

    .hamburger-lines {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 23px;
        height: 18px;
        background: transparent;
    }

    .hamburger-lines i {
        display: block;
        width: 100%;
        height: 2px;
        background: #173f2c;
        border-radius: 5px;
        transition: transform 0.24s ease, opacity 0.2s ease;
    }

    .mobile-toggle strong {
        font-size: 0.55rem;
        font-weight: 800;
        line-height: 1;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .mobile-toggle.open .hamburger-lines i:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-toggle.open .hamburger-lines i:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.open .hamburger-lines i:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav {
        position: fixed;
        top: -10px;
        left: 50%;
        right: auto;
        width: 100vw;
        height: 100dvh;
        min-height: 100svh;
        padding: calc(82px + env(safe-area-inset-top)) 18px calc(28px + env(safe-area-inset-bottom));
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
        overscroll-behavior: contain;
        color: #202420;
        background: linear-gradient(160deg, rgba(255,255,255,0.99), rgba(246,245,238,0.99));
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(55%);
        transition: transform 0.3s ease, opacity 0.22s ease, visibility 0s linear 0.3s;
        z-index: 1100;
    }

    .nav.active {
        right: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%);
        transition-delay: 0s;
    }

    .mobile-nav-close {
        position: absolute;
        top: calc(18px + env(safe-area-inset-top));
        right: 18px;
        z-index: 1102;
        display: grid;
        place-items: center;
        width: 48px;
        height: 48px;
        padding: 0;
        color: #fff;
        background: linear-gradient(135deg, #20a861, #087b3e);
        border: 0;
        border-radius: 15px;
        box-shadow: 0 6px 18px rgba(9,115,57,0.28);
        font-size: 1.4rem;
        cursor: pointer;
    }

    .mobile-nav-close:active {
        transform: scale(0.92);
    }

    .mobile-menu-heading {
        display: block;
        width: min(100%, 520px);
        margin: 0 auto 24px;
        padding-right: 58px;
        font-size: clamp(1.55rem, 7vw, 2rem);
        font-weight: 700;
    }

    .menu-heading-line {
        width: 54px;
        height: 5px;
        margin-top: 10px;
        background: #27864d;
        border-radius: 99px;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: min(100%, 520px);
        margin: 0 auto;
        gap: 12px;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list .nav-link {
        display: grid;
        grid-template-columns: 52px 1fr 20px;
        align-items: center;
        gap: 14px;
        width: 100%;
        min-height: 76px;
        padding: 11px 17px;
        color: #202420;
        background: rgba(255,255,255,0.92);
        border: 1px solid rgba(39,134,77,0.25);
        border-radius: 18px;
        box-shadow: 0 8px 22px rgba(24,74,42,0.08);
        font-size: 1.2rem;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    }

    .nav-list .nav-link::after {
        display: none;
    }

    .nav-icon {
        display: grid;
        place-items: center;
        width: 48px;
        height: 48px;
        color: #27864d;
        background: rgba(39,134,77,0.08);
        border-radius: 14px;
        font-size: 1.35rem;
    }

    .nav-text,
    .nav-chevron {
        display: block;
    }

    .nav-chevron {
        color: #27864d;
        font-size: 1rem;
        transition: transform 0.2s ease;
    }

    .nav-list .nav-link:hover,
    .nav-list .nav-link:focus-visible {
        color: #173d28;
        background: #eef8ef;
        border-color: rgba(39,134,77,0.5);
    }

    .nav-list .nav-link:active {
        background: #dff2e3;
        transform: scale(0.98);
    }

    .nav-list .nav-link:hover .nav-chevron,
    .nav-list .nav-link:focus-visible .nav-chevron {
        transform: translateX(3px);
    }

    .mobile-menu-watermark {
        display: block;
        margin: auto auto 0;
        color: rgba(22,148,75,0.07);
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(4rem, 22vw, 7rem);
        font-style: italic;
        font-weight: 700;
        line-height: 0.8;
        pointer-events: none;
        user-select: none;
    }
}

@media (max-width: 390px) {
    .header-container {
        padding-inline: 0.6rem;
        gap: 0.3rem;
    }

    .brand-font {
        width: 78px;
    }

    .header-actions {
        gap: 0.3rem;
    }

    .header-reserve-btn {
        min-height: 43px;
        padding: 0.48rem 0.55rem;
        font-size: 0.55rem;
    }

    .mobile-toggle {
        width: 45px;
        min-width: 45px;
        height: 45px;
    }

    .nav {
        padding-inline: 14px;
    }

    .nav-list .nav-link {
        grid-template-columns: 46px 1fr 18px;
        min-height: 68px;
        padding: 10px 14px;
        border-radius: 15px;
        font-size: 1.08rem;
    }

    .nav-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

@media (max-width: 420px) {
    .section-title {
        font-size: clamp(1.75rem, 8vw, 2rem);
    }

    .business-card {
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
    }

    .business-image,
    .business-icon {
        width: 76px;
        height: 76px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ---------- News-card popover (Learn More) ---------- */

.mc-popover-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
}

.mc-popover-overlay.open {
    display: flex;
}

.mc-popover-box {
    background: #fff;
    border-radius: 16px;
    max-width: 380px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    animation: mc-popover-in 0.18s ease;
}

@keyframes mc-popover-in {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mc-popover-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mc-popover-image .category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #1f8a4c;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.mc-popover-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.mc-popover-close:hover {
    background: rgba(0, 0, 0, 0.65);
}

.mc-popover-content {
    padding: 22px 24px 26px;
}

.mc-popover-content h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1f2937;
}

.mc-popover-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid #cbd0d6;
}

.mc-popover-table {
    width: 100%;
    border-collapse: collapse;
}

.mc-popover-table td {
    padding: 12px 0;
    font-size: 13.5px;
    border-bottom: 2px solid #cbd0d6;
}

.mc-popover-table tr:last-child td {
    border-bottom: none;
}

.mc-popover-table td:first-child {
    color: #6b7280;
}

.mc-popover-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #1f2937;
}

.mc-viber-link {
    color: #1f8a4c;
    text-decoration: none;
}

.mc-viber-link:hover {
    text-decoration: underline;
}



/*** GALLERY IMAGES SLIDER **
*/

.photo-gallery {
  --gallery-dark: #172018;
  --gallery-background: #f3efe6;
  --gallery-highlight: #1f8a4c;

  position: relative;
  min-height: 750px;
  padding: 70px 20px 45px;
  overflow: hidden;
  color: var(--gallery-dark);
  background:
    radial-gradient(
      circle at center,
      #ffffff 0%,
      var(--gallery-background) 50%,
      #ded8cb 100%
    );
}

.gallery-heading {
  position: relative;
  z-index: 20;
  margin-bottom: 30px;
  text-align: center;
}

.gallery-heading p {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.55;
}

.gallery-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  font-style: italic;
  font-weight: 400;
}

.gallery-stage {
  position: relative;
  width: 100%;
  max-width: 1150px;
  height: 430px;
  margin: 0 auto;
  perspective: 1200px;
  transform-style: preserve-3d;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.gallery-stage:active {
  cursor: grabbing;
}

.gallery-stage::before {
  content: none;
}

.gallery-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(220px, 28vw, 360px);
  height: 390px;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
  box-shadow: 0 24px 55px rgba(23, 32, 24, 0.28);
  transform: translate(-50%, -50%);
  transition:
    transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.gallery-card.gallery-active {
  cursor: zoom-in;
}

.gallery-information {
  position: relative;
  z-index: 20;
  padding: 10px 20px 20px;
  text-align: center;
}

.gallery-information p {
  margin: 0 0 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.5;
}

.gallery-information h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 4vw, 38px);
  font-style: italic;
  font-weight: 400;
}

.gallery-controls {
  position: relative;
  z-index: 20;
  width: fit-content;
  margin: 0 auto;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(23, 32, 24, 0.15);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 30px rgba(23, 32, 24, 0.08);
  backdrop-filter: blur(15px);
}

.gallery-controls > button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 50%;
  color: var(--gallery-dark);
  background: transparent;
  font-size: 21px;
  cursor: pointer;
  transition: 0.25s ease;
}

.gallery-controls > button:hover {
  background: var(--gallery-highlight);
  transform: scale(1.07);
}

.gallery-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 100px;
  background: rgba(23, 32, 24, 0.25);
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-dot.active {
  width: 26px;
  background: var(--gallery-dark);
}

.gallery-lightbox {
  position: fixed;
  z-index: 99999;
  inset: 0;
  padding: 5vh 5vw;
  display: none;
  place-items: center;
  background: rgba(8, 12, 9, 0.94);
  backdrop-filter: blur(14px);
}

.gallery-lightbox.open {
  display: grid;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 30px 90px #000000;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 25px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
}

@media (max-width: 700px) {
  .photo-gallery {
    min-height: 670px;
    padding: 50px 10px 30px;
  }

  .gallery-stage {
    height: 390px;
  }

  .gallery-card {
    width: min(63vw, 270px);
    height: 350px;
  }

  .gallery-controls {
    gap: 8px;
  }

  .gallery-controls > button {
    width: 36px;
    height: 36px;
  }

  .gallery-dots {
    gap: 6px;
  }

  .gallery-dot {
    width: 6px;
    height: 6px;
  }

  .gallery-dot.active {
    width: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-card,
  .gallery-dot,
  .gallery-controls button {
    transition: none;
  }
}

.hero-section,
.photo-gallery {
  display: block;
  width: 100%;
  clear: both;
}

.photo-gallery {
  position: relative;
  margin-top: 0;
}


/* =====================================================
   2nd MIRAYA MOMENTS GALLERY
===================================================== */

.moments-gallery {
    --moments-dark: #172018;
    --moments-background: #f3efe6;
    --moments-highlight: #1f8a4c;

    position: relative;
    width: 100%;
    min-height: 750px;
    padding: 65px 20px 45px;
    overflow: hidden;
    color: var(--moments-dark);

    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.75) 33%,
            var(--moments-background) 72%,
            #ded8cb 100%
        );
}

/* Background circle */

.moments-gallery::before {
    content: none;
}

/* Heading */

.moments-heading {
    position: relative;
    z-index: 30;
    margin-bottom: 24px;
    text-align: center;
}

.moments-heading p {
    margin: 0 0 8px;
    color: #5f685f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.moments-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 58px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.1;
}

/* Gallery stage */

.moments-stage {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 420px;
    margin: 0 auto;
    perspective: 1200px;
    transform-style: preserve-3d;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.moments-stage:active {
    cursor: grabbing;
}

/* Gallery cards */

.moments-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(225px, 28vw, 360px);
    height: 390px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.75);
    border-radius: 5px;
    background: #111;
    box-shadow: 0 25px 55px rgba(23, 32, 24, 0.3);
    transform: translate(-50%, -50%);

    transition:
        transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.45s ease,
        filter 0.45s ease,
        box-shadow 0.35s ease;
}

.moments-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.moments-card.is-active {
    cursor: zoom-in;
    box-shadow: 0 30px 65px rgba(23, 32, 24, 0.4);
}

/* Photo title */

.moments-information {
    position: relative;
    z-index: 30;
    min-height: 84px;
    padding: 10px 20px 15px;
    text-align: center;
}

.moments-information p {
    margin: 0 0 7px;
    color: #5f685f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.moments-information h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 4vw, 40px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
}

/* Gallery controls */

.moments-controls {
    position: relative;
    z-index: 30;
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    padding: 8px;
    gap: 14px;
    border: 1px solid rgba(23, 32, 24, 0.14);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 10px 30px rgba(23, 32, 24, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.moments-controls > button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 50%;
    color: var(--moments-dark);
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.moments-controls > button:hover {
    background: var(--moments-highlight);
    transform: scale(1.08);
}

/* Navigation dots */

.moments-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.moments-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 100px;
    background: rgba(23, 32, 24, 0.25);
    cursor: pointer;
    transition: 0.3s ease;
}

.moments-dot.is-active {
    width: 25px;
    background: var(--moments-dark);
}

/* Lightbox */

.moments-lightbox {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: none;
    place-items: center;
    padding: 5vh 5vw;
    background: rgba(8, 12, 9, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.moments-lightbox.is-open {
    display: grid;
}

.moments-lightbox img {
    display: block;
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
}

.moments-lightbox-close {
    position: fixed;
    top: 22px;
    right: 25px;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.25);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

/* Tablet */

@media (max-width: 900px) {
    .moments-stage {
        height: 400px;
    }

    .moments-card {
        width: min(46vw, 320px);
        height: 365px;
    }
}

/* Mobile */

@media (max-width: 700px) {
    .moments-gallery {
        min-height: 650px;
        padding: 45px 10px 30px;
    }

    .moments-heading {
        margin-bottom: 15px;
    }

    .moments-stage {
        height: 360px;
    }

    .moments-card {
        width: min(67vw, 270px);
        height: 330px;
    }

    .moments-information {
        min-height: 75px;
        padding-top: 8px;
    }

    .moments-controls {
        gap: 7px;
    }

    .moments-controls > button {
        width: 36px;
        height: 36px;
    }

    .moments-dots {
        gap: 5px;
    }

    .moments-dot {
        width: 6px;
        height: 6px;
    }

    .moments-dot.is-active {
        width: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .moments-card,
    .moments-dot,
    .moments-controls button {
        transition: none;
    }
}

/* Final mobile overrides kept last to avoid older component rules winning. */
@media (max-width: 768px) {
    .nav {
        right: auto;
        height: 100dvh;
        min-height: 100svh;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
    }

    .nav.active {
        right: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .hero {
        min-height: 100svh;
    }

    .gallery-viewport {
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-item {
        scroll-snap-align: center;
    }
}

/* Keep the full-screen mobile panel centered after legacy overrides. */
@media (max-width: 768px) {
    .header .nav {
        top: -10px;
        left: 50%;
        right: auto;
        width: 100vw;
        height: 100dvh;
        transform: translateX(55%);
    }

    .header .nav.active {
        right: auto;
        transform: translateX(-50%);
    }
}


/* =========================================
   FIX MOBILE HAMBURGER ICON
========================================= */

@media (max-width: 768px) {

    .header .mobile-toggle span.hamburger-lines {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 4px !important;

        width: 24px !important;
        height: 18px !important;
        min-height: 18px !important;

        padding: 0 !important;
        margin: 0 !important;

        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;

        overflow: visible !important;
        transform: none;
    }

    .header .mobile-toggle span.hamburger-lines i {
        position: static !important;

        display: block !important;
        flex: 0 0 2px !important;

        width: 23px !important;
        height: 2px !important;
        min-height: 2px !important;

        padding: 0 !important;
        margin: 0 !important;

        background: #173f2c !important;
        border: none !important;
        border-radius: 10px !important;

        opacity: 1;
    }

    /* Turn the lines into an X when opened */

    .header .mobile-toggle.open
    span.hamburger-lines i:nth-child(1) {
        transform: translateY(6px) rotate(45deg) !important;
    }

    .header .mobile-toggle.open
    span.hamburger-lines i:nth-child(2) {
        opacity: 0 !important;
    }

    .header .mobile-toggle.open
    span.hamburger-lines i:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg) !important;
    }
}

/* Remove border around the header logo */

.header .brand,
.header .brand:focus,
.header .brand:active,
.header .brand-font {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}