/* =========================================
   Design System - Layout & Contrast Fix
   ========================================= */

/* Self-hosted Playball (display/script) */
@font-face {
    font-family: 'Playball';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Playball-LatinExt.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Playball';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Playball-Regular.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    size-adjust: 110%;
    ascent-override: 105%;
    descent-override: 35%;
    line-gap-override: 0%;
}

/* Self-hosted Lato (body text) – replaces Google Fonts external CSS */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Lato-Regular.woff2') format('woff2');
    size-adjust: 97%;
    ascent-override: 99%;
    descent-override: 22%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Lato-Bold.woff2') format('woff2');
    size-adjust: 97%;
    ascent-override: 99%;
    descent-override: 22%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Lato-Italic.woff2') format('woff2');
    size-adjust: 97%;
    ascent-override: 99%;
    descent-override: 22%;
    line-gap-override: 0%;
}

/* Font Faces (local) */
@font-face {
    font-family: 'GlacialIndifference';
    src: url('../fonts/GlacialIndifference-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GlacialIndifference';
    src: url('../fonts/GlacialIndifference-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GlacialIndifference';
    src: url('../fonts/GlacialIndifference-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Variables */
:root {
    --navy: #003366;
    --sky: #5dade2;
    --cta-red: #ff4d4d;
    --sunset-gold: #ffca28;
    --accent: #2563EB;
    /* New Accent */
    --text-main: #374151;
    --text-heading: #111827;
    --text-muted: #6B7280;
    --font-playball: 'Playball', cursive;
}

.font-playball {
    font-family: var(--font-playball);
}

/* Global box-sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

/* Global Typography */
body {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin: 0;
    padding: 0;
    background-image: url('../images/organic-pattern.svg');
    background-size: 300px;
    background-repeat: repeat;
    background-attachment: fixed;
    background-blend-mode: soft-light;
    background-color: #fcfcfc;
}

h1,
h2 {
    font-family: 'Playball', cursive !important;
    font-size: 5rem;
    color: var(--navy);
    font-weight: normal;
    margin-bottom: 80px;
}

/* Utility Classes */
.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

/* Component Tokens */
.btn-reserve {
    background-color: var(--navy);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    filter: brightness(1.2);
    transform: translateY(-1px);
}

.btn-book-now {
    background-color: var(--cta-red);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 1rem;
}

.btn-book-now:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

section {
    padding: 0;
    position: relative;
}

/* 
   -----------------------------------
   Two Column Layout Fix
   -----------------------------------
*/

.pillars-section {
    margin-top: -260px;
    z-index: 10;
    position: relative;
    background: transparent;
    padding: 0;
}

/* Stable 2-Column Grid */
/* --- Pillars Grid: 4-up desktop, 2-up tablet, 1-up mobile --- */

.pillars-grid {
    display: grid;
    gap: 22px;
    max-width: 1280px;
    /* give it room for 4 cards */
    margin: 0 auto;
    align-items: stretch;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    /* DESKTOP: 4 across */
}

/* Shared Card Style */
/* Make sure cards can shrink to fit 4-up */
.card {
    padding: 22px;
    margin: 0;
    /* IMPORTANT: remove any max-width if present */
    max-width: none;
    border-radius: 20px;
    /* Keep existing config */
    background: #F7F8FA;
    /* Keep existing config */
    border: 1px solid #E5E7EB;
    /* Keep existing config */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    /* Keep existing config */
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Image (Adjusted for card containment) */
/* Image: keep it from making cards too tall */
.card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.card:hover img {
    transform: none;
    box-shadow: none;
}

/* Typography Contrast Fix */

/* Main Title */
.card h3,
.card-main-title,
.card-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
    color: var(--text-heading);
    /* Spec: #111827 */
    margin-top: 0;
    display: block;
    text-shadow: none;
}

/* Script Subtitle */
.card .subtitle,
.card-subtitle {
    font-family: 'Playball', cursive;
    font-size: 2.2rem;
    /* Spec */
    color: var(--accent);
    /* Spec: Accent */
    margin-top: -5px;
    display: block;
    font-weight: normal;
    text-shadow: none;
    line-height: 1.1;
}

/* Description */
.card .description,
.card-desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    /* Spec: #6B7280 */
    line-height: 1.6;
    opacity: 1;
    margin: 10px auto 0;
    max-width: 100%;
    text-shadow: none;
}

/* Responsive Handling */
/* Tablet: 2 across */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile: 1 across */
@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* Header & Nav */
header {
    background: #ffffff;
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.header-logo img {
    height: 80px;
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

nav ul li+li::before {
    content: "|";
    color: #ccc;
    margin-right: 1rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0.5rem;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    color: var(--navy);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-icon:hover {
    background: var(--navy);
    color: white;
    transform: scale(1.1);
}

/* Mobile icons in header bar (hidden on desktop) */
.header-mobile-icons {
    display: none;
}

nav {
    display: flex;
    align-items: center;
}

nav a:not(.btn-book-now) {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

nav a:not(.btn-book-now):hover {
    color: var(--sky);
}

main {
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #f4f4f4;
    margin-top: 2rem;
}

/* Home Hero */
.home-hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    margin: 0;
    padding-bottom: 160px;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}


.home-hero::before {
    display: none;
    content: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-family: 'Playball', cursive !important;
    font-size: 5rem;
    font-weight: 400;
    margin: 0.5em 0;
    line-height: 1.2;
    min-height: 6rem;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-logo {
    max-width: 100%;
    width: 300px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

/* Pricing in Hero */
.hero-pricing {
    font-family: 'GlacialIndifference', sans-serif;
    font-size: 1.5rem;
    color: white;
    margin-top: 1rem;
    font-weight: 700;
}

/* =========================================
   New Lanikai Page Sections
   ========================================= */

/* Section Spacing & Transitions */
.lanikai-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
}

.lanikai-section.alt-bg {
    background-color: #eaecef;
}

.lanikai-section.dark-bg {
    background-color: var(--navy);
    color: white;
}

/* Typography Overrides for Sections */
.section-title {
    font-family: 'Playball', cursive;
    font-size: 3.5rem;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1rem;
}

.dark-bg .section-title {
    color: var(--sunset-gold);
}

.dark-bg .split-content p {
    color: white;
}

.section-subtitle {
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 3rem;
    display: block;
}

/* Split Layout (Text + Image) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.split-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.split-content p {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-image {
        order: -1;
    }

    .split-content h2 {
        text-align: center;
    }
}

/* Feature Grid (What to Expect) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-item {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--sunset-gold);
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    font-family: 'Playball', cursive;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Food Section Specifics */
.food-highlight {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Pricing Table */
.pricing-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 3rem;
}

.pricing-header {
    background: var(--navy);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-family: 'Playball', cursive;
    font-size: 2.5rem;
    margin: 0;
    color: var(--sunset-gold);
}

.pricing-body {
    padding: 2rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-label {
    font-weight: 700;
    color: var(--navy);
}

.pricing-cost {
    color: var(--text-muted);
}

.tax-note {
    font-size: 0.8rem;
    color: #999;
    text-align: right;
    display: block;
}

/* Details Box */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-card {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e1e4e8;
    transition: transform 0.2s ease;
}

.detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.detail-card h4 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Side-by-Side Details & Pricing */
.details-pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .details-pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Compact Practical Info */
.compact-know-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    text-align: left;
}

.know-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.1rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    line-height: 1.4;
    color: var(--text-heading);
}

.know-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.know-icon {
    font-size: 2rem;
}

/* Closing Section */
.closing-message {
    font-family: 'Playball', cursive;
    color: var(--navy);
    line-height: 1.4;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    text-align: left;
    transition: color 0.2s ease;
    gap: 1rem;
}

.faq-question:hover {
    color: var(--sky);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--sunset-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0.5rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 0.5rem 1.25rem;
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
    margin: 0;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

.faq-answer a:hover {
    text-decoration: underline;
}


/* Hero Update */
.home-hero.static-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/lanikai-bkg.webp');
    background-size: cover;
    background-position: center;
}

/* Footer */
.site-footer {
    background: #f8f9fa;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-brand h4 {
    font-family: 'Playball', cursive;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    /* Center align */
}

.footer-links a {
    text-decoration: none;
    color: var(--text-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.2s;
}

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

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-links ul {
        gap: 1rem;
    }
}

.split-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.split-content p {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-content h2 {
        text-align: center;
    }
}

/* Feature Grid (What to Expect) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-item {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--sunset-gold);
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    font-family: 'Playball', cursive;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Food Section Specifics */
.food-highlight {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Pricing Table */
.pricing-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 3rem;
}

.pricing-header {
    background: var(--navy);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-family: 'Playball', cursive;
    font-size: 2.5rem;
    margin: 0;
    color: var(--sunset-gold);
}

.pricing-body {
    padding: 2rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-label {
    font-weight: 700;
    color: var(--navy);
}

.pricing-cost {
    color: var(--text-muted);
}

.tax-note {
    font-size: 0.8rem;
    color: #999;
    text-align: right;
    display: block;
}

/* Details Box */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e1e4e8;
}

.detail-card h4 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Side-by-Side Details & Pricing */
.details-pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .details-pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Compact Practical Info */
.compact-know-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-align: left;
}

.know-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.know-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.know-icon {
    font-size: 1.5rem;
}

/* Closing Section */
.closing-message {
    font-family: 'Playball', cursive;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* Hero Update */
.home-hero.static-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('../images/lanikai-bkg.webp');
    background-size: cover;
    background-position: center;
}

/* Footer */
.site-footer {
    background: #f8f9fa;
    padding: 2.5rem 0 1.5rem;
    margin-top: 0;
    border-top: 1px solid #e5e7eb;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    /* Added for single-column layout */
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    /* Added margin for separation */
}

.footer-nav a {
    text-decoration: none;
    color: #555;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--navy);
}

/* =========================================
   Article Cards
   ========================================= */

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.article-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-body h3 {
    font-family: 'Playball', cursive;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: normal;
    line-height: 1.3;
}

.article-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.article-read-more {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

/* =========================================
   Culinary Partner Page
   ========================================= */

.culinary-local-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 400px;
    text-align: center;
}

.culinary-local-list li {
    font-size: 1.1rem;
    color: var(--text-main);
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.culinary-local-list li:last-child {
    border-bottom: none;
}

.culinary-expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.culinary-expect-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.culinary-expect-item p {
    font-size: 1rem;
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
}

.culinary-quote {
    font-family: 'Playball', cursive;
    font-size: 1.4rem;
    color: var(--navy);
    line-height: 1.5;
    border: none;
    padding: 0;
    margin: 0 auto;
    max-width: 760px;
    text-align: center;
}

/* =========================================
   Contact Page
   ========================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item h3 {
    font-family: 'Playball', cursive;
    font-size: 1.3rem;
    color: var(--navy);
    margin: 0 0 0.25rem;
    font-weight: normal;
}

.contact-item p,
.contact-item a {
    font-size: 1rem;
    color: var(--text-main);
}

.contact-map {
    min-height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

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

    .contact-map {
        min-height: 280px;
    }
}

/* =========================================
   Mobile Optimization
   ========================================= */

/* Hamburger button (hidden on desktop) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile Breakpoint ---- */
@media (max-width: 768px) {

    /* Header */
    header {
        padding: 0.5rem 1rem;
    }

    .header-logo img {
        height: 56px;
    }

    .hamburger {
        display: flex;
    }

    /* Nav: slide-down panel */
    header nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
    }

    header nav.open {
        display: flex;
    }

    header nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
    }

    header nav ul li {
        width: 100%;
    }

    header nav ul li+li::before {
        display: none;
    }

    header nav ul li a {
        display: block;
        padding: 0.85rem 1.5rem;
        border-bottom: 1px solid #f0f0f0;
    }

    header nav .nav-actions .nav-icon {
        display: none;
    }

    header nav .nav-actions {
        justify-content: center;
        padding: 1rem 0;
        gap: 1rem;
    }

    /* Show mobile icons in header bar */
    .header-mobile-icons {
        display: flex;
        gap: 0.75rem;
        align-items: center;
    }

    /* Hero text scaling */
    h1,
    h2 {
        font-size: 2.8rem;
        margin-bottom: 32px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-logo {
        width: 200px;
    }

    .hero-pricing {
        font-size: 1.2rem;
    }

    /* Section spacing */
    .lanikai-section {
        padding: 48px 0;
    }

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

    .section-subtitle {
        margin-bottom: 2rem;
    }

    /* Container padding */
    .container {
        padding: 0 1.25rem;
    }

    /* Pillars overlap */
    .pillars-section {
        margin-top: -120px;
    }

    /* Card subtitle */
    .card .subtitle,
    .card-subtitle {
        font-size: 1.8rem;
    }

    /* Know grid */
    .compact-know-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .know-item {
        font-size: 1rem;
        padding: 1.25rem;
        gap: 1rem;
    }

    /* Split layout */
    .split-content h2 {
        font-size: 2.2rem;
    }

    /* Feature grid */
    .feature-grid {
        grid-template-columns: 1fr;
    }

    /* Closing message */
    .closing-message {
        font-size: 1.8rem;
    }

    /* Details & pricing */
    .detail-card {
        padding: 1rem;
    }

    /* Pricing */
    .pricing-header h3 {
        font-size: 2rem;
    }

    /* Culinary expect grid */
    .culinary-expect-grid {
        grid-template-columns: 1fr !important;
    }

    .culinary-quote {
        font-size: 1.6rem;
    }

    /* Footer */
    .site-footer {
        padding: 3rem 0 1.5rem;
        margin-top: 2rem;
    }

    .footer-brand h4 {
        font-size: 1.5rem;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 0.75rem;
    }
}