/* ==========================================
   Color Variables - Cream & Brown Theme
   ========================================== */
:root {
    --cream-light: #FFF8F0;
    --cream: #F5E6D3;
    --cream-dark: #E8D4B8;
    --brown-light: #C4A574;
    --brown: #8B6F47;
    --brown-dark: #6B5435;
    --brown-darker: #4A3A25;
    --accent-gold: #D4AF37;
    --text-dark: #2C2416;
    --text-medium: #5C4A32;
    --shadow: rgba(75, 58, 37, 0.1);
    --shadow-medium: rgba(75, 58, 37, 0.2);
    --shadow-strong: rgba(75, 58, 37, 0.3);
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background:
        radial-gradient(circle at 0% 0%, rgba(196, 165, 116, 0.22) 0, transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(107, 84, 53, 0.18) 0, transparent 55%),
        radial-gradient(circle at 0% 100%, rgba(212, 175, 55, 0.12) 0, transparent 55%),
        linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 40%, var(--cream-dark) 100%);
    background-attachment: fixed;
    background-size: 140% 140%;
    animation: bodyGradientShift 24s ease-in-out infinite alternate;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 18px; /* slightly larger for easier reading */
    position: relative;
}

/* Subtle animated grainy background overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.16;
    mix-blend-mode: soft-light;
    background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D'0%200%20200%20200'%20xmlns%3D'http://www.w3.org/2000/svg'%3E%3Cfilter%20id%3D'n'%3E%3CfeTurbulence%20type%3D'fractalNoise'%20baseFrequency%3D'0.8'%20numOctaves%3D'2'%20stitchTiles%3D'noStitch'/%3E%3C/filter%3E%3Crect%20width%3D'100%25'%20height%3D'100%25'%20filter%3D'url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

@keyframes bodyGradientShift {
    0% {
        background-position:
            0% 0%,
            100% 0%,
            0% 100%,
            50% 50%;
    }
    50% {
        background-position:
            15% 10%,
            85% 5%,
            10% 90%,
            55% 55%;
    }
    100% {
        background-position:
            30% 20%,
            70% 10%,
            20% 80%,
            60% 60%;
    }
}

@media (prefers-reduced-motion: reduce) {
    body {
        animation: none;
        background-attachment: scroll;
    }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==========================================
   Navigation
   ========================================== */
#navbar.gc-header,
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    /* slightly warm brown, translucent, blurred header (desktop / default) */
    background: rgba(139, 111, 71, 0.10);
    backdrop-filter: blur(18px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

#navbar.gc-header.scrolled,
.navbar.scrolled {
    /* a touch more opaque on scroll, still warm and glassy */
    background: rgba(139, 111, 71, 0.16);
    box-shadow: 0 2px 30px var(--shadow-medium);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
}

.logo-mark {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    letter-spacing: -0.5px;
}

.logo-subtext {
    font-size: 0.75rem;
    color: var(--brown-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brown);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brown-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    margin-right: 12px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: transparent;
    border: none;
    box-shadow: none; /* no box container shadow */
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.45));
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--brown);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 50%, var(--cream-dark) 100%);
    overflow: hidden;
    padding: 3rem 2rem 2rem;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--brown-dark);
    color: var(--cream-light);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-strong);
    background: var(--brown-darker);
}

.hero-decoration {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--brown-light) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    top: 10%;
    right: -10%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

/* ==========================================
   Animation Classes
   ========================================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-up.delay-1 {
    animation-delay: 0.2s;
}

.animate-fade-up.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.animate-on-scroll.visible {
    animation: fadeUpScroll 0.6s ease-out forwards;
}

@keyframes fadeUpScroll {
    from {
        opacity: 0.85;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ==========================================
   About/Services Section
   ========================================== */
.about-section {
    padding: 3rem 1.5rem;
    background: var(--cream-light);
}

.section-title {
    font-size: 3.1rem;
    text-align: center;
    color: var(--brown-dark);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.about-text {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    background: var(--cream);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--cream-light);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #25D366;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-button svg {
    width: 22px;
    height: 22px;
}

.whatsapp-icon svg {
    width: 20px;
    height: 20px;
}

