/* ----------------------------------
    Breakdown 25 — White + Gold Theme
    Color Palette:
    --primary-yellow: #CDAA3D;
    --white: #FFFFFF;
    --bg-dark: #0e0e0e;
    --bg-darker: #080808;
---------------------------------- */

:root {
    --bg-main: #0e0e0e;
    --bg-alt: #080808;
    --accent-yellow: #CDAA3D;
    --text-main: #ffffff;
    --text-muted: #cfcfcf;
    --border-soft: rgba(255, 255, 255, 0.08);
    --card-bg: #141414;
    --gradient-main: radial-gradient(circle at top, #2d2d2d 0, #0e0e0e 55%);
}

/* ----- GLOBAL RESETS ----- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: "Orbitron", sans-serif;
}

/* ----- NAVIGATION BAR ----- */

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(12px);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.16em;
    padding-bottom: 4px;
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--accent-yellow);
}

nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: var(--accent-yellow);
}

/* ----- SECTIONS ----- */

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.section-title {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.22em;
    color: var(--accent-yellow);
    margin-bottom: 14px;
}

.section-heading {
    font-family: "Orbitron", sans-serif;
    font-size: 28px;
    margin-bottom: 14px;
}

.section-sub {
    color: var(--text-muted);
    max-width: 640px;
    font-size: 15px;
    line-height: 1.7;
}

/* ----- HERO ----- */

.hero {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 32px;
    align-items: center;
    min-height: 70vh;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }
}

.hero-title-top {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.hero-title-main {
    margin-top: 12px;
    font-family: "Orbitron";
    font-size: clamp(36px, 6vw, 52px);
    text-transform: uppercase;
}

.hero-title-main .gold {
    color: var(--accent-yellow);
}

.hero-glitch {
    margin-top: 10px;
    font-family: "Orbitron";
    color: var(--white);
    text-transform: uppercase;
    font-size: clamp(32px, 5vw, 44px);
    text-shadow: 2px 0 var(--accent-yellow);
}

.hero-tagline {
    margin-bottom: 28px;
    color: var(--text-muted);
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ----- BUTTONS ----- */

.btn {
    border-radius: 999px;
    padding: 12px 24px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.16em;
    border: 1px solid var(--border-soft);
    color: var(--white);
    text-decoration: none;
    transition: 0.2s ease;
}

.btn-primary {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: #000;
    font-weight: 600;
}

.btn-primary:hover {
    filter: brightness(1.15);
}

.btn-ghost:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

/* ----- HERO CARD ----- */

.hero-card {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 22px;
}

.hero-card-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-stats {
    margin: 18px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.hero-stat {
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--border-soft);
}

.hero-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.hero-stat-value {
    font-family: "Orbitron";
    font-size: 18px;
}

/* ----- LISTS ----- */

.hero-list {
    list-style: none;
    margin-top: 10px;
    display: grid;
    gap: 6px;
    color: var(--text-muted);
}

.hero-list li::before {
    content: "▸ ";
    color: var(--accent-yellow);
}

/* ----- FEATURES GRID ----- */

.features-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--card-bg);
    padding: 18px;
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    position: relative;
}

.feature-pill {
    color: var(--accent-yellow);
    font-size: 11px;
    text-transform: uppercase;
}

.feature-title {
    font-family: "Orbitron";
    font-size: 17px;
    margin: 8px 0;
}

.feature-body {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ----- SPLIT SECTIONS ----- */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
    }
}

.split-box {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 22px;
}

.split-title {
    font-family: "Orbitron";
    font-size: 20px;
    margin-bottom: 12px;
}

.bullets {
    margin-top: 14px;
    list-style: none;
    color: var(--text-muted);
}

.bullets li {
    padding-left: 18px;
    margin-bottom: 8px;
    position: relative;
}

.bullets li::before {
    content: "";
    width: 10px;
    height: 2px;
    background: var(--accent-yellow);
    position: absolute;
    left: 0;
    top: 8px;
}

/* ----- UNDERWORLD STRIP ----- */

.strip {
    background: linear-gradient(135deg, rgba(205,170,61,0.2), transparent);
    border: 1px solid rgba(205,170,61,0.4);
    padding: 18px;
    border-radius: 20px;
}

