/* =========================
   BRAND COLORS
========================= */
:root {
    --gold-primary: #d4af37;
    --gold-bright: #ffd65a;
    --gold-soft: #f3d88c;
    --bg-dark: #0d0d0d;
    --card-dark: #1a1a1a;
}

/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =========================
   BODY
========================= */
body {
    font-family: Arial, sans-serif;
    background: var(--bg-dark);
    color: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

/* =========================
   GLOBAL MEDIA SAFETY
========================= */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
   TYPOGRAPHY
========================= */
h1 { margin-bottom: 28px; }
h2 { margin-bottom: 22px; }
h3 { margin-bottom: 14px; }

p {
    margin-bottom: 18px;
    color: #ccc;
}

/* =========================
   WIDTH CONTROL
========================= */
.content-wrap {
    max-width: 860px;
    margin: 0 auto;
}

/* =========================
   DIVIDER
========================= */
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-soft);
    margin: 26px auto 36px;
    border-radius: 3px;
}

/* =========================
   HEADER
========================= */
header {
    background: #000;
    border-bottom: 2px solid var(--gold-primary);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: var(--gold-primary);
}

nav {
    display: flex;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    margin-left: 25px;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: var(--gold-primary);
}

/* =========================
   HERO
========================= */
.hero {
    padding: 140px 20px;
    min-height: 90vh;
    background:
        radial-gradient(circle at center, rgba(212,175,55,0.08), transparent 60%),
        linear-gradient(to bottom, #0f0f0f, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-inner {
    max-width: 900px;
}

.hero h1 {
    font-size: 42px;
}

.hero-subtext {
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto 40px;
}

/* =========================
   PAGE HERO
========================= */
.page-hero {
    padding: 90px 20px;
    text-align: center;
    background: #111;
    border-bottom: 2px solid var(--gold-soft);
}

.page-hero h1 {
    font-size: 36px;
    color: var(--gold-bright);
}

/* =========================
   BUTTONS
========================= */
.btn {
    background: var(--gold-primary);
    color: #000;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.btn:hover {
    background: var(--gold-bright);
}

.btn.primary:hover {
    box-shadow: 0 0 25px rgba(212,175,55,0.35);
}

/* =========================
   SECTIONS
========================= */
.section {
    padding: 110px 40px;
    text-align: center;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 60px;
}

/* =========================
   MEDIA FRAME (PORTRAIT SAFE)
========================= */
.media-frame {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
}

.media-frame img,
.media-frame video,
.media-frame iframe {
    width: 100%;
    height: auto;
    max-height: 65vh;
    object-fit: contain; /* ← THIS FIXES HEADS */
    background: #000;
}

/* =========================
   HORIZONTAL CAROUSEL (FINAL)
========================= */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

/* IMPORTANT FIX */
.slide {
    flex: 0 0 280px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ← NOT COVER */
    background: #000;
}

/* =========================
   CAROUSEL CONTROLS
========================= */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold-primary);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    padding: 10px 14px;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--gold-bright);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* =========================
   PROGRAM / ENGAGEMENT CARDS
========================= */
.programs-wrapper,
.engagement-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.program-block,
.engagement-card {
    background: var(--card-dark);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 40px;
    text-align: left;
    transition: 0.3s ease;
}

.program-block:hover,
.engagement-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
}

.program-block h2,
.engagement-card h2 {
    color: var(--gold-bright);
}

.program-tag {
    display: inline-block;
    font-size: 13px;
    background: var(--gold-primary);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.program-list li,
.engagement-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #ddd;
}

.program-list li::before,
.engagement-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

/* =========================
   FOOTER
========================= */
footer {
    border-top: 2px solid #222;
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        padding: 16px 20px;
    }

    nav {
        justify-content: center;
        gap: 12px;
        margin-top: 12px;
    }

    nav a {
        margin: 0;
        font-size: 15px;
    }

    .hero {
        padding: 100px 20px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 30px;
    }

    .section {
        padding: 80px 20px;
    }

    .slide {
        flex: 0 0 220px;
        height: 180px;
    }

    footer {
        font-size: 13px;
    }
}
/* =========================
   MICRO-INTERACTIONS
========================= */

/* Smooth global transitions */
* {
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

/* =========================
   BUTTON INTERACTION
========================= */
.btn {
    position: relative;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* =========================
   CARD HOVER POLISH
========================= */
.program-block,
.engagement-card {
    will-change: transform, box-shadow;
}

.program-block:hover,
.engagement-card:hover {
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.6),
        0 0 18px rgba(212, 175, 55, 0.12);
}

/* =========================
   SECTION FADE-IN (SCROLL)
========================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   HEADER SHADOW ON SCROLL
========================= */
header.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
}
