/* ================================
   1. FONT IMPORTS
================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =====================================
   2. ROOT VARIABLES
====================================== */
:root {
    --brand-purple: #803089;
    --brand-purple-dull: #7b4d83; /* softer, muted purple */
    --brand-purple-hover: #5f2366;
    --black: #111111;
    --charcoal: #1A1A1A;
    --white: #ffffff;
    --grey: #555555;

    --font-header: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --max-width: 1300px;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 28px;
    --space-lg: 48px;
    --space-xl: 80px;
}

/* =====================================
   3. GLOBAL RESET
====================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    line-height: 1.65;
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =====================================
   HEADER & NAVIGATION
===================================== */

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--white);
    z-index: 9999;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */
.brand img {
    height: 46px;
    width: auto;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.2px;
    position: relative;
    transition: color 0.25s ease;
}

/* Subtle editorial hover */
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--brand-purple);
    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: var(--brand-purple);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Primary CTA */
.nav-cta {
    background: var(--brand-purple);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--brand-purple-hover);
    transform: translateY(-1px);
}

/* =====================================
   MOBILE NAVIGATION
===================================== */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px 0;
    background: var(--charcoal);
    transition: 0.3s ease;
}

@media (max-width: 980px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 78px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background: var(--white);
        padding: 48px 32px;
        transition: right 0.4s ease;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start;
    }

    .main-nav a {
        font-size: 1.1rem;
    }
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =====================================
   5. RESPONSIVE MOBILE NAV
====================================== */
@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        padding: 40px;
        transition: 0.4s ease;
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 24px;
        width: 100%;
        align-items: flex-start;
    }
}

/* =====================================
   6. TYPOGRAPHY
====================================== */
h1, h2, h3, h4 {
    font-family: var(--font-header);
    font-weight: 600;
    color: var(--black);
}

h1 { font-size: 3.2rem; margin-bottom: var(--space-md); }
h2 { font-size: 2.4rem; margin-bottom: var(--space-sm); }
h3 { font-size: 1.8rem; margin-bottom: var(--space-xs); }

p {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: var(--space-md);
}











/* ==============================
   HERO SECTION
=============================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 92vh;
    overflow: hidden;
}

/* Video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.55)
    );
}

/* Unmute Button */
.video-toggle {
    position: absolute;
    bottom: 28px;
    right: 28px;
    z-index: 3;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.35);
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.video-toggle:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}


/* ==============================
   WHO WE ARE STRIP
=============================== */
.highlight-strip {
    width: 100%;
    background: linear-gradient(
        90deg,
        #803089,
        #7b4d83
    );
    padding: 72px 28px;
}

.highlight-inner {
    max-width: 1400px; /* 👈 more breathing room */
    margin: 0 auto;
    text-align: center;
}

.highlight-title {
    font-size: clamp(1.8rem, 3.8vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;

    white-space: nowrap; /* force single line */
}

/* ==============================
   RESPONSIVE
=============================== */
@media (max-width: 1024px) {
    /* Allow wrapping BEFORE it ever gets clipped */
    .highlight-title {
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .highlight-strip {
        padding: 56px 22px;
    }
}



/* ==============================
   FOCUS AREAS
=============================== */

.focus-areas {
    width: 100%;
    padding: 80px 0 0;
    background: var(--white);
}

/* Section header (reuse across site) */
.section-header {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
    padding: 0 24px;
}

.section-header h2 {
    font-family: var(--font-header);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--grey);
    line-height: 1.6;
}

/* Grid */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

/* Tile */
.focus-tile {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Backgrounds */
.focus-finance {
    background-image: url('/assets/img/IMG-20251209-WA0001.jpg');
}

.focus-environment {
    background-image: url('/assets/img/IMG-20251209-WA0003.jpg');
}

.focus-culture {
    background-image: url('/assets/img/storyyy.jpg');
}

.focus-agriculture {
    background-image: url('https://i.pinimg.com/736x/0f/cc/ae/0fccaecbd86454bef980d578bd723ce9.jpg');
}

/* Overlay */
.focus-overlay {
    position: absolute;
    inset: 0;

    /* Stronger cinematic gradient */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.85)
    );

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 40px;
    color: #ffffff;
}