.secondary-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--cream-light);
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--cream-light);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: var(--cream-light);
    color: var(--brown-dark);
    transform: translateY(-3px);
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-section {
    padding: 3rem 1.5rem;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brown-light), var(--brown));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info h4 {
    color: var(--brown-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* ==========================================
   Contact Section
   ========================================== */
/*. ==========================================
   Contact Section (coffee-toned)
   ========================================== */
.contact-section {
    padding: 3rem 1.5rem 3rem;
    background: radial-gradient(circle at top left, #4a3320 0%, #3a2818 45%, #1a1009 100%);
    color: var(--cream-light);
}

.contact-section .section-title {
    text-align: left;
    color: var(--cream-light);
}

.contact-shell {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.contact-shell::before {
    content: '';
    position: absolute;
    inset: -40px -60px auto;
    height: 220px;
    background: radial-gradient(circle at 10% 0%, rgba(250, 214, 165, 0.22), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
    filter: blur(2px);
}

.contact-card {
    margin-top: 2.25rem;
    padding: 2rem 1.75rem;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 248, 240, 0.08), rgba(0, 0, 0, 0.55));
    border: 1px solid rgba(255, 248, 240, 0.22);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
}

.contact-intro {
    font-size: 1rem;
    color: rgba(255, 248, 240, 0.9);
    line-height: 1.7;
}

.contact-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.6rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    background: radial-gradient(circle at 30% 0%, rgba(255, 248, 240, 0.18), transparent 60%);
    border: 1px solid rgba(255, 248, 240, 0.35);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6);
    color: var(--accent-gold);
}

.contact-row-text h3 {
    color: var(--cream-light);
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.contact-row-text p,
.contact-row-text a {
    color: rgba(255, 248, 240, 0.88);
    font-size: 0.85rem;
}

.contact-row-text a:hover {
    color: #ffe0b0;
}

.contact-note {
    margin-top: 0.4rem;
    font-size: 0.92rem;
    opacity: 0.88;
}

.contact-row--social {
    margin-top: 1.8rem;
}

.contact-review {
    margin-top: 1.4rem;
    padding: 1.05rem 1.25rem 1.15rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 248, 240, 0.28);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.contact-note--review {
    font-size: 0.9rem;
}

.contact-review-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
    padding: 0.6rem 1.7rem;
    border-radius: 999px;
    background: var(--accent-gold);
    color: var(--brown-darker);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.75);
    border: none;
}

.contact-review-button:hover {
    background: #b08b35;
    color: var(--brown-darker);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.9);
}

.social-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 0.9rem;
    justify-content: center;
}

.social-link {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 248, 240, 0.35);
    color: var(--cream-light);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.65);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--brown-darker);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.85);
}

.social-link svg,
.gc-contact-block svg {
    width: 22px;
    height: 22px;
    display: block;
}

.contact-copy {
    margin-top: 1.75rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 248, 240, 0.18);
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--brown-darker);
    color: var(--cream);
    text-align: center;
    padding: 3rem 2rem;
}

.footer p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

/* ==========================================
   Modern Global Footer (mobile-first)
   ========================================== */
.site-footer {
    background: linear-gradient(135deg, var(--brown-darker) 0%, #1f140b 100%);
    color: var(--cream-light);
    padding: 1.75rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 248, 240, 0.12);
}

.site-footer-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.site-footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.site-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.93rem;
}

.site-footer-brand-text {
    display: flex;
    flex-direction: column;
}

