/* =====================================================
   J5 - SAGA ENT TALENT - GANGSTER RAP ARTIST WEBPAGE
   Dark Theme with Gold/Silver Accents
   ===================================================== */

/* CSS Variables */
:root {
    /* Dark Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: rgba(20, 20, 20, 0.95);

    /* Accent Colors */
    --gold: #d4af37;
    --gold-light: #f0d875;
    --gold-dark: #b8960c;
    --silver: #c0c0c0;
    --silver-light: #e8e8e8;
    --chrome: linear-gradient(180deg, #e8e8e8 0%, #a0a0a0 50%, #e8e8e8 100%);

    /* Gangster Rap Accent Colors */
    --blood-red: #8b0000;
    --crimson: #dc143c;
    --purple-haze: #9400d3;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;

    /* Fonts */
    --font-display: 'Bebas Neue', 'Anton', sans-serif;
    --font-headline: 'Oswald', sans-serif;
    --font-accent: 'Permanent Marker', cursive;
    --font-body: 'Russo One', sans-serif;

    /* Borders & Effects */
    --border-gold: 2px solid var(--gold);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.5);
    --glow-red: 0 0 20px rgba(220, 20, 60, 0.5);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Disable default context menu */
body {
    -webkit-touch-callout: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gold-text {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* =====================================================
   CONTEXT MODAL (Right-Click Modal)
   ===================================================== */
.context-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.context-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.context-modal-content {
    background: linear-gradient(145deg, var(--bg-tertiary), var(--bg-primary));
    border: var(--border-gold);
    border-radius: 10px;
    padding: 40px 60px;
    text-align: center;
    position: relative;
    box-shadow: var(--glow-gold), 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: scaleIn 0.3s ease;
}

.context-modal-content p {
    font-family: var(--font-headline);
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.context-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.context-modal-close:hover {
    color: var(--text-primary);
    transform: scale(1.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition-medium);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-headline);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-medium);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition-fast);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.4) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(10, 10, 10, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.hero-logo {
    max-width: 400px;
    width: 80%;
    margin-bottom: 1rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.8));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-title {
    font-size: clamp(4rem, 15vw, 10rem);
    font-family: var(--font-display);
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 5px 20px rgba(212, 175, 55, 0.3));
    margin-bottom: 0.5rem;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--crimson);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--purple-haze);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(17px, 9999px, 94px, 0);
    }

    10% {
        clip: rect(33px, 9999px, 23px, 0);
    }

    20% {
        clip: rect(80px, 9999px, 71px, 0);
    }

    30% {
        clip: rect(67px, 9999px, 62px, 0);
    }

    40% {
        clip: rect(89px, 9999px, 98px, 0);
    }

    50% {
        clip: rect(12px, 9999px, 56px, 0);
    }

    60% {
        clip: rect(45px, 9999px, 27px, 0);
    }

    70% {
        clip: rect(23px, 9999px, 85px, 0);
    }

    80% {
        clip: rect(90px, 9999px, 36px, 0);
    }

    90% {
        clip: rect(56px, 9999px, 15px, 0);
    }

    100% {
        clip: rect(39px, 9999px, 78px, 0);
    }
}

.hero-subtitle {
    font-family: var(--font-headline);
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--crimson);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-headline);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-ticket {
    background: var(--crimson);
    color: var(--text-primary);
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
}

.btn-ticket:hover {
    background: var(--blood-red);
    box-shadow: var(--glow-red);
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 25px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 24px;
    }
}

/* =====================================================
   SECTIONS (Common Styles)
   ===================================================== */
.section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.2) saturate(0.5);
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.95) 0%,
            rgba(10, 10, 10, 0.85) 50%,
            rgba(10, 10, 10, 0.95) 100%);
}

.container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto 0;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: var(--transition-medium);
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: var(--glow-gold);
}

.image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: var(--border-gold);
    border-radius: 10px;
    z-index: -1;
}

.about-headline {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =====================================================
   MUSIC SECTION
   ===================================================== */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.music-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-medium);
}

.music-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.music-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.music-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.music-card:hover .music-cover img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.music-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-gold);
}

.music-info {
    padding: 1.5rem;
}

.track-title {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.track-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.streaming-platforms {
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.streaming-platforms h3 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--text-muted);
    border-radius: 5px;
    transition: var(--transition-fast);
}

.platform-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

/* =====================================================
   VIDEOS SECTION
   ===================================================== */
.videos-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.video-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-medium);
    cursor: pointer;
}

.video-card:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.video-card.featured {
    grid-row: span 2;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-card.featured .video-thumbnail {
    aspect-ratio: 16/10;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.video-card:hover .video-play {
    background: var(--gold);
    box-shadow: var(--glow-gold);
}

.play-icon {
    font-size: 1.5rem;
    color: var(--bg-primary);
    margin-left: 5px;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    font-size: 0.8rem;
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =====================================================
   TOUR SECTION
   ===================================================== */
.tour-list {
    max-width: 900px;
    margin: 0 auto;
}

.tour-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-medium);
}

.tour-item:hover {
    border-color: var(--gold);
    transform: translateX(10px);
    box-shadow: var(--glow-gold);
}

.tour-date {
    text-align: center;
    min-width: 80px;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 8px;
}

.tour-date .month {
    display: block;
    font-family: var(--font-headline);
    font-size: 0.9rem;
    color: var(--bg-primary);
}

.tour-date .day {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--bg-primary);
    line-height: 1;
}

.tour-info {
    flex: 1;
}

.tour-info .venue {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.tour-info .location {
    color: var(--text-muted);
}

/* =====================================================
   MERCH SECTION
   ===================================================== */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.merch-item {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-medium);
}

.merch-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--glow-gold);
}

.merch-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.merch-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: var(--transition-medium);
}

.merch-item:hover .merch-image img {
    transform: scale(1.1);
}

.merch-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--crimson);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.merch-details {
    padding: 1.5rem;
    text-align: center;
}

.merch-details h4 {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.merch-price {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: var(--font-headline);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-email {
    display: inline-block;
    color: var(--text-primary);
    font-family: var(--font-headline);
    font-size: 1.3rem;
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.3rem;
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.contact-email:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--text-muted);
    border-radius: 5px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-tertiary);
}

.btn-submit {
    width: 100%;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 20px rgba(212, 175, 55, 0.3));
}

.footer-tagline {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-card.featured {
        grid-row: span 1;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 1.5rem;
        transition: var(--transition-medium);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-logo {
        max-width: 280px;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
    }

    .tour-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .context-modal-content {
        padding: 30px 40px;
        margin: 1rem;
    }

    .context-modal-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        padding: 0.9rem 2rem;
    }

    .streaming-platforms {
        padding: 2rem 1rem;
    }

    .platform-icons {
        gap: 1rem;
    }

    .platform-link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* =====================================================
   ANIMATIONS & EFFECTS
   ===================================================== */
/* Fade in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Chain link decoration */
.chain-border {
    position: relative;
}

.chain-border::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 20px,
            var(--gold) 20px,
            var(--gold) 40px);
    opacity: 0.1;
    z-index: -1;
}

/* Gold shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.shimmer {
    background: linear-gradient(90deg,
            var(--gold-dark) 0%,
            var(--gold-light) 50%,
            var(--gold-dark) 100%);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}