.strip-title {
    font-family: "Orbitron";
    color: var(--accent-yellow);
    font-size: 18px;
}

/* ----- TIMELINE ROW ----- */

.timeline-row {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 16px;
}

.timeline-item {
    padding: 10px 12px;
    background: var(--card-bg);
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot-blue,
.dot-gold,
.dot-grey {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-gold { background: var(--accent-yellow); }

/* ----- FOOTER ----- */

footer {
    border-top: 1px solid var(--border-soft);
    margin-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bd-logo {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;

    /* ADJUST THESE VALUES */
    margin-left: 0px;
    padding-right: 40px;
}

/* --------------------------------------
   BACKGROUND FADE SLIDESHOW
-------------------------------------- */

.background-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* stays behind everything */
}

.background-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeZoom 24s infinite;
    filter: blur(6px);
    transform-origin: center;
}

@keyframes fadeZoom {
    0%   { opacity: 0; transform: scale(1.05); }
    10%  { opacity: 1; transform: scale(1.1); }
    30%  { opacity: 1; transform: scale(1.13); }
    40%  { opacity: 0; transform: scale(1.15); }
    100% { opacity: 0; transform: scale(1.15); }
}



/* Each image gets its own animation timing */
.background-slideshow img:nth-child(1) { animation-delay: 0s; }
.background-slideshow img:nth-child(2) { animation-delay: 8s; }
.background-slideshow img:nth-child(3) { animation-delay: 16s; }

@keyframes fadeImages {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    30%  { opacity: 1; }
    40%  { opacity: 0; }
    100% { opacity: 0; }
}

.hero-ctas {
    display: flex;
    gap: 24px;        /* more space between buttons */
    flex-wrap: wrap;
    margin-bottom: 20px;   /* space between buttons and text */
}

.hero > div:first-child {
    margin-top: -60px;   /* adjust -10px to -80px until it lines up perfectly */
}

.strip {
    margin-top: 24px;  /* adjust this value */
}

.split-box .hero-ctas {
    position: relative;
    top: 18px;   /* adjust this number (10–30px) to your liking */
    margin-top: 0 !important; /* ensure no physical layout change */
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none !important;
    }
}

/* ---------- NAV TOGGLE (MOBILE) ---------- */

.nav-toggle {
    display: none; /* hidden on desktop */
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 26px;
    cursor: pointer;
    margin-left: auto;
}

/* Mobile layout */
@media (max-width: 768px) {

    .nav {
        position: relative;
        padding: 10px 16px;
    }

    /* Show hamburger, hide menu by default */
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 14px 0 18px;
        z-index: 999;
    }

    .nav-menu.open {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .nav-menu a {
        font-size: 14px;
        padding: 6px 0;
    }
}

/* ------ NAV TOGGLE BUTTON ------ */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 26px;
    cursor: pointer;
    margin-left: auto;
    position: relative; /* important */
    width: 40px; /* fixes tap area */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

/* Default icon (hamburger) */
.nav-toggle .icon {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Hide hamburger when open */
.nav-toggle.open .icon {
    opacity: 0;
}

/* Display X (close icon) */
.nav-toggle.open::after {
    content: "✕";
    position: absolute;
    color: var(--text-main);
    font-size: 26px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* stays inside button */
}
/* HIDE HAMBURGER ON DESKTOP */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
}

/* Default: hide mobile slideshow */
.mobile-bg {
    display: none;
}

/* Desktop only */
@media (min-width: 769px) {
    .desktop-bg {
        display: block;
    }
    .mobile-bg {
        display: none;
    }
}

/* Mobile only */
@media (max-width: 768px) {
    .desktop-bg {
        display: none;
    }
    .mobile-bg {
        display: block;
    }
}

.background-slideshow,
.background-slideshow img,
.mobile-bg,
.mobile-bg img {
    position: fixed;
    top: 0;
    left: 0;
    
    width: 100vw;
    height: 100vh;

    object-fit: cover;
    object-position: center;
}

@supports (-webkit-touch-callout: none) {
    .background-slideshow,
    .background-slideshow img,
    .mobile-bg,
    .mobile-bg img {
        height: 100svh; /* small viewport height – removes iOS black bar */
    }
}











