/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --primary: #e50914;
    --primary-dark: #b20710;
    --secondary: #ffd700;
    --dark: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #f5f5f5;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gradient: linear-gradient(135deg, #e50914 0%, #ff4757 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 60px rgba(229, 9, 20, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 71, 87, 0.15) 0%, transparent 50%);
    z-index: 1;
}

/* Sound Waves Animation */
.sound-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(229, 9, 20, 0.2);
    border-radius: 50%;
    animation: pulse 3s ease-out infinite;
}

.wave-2 {
    animation-delay: 1s;
    border-color: rgba(255, 71, 87, 0.2);
}

.wave-3 {
    animation-delay: 2s;
    border-color: rgba(255, 215, 0, 0.2);
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--text-light);
}

.vinyl-icon {
    font-size: 2rem;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-cta {
    background: var(--gradient);
    padding: 10px 25px;
    border-radius: 50px;
    color: var(--text-light) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 100px 20px 50px;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 1s ease-out;
}

.title-line {
    display: block;
}

.highlight {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 6rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.btn-hero {
    display: inline-block;
    background: var(--gradient);
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: var(--shadow);
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    margin: 10px auto 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-section {
    padding: 80px 20px;
    background: var(--text-light);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ============================================
   SELECTION SECTION
   ============================================ */
.selection-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Top 3 DJ Cards */
.top-picks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.dj-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.dj-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.dj-card.featured {
    border: 3px solid var(--secondary);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.4);
}

.dj-card-header {
    padding: 40px 30px 20px;
    text-align: center;
    background: var(--gradient-dark);
}

.dj-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.dj-card-header h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.dj-specialty {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-style: italic;
}

.dj-card-body {
    padding: 30px;
}

.dj-card-body p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.dj-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature {
    background: rgba(229, 9, 20, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.dj-card-footer {
    padding: 20px 30px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.price {
    font-size: 1.1rem;
    color: #666;
}

.price strong {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 800;
}

.dj-links {
    display: flex;
    gap: 10px;
}

.btn-link {
    background: var(--gradient);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.4);
}

.btn-link.secondary {
    background: var(--dark);
}

/* Compact DJ Cards */
.dj-list {
    display: grid;
    gap: 20px;
}

.dj-card-compact {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dj-card-compact:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.2);
}

.compact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.dj-icon-small {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.compact-header h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0;
}

.specialty-small {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.compact-description {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.compact-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.price-compact {
    font-size: 1rem;
    color: #666;
}

.price-compact strong {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 800;
}

.btn-link-small {
    background: var(--dark);
    color: var(--text-light);
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-link-small:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   GUIDE SECTION
   ============================================ */
.guide-section {
    padding: 80px 20px;
    background: white;
}

.guide-intro {
    max-width: 900px;
    margin: 0 auto 50px;
}

.guide-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.alternative-box {
    background: var(--gradient);
    color: var(--text-light);
    padding: 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: 50px auto;
    box-shadow: var(--shadow);
}

.alternative-box h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    margin-bottom: 20px;
}

.alternative-box p {
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Checklist */
.checklist-section {
    max-width: 1000px;
    margin: 60px auto 0;
}

.checklist-section h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 15px;
}

.checklist-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

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

.checklist-item {
    display: flex;
    gap: 20px;
    background: var(--light-gray);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.1);
    transform: translateY(-5px);
}

.checkbox {
    min-width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.checklist-content h4 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.checklist-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   TYPES SECTION
   ============================================ */
.types-section {
    padding: 80px 20px;
    background: var(--dark-gray);
    color: var(--text-light);
}

.types-section .section-header h2,
.types-section .section-subtitle {
    color: var(--text-light);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.type-card {
    background: var(--medium-gray);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.type-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(229, 9, 20, 0.3);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.type-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.type-card p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.type-highlight {
    color: var(--text-light);
    font-weight: 600;
    font-style: italic;
    background: rgba(229, 9, 20, 0.2);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
    padding: 80px 20px;
    background: white;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.location-card:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.location-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.location-card p {
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.location-info {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    border-top: 2px solid #ddd;
    padding-top: 15px;
    margin-top: 20px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 20px;
    background: var(--gradient);
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--secondary);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 20px;
    background: var(--dark-gray);
    color: var(--text-light);
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.contact-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info {
    font-style: italic;
    margin-bottom: 40px;
}

.btn-contact {
    display: inline-block;
    background: var(--gradient);
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-contact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 50px 20px;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up[data-delay="0"] { animation-delay: 0s; }
.fade-in-up[data-delay="100"] { animation-delay: 0.1s; }
.fade-in-up[data-delay="200"] { animation-delay: 0.2s; }
.fade-in-up[data-delay="300"] { animation-delay: 0.3s; }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .highlight {
        font-size: 3.5rem;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
    }

    .top-picks {
        grid-template-columns: 1fr;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .highlight {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 1.5rem;
    }

    .btn-hero {
        padding: 12px 30px;
        font-size: 1rem;
    }
}