.focus-overlay h3 {
    font-family: var(--font-header);
    font-size: 1.75rem;
    margin-bottom: 14px;

    color: #cfa6d8; /* lighter Sygnia purple for contrast */
    background: rgba(0, 0, 0, 0.45);

    padding: 10px 18px;
    border-radius: 6px;
    letter-spacing: 0.2px;
}

.focus-overlay p {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 360px;
    color: rgba(255,255,255,0.92);
}

/* Hover – subtle, premium */
.focus-tile:hover .focus-overlay {
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.75)
    );
}

/* ==============================
   RESPONSIVE
=============================== */

@media (max-width: 980px) {
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .focus-tile {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .focus-areas {
        padding-top: 60px;
    }

    .focus-overlay h3 {
        font-size: 1.5rem;
    }

    .focus-overlay p {
        font-size: 0.95rem;
    }
}


/* ==============================
   FEATURED SHOWS
=============================== */

.featured-shows {
    padding: 90px 0;
    background: var(--white);
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    padding: 0 48px;
}

/* Carousel */
.shows-carousel {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 12px;
}

/* Cards */
.show-card {
    flex: 0 0 320px;
    height: 440px;
    position: relative;
    background-size: cover;
    background-position: center;
    scroll-snap-align: start;
    overflow: hidden;
}

/* Backgrounds */
.show-lfa {
    background-image: url('/assets/img/1.jpg');
}
.show-reflections {
    background-image: url('/assets/img/Reflections-Podcast\ Cover.jpg');
}
.show-my-story {
    background-image: url('/assets/img/storyyy.jpg');
}
.show-make-choice {
    background-image: url('/assets/img/choice.jpg');
}

/* Overlay */
.show-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.4)
    );
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    color: var(--white);
}

/* Text */
.show-overlay h3 {
    font-family: var(--font-header);
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #cfa6d8;
}

.show-overlay p {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.95);
}

/* Button */
.show-btn {
    align-self: center;
    padding: 10px 26px;
    background: var(--brand-purple);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.show-btn:hover {
    background: var(--brand-purple-hover);
    transform: translateY(-1px);
}

/* Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 5;
}

.carousel-arrow.left { left: 10px; }
.carousel-arrow.right { right: 10px; }

/* CTA */
.carousel-cta {
    margin-top: 40px;
    text-align: center;
}

.primary-cta {
    padding: 14px 34px;
    background: var(--brand-purple);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}

/* Scrollbar cleanup */
.shows-carousel::-webkit-scrollbar {
    display: none;
}

/* Responsive */
@media (max-width: 980px) {
    .show-card {
        flex: 0 0 85%;
        height: 380px;
    }

    .carousel-wrapper {
        padding: 0 24px;
    }
}


/* ==============================
   SERVICES SNAPSHOT
=============================== */

.services-snapshot {
    width: 100%;
    padding: 90px 0;
    background: var(--white);
}

/* Grid */
.services-grid {
    display: flex;
    width: 100%;
}

/* Tiles */
.service-tile {
    flex: 1;
    height: 420px;
    position: relative;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* 👇 FORCE mobile repaint */
    min-height: 320px;
}


/* Background images */
.service-tv {
    background-image: url('https://i.pinimg.com/736x/c6/55/b0/c655b04cd249890623250dc14d50f487.jpg');
}

.service-digital {
    background-image: url('https://images.unsplash.com/photo-1593642532973-d31b6557fa68?auto=format&fit=crop&w=1200&q=80');
}

.service-strategy {
    background-image: url('/assets/img/IMG-20251209-WA0005.jpg');
}

/* Overlay */
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.45)
    );

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    padding: 32px;
}

/* Text */
.service-overlay h3 {
    font-family: var(--font-header);
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #cfa6d8; /* brand-safe purple */
}

