/* ========== VARIABLES OVERRIDE (Inherit from styles.css) ========== */
:root {
    --accent-primary: var(--text-accent);
    --accent-secondary: #d4af37;
    --accent-glow: var(--text-accent-glow);

    /* Global consistency re-map */
    --text-primary: #f5f5f5;
    --text-secondary: #888888;
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.02);
}

/* Soft Card Update */
.stat-card {
    border-radius: 24px;
}

.photo-card {
    border-radius: 24px;
}

.video-wrapper {
    border-radius: 24px;
}

/* ========== NAVIGATION ========== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-primary);
    text-shadow: 0 0 10px var(--accent-glow);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--accent-primary);
    border-radius: 50px;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    /* Fallback for transparency issues */
    background: linear-gradient(135deg, #fff 40%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    transform: skew(-5deg);
    /* Added slight skew for technical look */
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Animated Ring - Hidden for minimalism */
.hero-ring {
    display: none;
}

/* ========== SECTIONS ========== */
section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
    border-left: 4px solid var(--accent-secondary);
    padding-left: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.section-title span {
    color: var(--accent-secondary);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ========== STATS GRID ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.stat-card:hover::before {
    transform: translateX(100%);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}

/* ========== CONTENT BLOCKS (Placeholder) ========== */
.content-block {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px dashed var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
    color: var(--text-secondary);
}

.content-block i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.btn-fill {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--accent-secondary);
    color: var(--accent-secondary);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-fill:hover {
    background: var(--accent-secondary);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* ========== PHOTO GALLERY ========== */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.photo-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--glass-border);
    transition: all 0.5s ease;
}

.photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-color: var(--accent-primary);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.photo-card:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.photo-card:hover .photo-overlay {
    transform: translateY(0);
}

.photo-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.photo-date {
    color: var(--accent-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== ANIMATION ========== */
@keyframes orbit {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

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

/* ========== VIDEO SECTION ========== */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

/* Animated Glow Border */
.video-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    z-index: 1;
    border-radius: 22px;
    filter: blur(5px);
    opacity: 0.5;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    z-index: 0;
    border-radius: 30px;
    filter: blur(30px);
    opacity: 0.2;
    animation: border-glow 4s linear infinite;
}

@keyframes border-glow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ========== FOOTER ========== */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    text-align: center;
    color: var(--text-secondary);
    background: #000;
}

/* ========== QUOTE SECTION ========== */
#quote-section {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
}

.quote-container {
    max-width: 800px;
    text-align: center;
    padding: 4rem 2rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.quote-text {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 2rem;
    white-space: normal;
    text-align: center;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

@media (max-width: 768px) {
    .quote-text {
        font-size: 1.4rem;
        line-height: 1.4;
        max-width: 100%;
    }
}

.quote-author {
    font-size: 1.2rem;
    color: var(--accent-primary);
    font-weight: 600;
}

/* ========== MOBILE MENU TOGGLE ========== */
.menu-toggle {
    display: none;
    color: #fff;
    background: none;
    border: none;
    font-size: 1.5rem;
}

/* ========== PERSONA SWITCHER ========== */
.persona-switch-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 1rem;
    margin-right: auto;
}

.switch-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: #fff;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #ff0055;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
    border-color: #ff0055;
}

input:checked+.slider:before {
    transform: translateX(20px);
    background-color: #fff;
}

/* MAD PERSONA STYLES */
body.mode-crazy {
    --text-accent: #ff0055;
    --font-heading: 'Patrick Hand', cursive;
    --font-body: 'Patrick Hand', cursive;
}

/* ========== RESPONSIVE CLEANUP ========== */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .photo-card {
        height: 300px;
    }

    .video-wrapper::before,
    .video-wrapper::after {
        display: none;
        /* Disable heavy video glow on mobile */
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        transform: none;
        /* Simplify for mobile rendering */
    }
}