/* =========================================
   VEGAS 2027 - RAW & FUNKY DESIGN SYSTEM
   With Dark/Light Mode Support
   ========================================= */

/* ---------- CSS VARIABLES - DARK THEME (DEFAULT) ---------- */
:root {
    /* Colors - Dark Mode */
    --bg-dark: #0F0F0F;
    --bg-surface: #1A1A1A;
    --accent-volt: #D4FF00;
    --accent-orange: #FF3300;
    --text-bone: #F4F4F0;
    --text-muted: #888888;
    --border-color: #333333;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #D4FF00 0%, #FF3300 100%);

    /* Typography */
    --font-display: 'Archivo Black', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Spacing */
    --section-padding: clamp(60px, 10vw, 120px);
    --container-max: 1280px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows - Hard/Brutalist */
    --shadow-hard: 8px 8px 0px var(--bg-dark);
    --shadow-hover: 12px 12px 0px var(--accent-volt);
}

/* ---------- LIGHT THEME VARIABLES ---------- */
[data-theme="light"] {
    --bg-dark: #F4F4F0;
    --bg-surface: #FFFFFF;
    --accent-volt: #B8E600;
    --accent-orange: #FF3300;
    --text-bone: #0F0F0F;
    --text-muted: #666666;
    --border-color: #CCCCCC;
    --shadow-hard: 8px 8px 0px #0F0F0F;
    --shadow-hover: 12px 12px 0px var(--accent-orange);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-bone);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
    /* Noise overlay for gritty texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

/* ---------- PRELOADER ---------- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.loader-text .highlight {
    color: var(--accent-volt);
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--border-color);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--accent-volt);
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    to {
        width: 100%;
    }
}

/* ---------- NAVIGATION ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-base);
    background: transparent;
    border-bottom: 2px solid transparent;
}

.navbar.scrolled {
    background: var(--bg-surface);
    border-bottom: 2px solid var(--border-color);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    display: flex;
    gap: 8px;
}

.logo-text {
    color: var(--text-bone);
}

.logo-accent {
    color: var(--accent-volt);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-volt);
    transition: var(--transition-base);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-volt);
    color: var(--bg-dark);
    padding: 10px 24px !important;
    border-radius: 0;
    font-weight: 700 !important;
    border: 2px solid var(--accent-volt);
}

.nav-cta:hover {
    background: transparent;
    color: var(--accent-volt);
}

.nav-cta::after {
    display: none;
}

/* Theme Toggle */
.theme-toggle {
    width: 60px;
    height: 32px;
    background: var(--bg-surface);
    border: 2px solid var(--border-color);
    border-radius: 0;
    position: relative;
    padding: 0;
    margin-right: 20px;
}

.toggle-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: var(--accent-volt);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

[data-theme="light"] .toggle-thumb {
    transform: translateX(28px);
    background: var(--accent-orange);
}

.sun-icon,
.moon-icon {
    position: absolute;
    transition: opacity 0.3s ease;
}

.sun-icon {
    opacity: 1;
}

.moon-icon {
    opacity: 0;
}

[data-theme="light"] .sun-icon {
    opacity: 0;
}

[data-theme="light"] .moon-icon {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    padding: 5px 0;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--text-bone);
    transition: var(--transition-base);
}

.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);
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .theme-toggle {
        margin-right: 10px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-slow);
        padding: 40px;
        border-left: 3px solid var(--accent-volt);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-volt);
    color: var(--bg-dark);
    border-color: var(--accent-volt);
    box-shadow: 6px 6px 0px var(--accent-orange);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px var(--accent-orange);
}

.btn-primary:active {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0px var(--accent-orange);
}

.btn-outline {
    background: transparent;
    color: var(--text-bone);
    border-color: var(--text-bone);
    box-shadow: 6px 6px 0px var(--border-color);
}

.btn-outline:hover {
    background: var(--text-bone);
    color: var(--bg-dark);
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px var(--border-color);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 6px 6px 0px var(--accent-orange);
    }

    50% {
        box-shadow: 6px 6px 20px rgba(255, 51, 0, 0.6);
    }
}

/* ---------- HERO SECTION ---------- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 60px;
    background: radial-gradient(ellipse at top right, rgba(212, 255, 0, 0.1), transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(255, 51, 0, 0.1), transparent 50%),
        var(--bg-dark);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 255, 0, 0.1);
    border: 2px solid var(--accent-volt);
    padding: 8px 20px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-volt);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 255, 0, 0.7);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(212, 255, 0, 0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 7rem);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-subtitle strong {
    color: var(--text-bone);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-web3 {
    margin-top: 20px;
}

.web3-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(212, 255, 0, 0.08);
    border: 2px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 700;
}

.divider {
    opacity: 0.3;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--bg-surface);
    border: 3px solid var(--accent-volt);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hard);
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 3px solid var(--accent-volt);
    box-shadow: var(--shadow-hard);
    filter: grayscale(100%) contrast(1.2);
    /* Gritty black & white look */
    transition: filter 0.4s ease;
}