.service-overlay p {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.95);
    max-width: 420px;
    margin: 0 auto;
}

/* Hover – subtle only */
.service-tile:hover .service-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.55)
    );
}

/* CTA */
.services-cta {
    text-align: center;
    margin-top: 44px;
}

/* Responsive */
@media (max-width: 980px) {
    .services-grid {
        flex-direction: column;
    }

    .service-tile {
        height: 320px;
    }
}




/* ==============================
   IMPACT METRICS
=============================== */
/* ==============================
   1.6 IMPACT METRICS
=============================== */

.impact-metrics {
    width: 100%;
    background: #ffffff;
    padding: 90px 24px;
}

.metrics-container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
}

/* Metric block */
.metric {
    flex: 1;
    min-width: 220px;
}

/* Number */
.metric .counter {
    font-family: var(--font-header);
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-purple);
    margin-bottom: 14px;
}

/* Label */
.metric p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--grey);
    line-height: 1.5;
}

/* ==============================
   RESPONSIVE
=============================== */

@media (max-width: 1200px) {
    .metrics-container {
        flex-wrap: wrap;
        gap: 32px;
    }
}

@media (max-width: 980px) {
    .metrics-container {
        flex-direction: column;
        align-items: center;
    }

    .metric .counter {
        font-size: 2.5rem;
    }

    .metric p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .metric .counter {
        font-size: 2.1rem;
    }

    .metric p {
        font-size: 0.95rem;
    }
}


/* FINAL CTA STRIP */
.final-cta {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('https://i.pinimg.com/736x/7b/ba/94/7bba9438553554af7ffdd005974016bc.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0; /* remove any default margin */
    padding: 0; /* remove any default padding */
}

.final-cta-overlay {
    background: rgba(0,0,0,0.45);
    padding: 60px 40px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0; /* ensure no extra margin */
}

.final-cta-overlay h2 {
    font-family: var(--font-header);
    font-size: 2.6rem;
    color: #fff;
    margin: 0 0 24px 0; /* remove extra bottom margin */
    line-height: 1.3;
}

.btn-final-cta {
    display: inline-block;
    padding: 16px 32px;
    background-color: #803089;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
    margin: 0; /* remove extra margin */
}

.btn-final-cta:hover {
    background-color: #5f2366;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .final-cta-overlay {
        padding: 50px 24px;
    }
}

@media (max-width: 980px) {
    .final-cta {
        height: 300px;
    }

    .final-cta-overlay h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .final-cta {
        height: 250px;
    }

    .final-cta-overlay h2 {
        font-size: 1.5rem;
    }

    .final-cta-overlay {
        padding: 30px 16px;
    }
}




/* ==============================
   FOOTER
=============================== */
.site-footer {
    background: #111;
    color: #eee;
    padding: 80px 24px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* ==============================
   QUICK LINKS
=============================== */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-bottom: 42px;
}

.footer-links a {
    font-size: 0.95rem;
    color: #eee;
    text-decoration: none;
    opacity: 0.8;
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.25s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links a:hover::after {
    width: 100%;
}

/* ==============================
   NEWSLETTER / CTA
=============================== */
.footer-newsletter {
    max-width: 560px;
    margin: 0 auto 46px;
}

.footer-newsletter p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.6;
}

/* CTA button */
.footer-cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    background: linear-gradient(
        90deg,
        var(--brand-purple),
        var(--brand-purple-dull)
    );
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* ==============================
   SOCIAL ICONS
=============================== */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-bottom: 36px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eee;
    font-size: 1rem;
    opacity: 0.85;
    transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.footer-social a:hover {
    background: var(--brand-purple);
    opacity: 1;
    transform: translateY(-2px);
}

/* ==============================
   COPYRIGHT
=============================== */
.footer-copy {
    font-size: 0.85rem;
    color: #aaa;
}

/* ==============================
   RESPONSIVE
=============================== */
@media (max-width: 600px) {
    .footer-links {
        gap: 16px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }
}