.site-footer-name {
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.site-footer-location {
    font-size: 0.85rem;
    opacity: 0.8;
}

.site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.site-footer-nav a {
    color: rgba(255, 248, 240, 0.85);
}

.site-footer-nav a:hover {
    color: #ffe0b0;
}

.site-footer-meta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer-social {
    display: flex;
    gap: 0.75rem;
}

.site-footer-social .social-link {
    background: rgba(245, 230, 211, 0.08);
    color: var(--cream-light);
}

.site-footer-social .social-link:hover {
    background: var(--cream-light);
    color: var(--brown-darker);
}

.site-footer-copy {
    font-size: 0.8rem;
    opacity: 0.8;
    justify-content: center;
    align-content: center;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 2rem 2rem 1.75rem;
    }

    .site-footer-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .site-footer-meta {
        align-items: flex-end;
        text-align: right;
        max-width: 340px;
    }
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

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

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .about-section,
    .testimonials-section,
    .contact-section {
        padding: 3.25rem 1rem 3rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ==========================================
   Ghana Page Specific – Layout & Header
   ========================================== */
.gc-header {
    /* reuse the main navbar styling (fixed already above) */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    
}

/* Hide when JS adds .nav-hidden */
.gc-header.nav-hidden {
    transform: translateY(-100%);
    transition: transform 0.25s ease;
}

/* keep scroll state subtle + transparent as well */
.gc-header.scrolled {
    background: rgba(139, 111, 71, 0.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Right nav menu glassmorphism (desktop) */
.nav-menu {
    backdrop-filter: none;
    background: transparent;
}



/* ==========================================
   Hero overrides
   ========================================== */
.gc-hero {
    padding-top: 140px;
    text-align: left;
}

.gc-hero .hero-content {
    max-width: 720px;
    text-align: left;
}

.gc-hero .hero-title {
    font-size: 2.6rem;
    letter-spacing: -1px;
}

.gc-hero .hero-subtitle {
    max-width: 520px;
}

.gc-cta-button {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

/* ==========================================
   Intro / About Copy
   ========================================== */
.container.narrow {
    max-width: 800px;
}

.gc-intro-copy p + p,
.gc-about-copy p + p {
    margin-top: 0.75rem;
}

.gc-about-copy h3,
.gc-about-copy h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--brown-dark);
}

/* ==========================================
   Menu Section / Dish Grid & Modal
   ========================================== */
.gc-menu-section {
    padding: 3rem 1.5rem;
    background: var(--cream-light);
}

.gc-menu-note {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: var(--text-medium);
}

.gc-menu-note-card {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 1.2rem 1.5rem;
    border-radius: 20px;
    background: #f3e9df;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.gc-menu-note-card h3 {
    margin-bottom: 0.3rem;
    color: var(--brown-dark);
}

/* Dish grid */
.menu-block {
    margin-bottom: 3rem;
}

.menu-block h3 {
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: 0.75rem;
}

.menu-block h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.dish-card {
    border: 1px solid var(--cream-dark);
    border-radius: 18px;
    overflow: hidden;
    background: white;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
    padding: 0;
}

.dish-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-medium);
}

.dish-card:focus-visible {
    outline: 2px solid var(--brown);
    outline-offset: 3px;
}

.dish-img {
    height: 120px;
    background: #ddd center/cover no-repeat;
}

.dish-name {
    padding: 0.75rem 0.9rem 0.9rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brown-dark);
}

/* Modal base */
.gc-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2000;
}

.gc-modal.is-open {
    display: block;
}

.gc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.gc-modal-dialog {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 18px;
    padding: 2rem 2.2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    z-index: 1;
}

.gc-modal-dialog--wide {
    max-width: 960px;
}

.gc-modal-close {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.3rem;
}

.gc-modal-title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.gc-modal-review-body {
    margin-top: 0.5rem;
}

.gc-modal-review-text {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-medium);
    white-space: pre-line;
}

.gc-modal-review-meta {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.92rem;
}

.gc-modal-review-author {
    font-weight: 600;
    color: var(--brown-dark);
}

.gc-modal-review-date {
    color: var(--text-medium);
    opacity: 0.8;
}

.gc-modal-review-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.gc-modal-review-nav button {
    border: none;
    background: rgba(0,0,0,0.04);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.review-preview {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.review-readmore {
    margin-top: 0.75rem;
    border: none;
    background: transparent;
    color: var(--accent, #b45b34);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

/* ==========================================
   Icons (simple shapes instead of emojis)
   ========================================== */
.icon {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    border-radius: 999px;
    border: 2px solid var(--brown);
    position: relative;
    box-sizing: content-box;
}

/* WhatsApp */
.icon-whatsapp {
    border-color: #25D366;
}
.icon-whatsapp::before {
    content: '';
    position: absolute;
    inset: 24% 32% 24% 32%;
    border-radius: 999px;
    border: 2px solid #25D366;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: rotate(35deg);
}
.icon-whatsapp::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 0 999px 999px 999px;
    border: 2px solid #25D366;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: translateX(-50%) rotate(40deg);
    background: #25D366;
}

/* Play icon */
.icon-play {
    border-color: rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.35);
}
.icon-play::before {
    content: '';
    position: absolute;
    inset: 24%;
    clip-path: polygon(30% 20%, 78% 50%, 30% 80%);
    background: #fff;
}

/* Close icon */
.icon-close {
    background: rgba(255,255,255,0.9);
}
.icon-close::before,
.icon-close::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 60%;
    background: var(--brown);
    left: 50%;
    top: 20%;
    transform-origin: center;
}
.icon-close::before {
    transform: translateX(-50%) rotate(45deg);
}
.icon-close::after {
    transform: translateX(-50%) rotate(-45deg);
}

/* Calendar icon */
.icon-calendar::before {
    content: '';
    position: absolute;
    inset: 26% 18% 20% 18%;
    border-radius: 4px;
    border: 2px solid var(--brown);
}
.icon-calendar::after {
    content: '';
    position: absolute;
    inset: 16% 22% auto 22%;
    height: 3px;
    border-radius: 999px;
    background: var(--brown);
}

/* Share icon */
.icon-share::before,
.icon-share::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    border: 2px solid var(--brown);
}
.icon-share::before {
    width: 5px;
    height: 5px;
    top: 22%;
    left: 26%;
}
.icon-share::after {
    width: 5px;
    height: 5px;
    bottom: 22%;
    right: 26%;
}
.icon-share::marker {
    content: '';
}