.hero-image:hover {
    filter: grayscale(0%) contrast(1);
}

.placeholder-text {
    color: var(--text-muted);
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--text-muted);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--accent-volt);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.3;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(30px, 6vw, 7rem);
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
}



/* ---------- MARQUEE ---------- */
.marquee-container {
    background: var(--accent-volt);
    color: var(--bg-dark);
    padding: 16px 0;
    overflow: hidden;
    border-top: 3px solid var(--bg-dark);
    border-bottom: 3px solid var(--bg-dark);
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.marquee-divider {
    color: var(--accent-orange);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---------- STATS BAR ---------- */
.stats-bar {
    background: var(--bg-surface);
    padding: 50px 0;
    border-top: 3px solid var(--border-color);
    border-bottom: 3px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number,
.stat-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent-volt);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ---------- SECTION HEADERS ---------- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent-volt);
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    padding: 0 40px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 3px;
    background: var(--accent-volt);
}

.section-tag::before {
    left: 0;
}

.section-tag::after {
    right: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-title.left-align {
    text-align: left;
}

.highlight {
    color: var(--accent-volt);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ---------- INCLUDED SECTION ---------- */
.included {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.included-card {
    background: var(--bg-surface);
    padding: 40px 30px;
    border: 2px solid var(--border-color);
    border-radius: 0;
    box-shadow: var(--shadow-hard);
    transition: var(--transition-base);
    position: relative;
}

.included-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-volt);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.included-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.included-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ---------- COACHES SECTION ---------- */
.coaches {
    padding: var(--section-padding) 0;
    background: var(--bg-surface);
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.coach-card {
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 0;
    box-shadow: var(--shadow-hard);
    overflow: hidden;
    transition: var(--transition-base);
}

.coach-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-volt);
}

.coach-image {
    position: relative;
    height: 320px;
    background: var(--bg-surface);
    border-bottom: 2px solid var(--border-color);
    overflow: hidden;
}

.coach-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
}

.coach-overlay {
    position: absolute;
    bottom: 0;
    /* Only at the bottom */
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(212, 255, 0, 0.95), transparent);
    padding: 40px 20px 20px;
    /* More padding at top */
    opacity: 0;
    transform: translateY(20px);
    /* Starts slightly lower */
    transition: var(--transition-base);
}

.coach-card:hover .coach-overlay {
    opacity: 1;
    transform: translateY(0);
    /* Slides up into place */
}


.ig-link {
    background: var(--bg-dark);
    color: var(--accent-volt);
    padding: 10px 20px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid var(--bg-dark);
}

.ig-link:hover {
    background: transparent;
    color: var(--bg-dark);
}

.coach-info {
    padding: 30px;
}

.coach-role {
    display: block;
    color: var(--accent-volt);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 700;
}

.coach-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.coach-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.coach-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.coach-tags span {
    background: var(--bg-surface);
    color: var(--text-bone);
    padding: 4px 12px;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 700;
}

.partnership-banner {
    background: var(--bg-dark);
    border: 3px solid var(--border-color);
    border-radius: 0;
    padding: 30px;
    display: flex;
    justify-content: center;
}

.partnership-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.partnership-icon {
    font-size: 3rem;
}

.partnership-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.partnership-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ---------- SCHEDULE / TIMELINE ---------- */
.schedule {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-volt);
}

.timeline-item {
    position: relative;
    padding-left: 120px;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-volt);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--bg-dark);
    border: 3px solid var(--bg-dark);
    box-shadow: 4px 4px 0px var(--accent-orange);
    z-index: 2;
}

.timeline-content {
    background: var(--bg-surface);
    padding: 30px;
    border: 2px solid var(--border-color);
    border-radius: 0;
    box-shadow: var(--shadow-hard);
    transition: var(--transition-base);
}

.timeline-content:hover {
    border-color: var(--accent-volt);
    transform: translateX(10px);
}

.timeline-days {
    display: inline-block;
    color: var(--accent-volt);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        padding-left: 90px;
    }

    .timeline-marker {
        left: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ---------- ACCOMMODATION ---------- */
.accommodation {
    padding: var(--section-padding) 0;
    background: var(--bg-surface);
}

.accommodation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.accommodation-content p {
    color: var(--text-muted);
    margin: 20px 0;
}

.accommodation-features {
    margin: 30px 0;
}

.accommodation-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 2px solid var(--border-color);
    font-weight: 500;
}

.check {
    color: var(--accent-volt);
    font-weight: bold;
    font-size: 1.2rem;
}

.accommodation-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 16px;
}

.gallery-item {
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.gallery-item:hover {
    border-color: var(--accent-volt);
    transform: scale(1.03);
}

.gallery-large {
    grid-row: span 3;
}

.placeholder-text-small {
    color: var(--text-muted);
    font-size: 2rem;
}

@media (max-width: 900px) {
    .accommodation-wrapper {
        grid-template-columns: 1fr !important;
    }

    .accommodation-gallery {
        display: grid;
        grid-template-columns: 1fr !important;
    }

    .gallery-large.video-container {
        aspect-ratio: 3 / 4 !important;
    }
}


/* =========================================
   VIDEO PLAYER STYLES
   ========================================= */

.video-container {
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

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

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.8), transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-base);
}

.video-container:hover .video-overlay {
    opacity: 1;
}

/* Custom Controls */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.95), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-base);
    z-index: 10;
}

.video-container:hover .video-controls {
    opacity: 1;
    transform: translateY(0);
}

/* Play/Pause Button */
.video-play-btn {
    width: 44px;
    height: 44px;
    background: var(--accent-volt);
    border: 2px solid var(--bg-dark);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
    color: var(--bg-dark);
}

.video-play-btn:hover {
    background: var(--accent-orange);
    transform: scale(1.1);
}

/* Progress Bar */
.video-progress-container {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.video-progress-bar {
    height: 100%;
    background: var(--accent-volt);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 0;
}

.video-progress-container:hover .video-progress-bar {
    background: var(--accent-orange);
}

/* Time Display */
.video-time {
    color: var(--text-bone);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    font-family: var(--font-body);
}

/* Portrait orientation for large gallery item */
.gallery-large.video-container {
    aspect-ratio: 3/4;
    /* Portrait ratio */
}

/* Mobile adjustments */
@media (max-width: 900px) {
    .gallery-large.video-container {
        aspect-ratio: 16/9;
        /* Landscape on mobile */
    }

    .video-controls {
        padding: 15px;
    }

    .video-play-btn {
        width: 36px;
        height: 36px;
    }

    .video-time {
        font-size: 0.75rem;
    }
}

/* Playing state */
.video-container.playing .video-overlay {
    opacity: 0;
}

.video-container.playing .play-icon {
    display: none;
}

.video-container:not(.playing) .pause-icon {
    display: none;
}

/* =========================================
   PRICING SECTION - SINGLE CARD SPLIT LAYOUT
   ========================================= */

.pricing {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-surface);
    border: 3px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-hard);
}

/* Left Content */
.pricing-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-surface);
    position: relative;
    z-index: 2;
}

.pricing-content .section-tag {
    text-align: left;
    margin-bottom: 20px;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1;
}

.pricing-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Price Block */
.pricing-price-block {
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.pricing-currency {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent-volt);
    vertical-align: top;
    margin-right: 4px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--accent-volt);
    letter-spacing: 2px;
    line-height: 1;
}

.pricing-period {
    display: block;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-top: 8px;
    font-weight: 500;
}

/* Features List */
.pricing-features-list {
    margin-bottom: 40px;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-bone);
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-features-list li:last-child {
    border-bottom: none;
}

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

/* Signup Button */
.btn-signup {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--text-bone);
    padding: 20px 48px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 3px solid var(--accent-orange);
    border-radius: 0;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: 6px 6px 0px var(--accent-volt);
    margin-bottom: 20px;
}

.btn-signup:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px var(--accent-volt);
    background: var(--accent-volt);
    color: var(--bg-dark);
    border-color: var(--accent-volt);
}

.btn-signup:active {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0px var(--accent-volt);
}

.pricing-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    font-style: italic;
}

/* Right Image */
.pricing-image-container {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.pricing-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pricing-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: var(--transition-base);
}

.pricing-image-container:hover .pricing-image-placeholder img {
    filter: grayscale(0%) contrast(1);
}

.pricing-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(212, 255, 0, 0.1));
    pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-content {
        padding: 40px 30px;
    }

    .pricing-image-container {
        min-height: 400px;
        order: -1;
        /* Image on top on mobile */
    }

    .pricing-amount {
        font-size: 4rem;
    }

    .pricing-currency {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-content {
        padding: 30px 20px;
    }

    .pricing-amount {
        font-size: 3rem;
    }

    .btn-signup {
        padding: 16px 32px;
        font-size: 1.1rem;
    }

    .pricing-features-list li {
        font-size: 0.9rem;
    }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-surface);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-dark);
    padding: 40px 30px;
    border: 2px solid var(--border-color);
    border-radius: 0;
    box-shadow: var(--shadow-hard);
    position: relative;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-volt);
}