/* Book icon */
.icon-book::before,
.icon-book::after {
    content: '';
    position: absolute;
    border-radius: 3px;
    border: 2px solid var(--brown);
}
.icon-book::before {
    inset: 24% 20% 24% 34%;
}
.icon-book::after {
    inset: 24% 34% 24% 20%;
}

/* ==========================================
   CTAs: consistently styled “Book” variants
   ========================================== */
.gc-cta-button,
.whatsapp-button,
.secondary-button {
    font-size: 1rem;
    letter-spacing: 0.02em;
}

/* Subtle alt CTA style for in-section links */
.inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px dashed var(--brown-light);
    color: var(--brown-dark);
    font-size: 0.95rem;
}

/* ==========================================
   Reviews Carousel Arrows
   ========================================== */
.gc-review-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.gc-review-track {
    display: flex;
    gap: 1.25rem;
    will-change: transform;
    transition: transform 0.35s ease-out;
}

.gc-review-card {
    min-width: min(360px, 82vw);
}

/* Arrow buttons */
.gc-review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: none;
    background: rgba(255,248,240,0.95);
    box-shadow: 0 6px 18px var(--shadow-medium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gc-review-arrow span {
    width: 14px;
    height: 14px;
    border-top: 2px solid var(--brown-dark);
    border-right: 2px solid var(--brown-dark);
    transform: rotate(45deg);
}

.gc-review-arrow.prev {
    left: 0;
}
.gc-review-arrow.prev span {
    transform: rotate(-135deg);
}

.gc-review-arrow.next {
    right: 0;
}
.gc-review-arrow.next span {
    transform: rotate(45deg);
}

/* On very small screens keep arrows slightly inside */
@media (max-width: 600px) {
    .gc-review-arrow.prev {
        left: 4px;
    }
    .gc-review_arrow.next {
        right: 4px;
    }
}

/* ==========================================
   Skewed Contact Footer + Final Footer Line
   ========================================== */
.gc-contact-section {
    background: radial-gradient(circle at top left, var(--brown) 0%, var(--brown-darker) 45%, #25180d 100%);
    color: #fff;
    padding: 5rem 0 3rem;
    transform: skewY(-6deg);
    margin-top: 0;
}

.gc-contact-inner {
    transform: skewY(6deg);
}

.gc-contact-block h2,
.gc-contact-block h3 {
    letter-spacing: 0.05em;
}

/* Soft underline for primary booking block */
.gc-contact-block:first-child {
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
}

/* Final footer note inside skewed area */
.gc-footer-line {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==========================================
   Mobile tweaks (footer + hero)
   ========================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .gc-contact-section {
        padding: 4rem 0 3rem;
    }
}

/* ==========================================
   New Reviews Section (Ghana page specific)
   ========================================== */
.gc-reviews-section {
    background: var(--cream);
    padding: 3rem 1.5rem 3.5rem;
}

/* Shell – simple stacked layout on mobile, grid on larger screens */
.gc-review-carousel-wrapper {
    margin-top: 2rem;
    overflow: visible; /* allow cards to use full width without clipping */
}

.gc-review-viewport {
    overflow: visible;
}

.gc-review-track {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* review card design */
.gc-review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.6rem 1.8rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-medium);
    width: 100%;
    min-width: 0; /* override earlier min-width so cards don't overflow */
}

.gc-review-meta {
    margin-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 0.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.gc-review-author {
    font-weight: 600;
    color: var(--brown-dark);
}

.gc-review-date {
    opacity: 0.8;
}

/* hide review arrows entirely (no carousel now) */
.gc-review-arrow {
    display: none;
}

@media (min-width: 768px) {
    .gc-review-track {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Centered on small screens */
@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

    .nav-container {
        padding: 0.75rem 1.25rem;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        align-items: center;
        padding: 0.75rem 1.25rem 1rem;
        flex-direction: column;
        gap: 0.75rem;
        background: rgba(42, 30, 18, 0.98);
        border-radius: 0 0 18px 18px;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
        transform-origin: top;
        transform: scaleY(0.9);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: scaleY(1);
    }

    .nav-link {
        color: rgba(255, 248, 240, 0.92);
    }

    .nav-link::after {
        background: var(--accent-gold);
    }

    .hamburger {
        display: flex;
        z-index: 1100;
    }

    .hamburger span {
        background: #fdf4e8;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-4px) rotate(-45deg);
    }

    .gc-review-card {
        padding: 1.3rem 1.4rem;
        font-size: 0.98rem;
    }
}

.contact-icon i,
.social-link i,
.gc-cta-button i,
.whatsapp-button i {
    font-size: 1.2rem;
}

.social-link i {
    font-size: 1.4rem;
}

/* ==========================================
   Video Section (Ghana page specific)
   ========================================== */
.gc-video-section {
    padding: 3rem 1.5rem;
    background: var(--cream);
}

.gc-video-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.gc-video-carousel {
    margin-top: 2rem;
}

.gc-video-viewport {
    overflow: visible;
}

.gc-video-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.video-card {
    border-radius: 20px;
    padding: 0;
    border: none;
    background: white;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--shadow);
    overflow: hidden;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:active {
    transform: scale(0.98);
    box-shadow: 0 6px 18px var(--shadow-medium);
}

.video-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #000;
    overflow: hidden;
}

.video-thumb i.fa-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.6rem;
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.video-thumb-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#videoPlayer {
    width: 100%;
    max-height: 80vh;
    border-radius: 16px;
    background: #000;
}

.gc-video-arrow {
    display: none;
}

@media (min-width: 768px) {
    .gc-video-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.gc-menu-takehome {
    /* simple text block now */
    margin-top: 1rem;
    font-size: 0.98rem;
}

.gc-menu-takehome .gc-menu-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(238, 183, 123, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-dark);
}

.gc-menu-takehome .gc-menu-icon i {
    font-size: 1rem;
}

.fa-brands {
    padding-top : 1px;
}

/* ==========================================
   Mobile Vertical Spacing Tweaks
   (tighten gaps without feeling cramped)
   ========================================== */
@media (max-width: 600px) {
    /* Hero spacing */
    .hero {
        padding: 2.5rem 1.5rem 1.5rem;
        min-height: 90vh;
    }

    .hero-title {
        margin-bottom: 0.9rem;
    }

    .hero-subtitle {
        margin-bottom: 1.5rem;
    }

    /* Section paddings */
    .about-section,
    .testimonials-section,
    .gc-menu-section,
    .gc-video-section,
    .gc-reviews-section {
        padding: 2.5rem 1.25rem 3rem;
    }

    .cta-section {
        padding: 3.5rem 1.5rem;
    }

    .contact-section {
        padding: 2.5rem 1.25rem 2.5rem;
    }

    .contact-card {
        margin-top: 2rem;
        padding: 1.6rem 1.4rem;
    }

    .contact-row {
        align-items: flex-start;
    }

    .gc-contact-section {
        padding: 3.5rem 0 2.5rem;
    }

    .footer {
        padding: 2rem 1.5rem;
    }

    /* Big top/bottom margins between blocks */
    .about-text {
        margin-bottom: 2.5rem;
    }

    .services-grid {
        margin-top: 2.5rem;
    }

    .testimonials-grid {
        margin-top: 2rem;
    }

    .menu-block {
        margin-bottom: 2rem;
    }

    .gc-menu-note-card {
        margin-bottom: 2rem;
        padding: 1rem 1.25rem;
    }

    .gc-video-intro {
        margin-bottom: 1.75rem;
    }
}