.quote-icon {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--accent-volt);
    line-height: 0.5;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-volt);
    border: 2px solid var(--bg-dark);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    font-weight: 700;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* =========================================
   PARTNERS SECTION - SINGLE LINE
   ========================================= */

.partners {
    padding: 80px 0;
    background: var(--bg-surface);
    overflow: hidden;
    position: relative;
}

.partners::before,
.partners::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.partners::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-surface), transparent);
}

.partners::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-surface), transparent);
}

.partners-track {
    overflow: hidden;
}

.partners-marquee {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marqueePartners 40s linear infinite;
}

.partners-track:hover .partners-marquee {
    animation-play-state: paused;
}

@keyframes marqueePartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    width: 180px;
    height: 180px;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.partner-card:nth-child(odd) {
    animation: partnerFloat 6s ease-in-out infinite;
}

.partner-card:nth-child(even) {
    animation: partnerFloat 6s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes partnerFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: var(--transition-base);
}

.partner-card:hover {
    border-color: var(--accent-volt);
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 8px 8px 0px var(--accent-orange);
    z-index: 10;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) brightness(1);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 255, 0, 0.2), transparent);
    transition: 0.7s;
}

.partner-card:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .partner-card {
        width: 140px;
        height: 140px;
    }

    .partners-marquee {
        gap: 40px;
    }

    .partners::before,
    .partners::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .partner-card {
        width: 120px;
        height: 120px;
    }

    .partners-marquee {
        gap: 30px;
    }
}

/* ---------- FAQ ---------- */
.faq {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    border: 2px solid var(--border-color);
    border-radius: 0;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item.active {
    border-color: var(--accent-volt);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-volt);
    transition: var(--transition-base);
    flex-shrink: 0;
    margin-left: 20px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- FINAL CTA ---------- */
/* =========================================
   FINAL CTA - WITH IMAGE & YELLOW OVERLAY
   ========================================= */

.final-cta {
    padding: var(--section-padding) 0;
    background-color: var(--accent-volt);
    /* The base yellow color */
    color: var(--bg-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* The Background Image Layer */
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    /* IMAGE PLACEHOLDER: Replace with your actual image path */
    background-image: url('assets/DSC02006.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* This is the magic: it blends the image with the yellow background */
    opacity: 0.6;
    /* Adjust from 0.1 to 1.0 to control image visibility */
    mix-blend-mode: multiply;
    /* Try 'overlay' or 'darken' for different effects */
    z-index: 1;
}

/* Ensure the text stays above the image */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* Remove the old gradient pattern if you don't need it anymore */
.cta-bg-pattern {
    display: none;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1;
    font-size: 500;
}

.cta-title .highlight {
    color: var(--bg-dark);
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-decoration-color: var(--accent-orange);
}

.cta-text {
    color: var(--bg-dark);
    font-size: 1.6rem;
    margin-bottom: 40px;
    opacity: 1;
    font-weight: 600;
}

.btn-large {
    background: var(--bg-dark);
    color: var(--accent-volt);
    border-color: var(--bg-dark);
    box-shadow: 6px 6px 0px var(--accent-orange);
}

.btn-large:hover {
    background: var(--accent-orange);
    color: var(--bg-dark);
    box-shadow: 8px 8px 0px var(--bg-dark);
}

.cta-contact {
    margin-top: 50px;
}

.cta-contact p {
    color: var(--bg-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-methods {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-methods a {
    padding: 10px 20px;
    background: var(--bg-dark);
    color: var(--accent-volt);
    border: 2px solid var(--bg-dark);
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition-base);
}

.contact-methods a:hover {
    background: transparent;
    color: var(--bg-dark);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--bg-surface);
    padding: 60px 0 20px;
    border-top: 3px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--accent-volt);
    border-color: var(--accent-volt);
    transform: translate(-2px, -2px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-volt);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom strong {
    color: var(--accent-volt);
}

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

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

/* Coach Images */
.coach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.4s ease;
}

.coach-card:hover .coach-img {
    filter: grayscale(0%) contrast(1);
}

/* Gallery Images */
.gallery-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-item .placeholder-text {
    display: none;
    /* Hide when you add real images */
}

/* Author Avatars */
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border: 3px solid var(--bg-dark);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 6px 6px 0px var(--bg-dark);
    z-index: 999;
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px var(--bg-dark);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}