/* BkB DJ Website - Complete Stylesheet */
/* Commercial DJ/Producer - Tribal House, Electro Pop, Bedroom Pop */

/* ============================================
   COLOR PALETTE & DESIGN PHILOSOPHY
   ============================================
   
   BkB Brand Identity:
   - Warm, approachable, commercial appeal
   - Tribal House: Earthy warmth + rhythmic energy
   - Electro Pop: Vibrant, playful, accessible
   - Bedroom Pop: Soft, dreamy, intimate
   
   Primary Colors:
   - Coral/Peach (#FF6B6B → #FF8E72): Warm, energetic, inviting
   - Deep Purple (#2D1B4E): Sophisticated backdrop, nightlife feel
   - Gold/Amber (#FFB347): Premium, warm accent
   
   Typography:
   - Display: "Bebas Neue" - Bold, modern, impactful
   - Body: "DM Sans" - Clean, friendly, readable
   
   ============================================ */

/* CSS Custom Properties (CSS Variables) */
:root {
    /* Primary Brand Colors */
    --primary-color: #FF6B6B;           /* Coral - warm, energetic */
    --primary-light: #FF8E72;           /* Lighter coral */
    --primary-dark: #E55A5A;            /* Deeper coral */
    
    /* Secondary Colors */
    --secondary-color: #FFB347;         /* Golden amber - premium feel */
    --secondary-light: #FFCC70;         /* Light gold */
    
    /* Accent */
    --accent-color: #FF6B6B;            /* Matching primary for cohesion */
    --accent-glow: rgba(255, 107, 107, 0.4);
    
    /* Background Colors */
    --dark-bg: #1A1225;                 /* Deep purple-black */
    --light-bg: #2D1B4E;                /* Rich purple */
    --card-bg: #3D2A5E;                 /* Lighter purple for cards */
    
    /* Text Colors */
    --text-color: #FFFFFF;
    --text-muted: #C4B8D9;              /* Soft lavender-gray */
    --text-warm: #FFD4C4;               /* Warm peachy text */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B6B 0%, #FFB347 100%);
    --gradient-hero: linear-gradient(135deg, #1A1225 0%, #2D1B4E 50%, #3D2A5E 100%);
    --gradient-glow: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 179, 71, 0.1) 100%);
    
    /* Shadows */
    --shadow-glow: 0 0 40px rgba(255, 107, 107, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 50px rgba(255, 107, 107, 0.25);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 18, 37, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 107, 107, 0.1);
}

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

.logo a {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.3s ease;
}

.logo a:hover {
    filter: brightness(1.2);
    text-shadow: 0 0 30px var(--accent-glow);
}

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

/* Desktop nav-menu - ensure it's visible */
.nav-menu {
    display: block;
}

.nav-list a {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

/* Animated background elements */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 179, 71, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(61, 42, 94, 0.5) 0%, transparent 60%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 2%) rotate(1deg); }
    66% { transform: translate(-1%, 1%) rotate(-1deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 7rem;
    font-weight: 400;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 8px;
    text-shadow: 0 0 60px rgba(255, 107, 107, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(255, 179, 71, 0.4)); }
}

.hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-warm);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.hero-social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-glow);
    border-color: transparent;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 100px 20px;
}

section h2 {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-description {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--light-bg);
    padding: 100px 0 !important;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

.about p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.9;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.about-with-image {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 60px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    text-align: left !important;
}

.about-image {
    flex: 0 0 45% !important;
    max-width: 450px !important;
    text-align: center !important;
}

.about-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 24px !important;
    box-shadow: var(--shadow-card), var(--shadow-glow) !important;
    border: 2px solid rgba(255, 107, 107, 0.2);
    transition: all 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.about-text {
    flex: 1 !important;
    text-align: left !important;
}

/* ============================================
   MUSIC SECTION
   ============================================ */
.music {
    background: var(--dark-bg);
    position: relative;
}

.music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    pointer-events: none;
}

/* Tracks Grid */
.tracks-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    position: relative;
    z-index: 1;
}

.track-card {
    background: var(--card-bg);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 107, 107, 0.15);
    padding: 0 !important;
    overflow: hidden !important;
    flex: 0 1 calc(33.333% - 20px) !important;
    max-width: 350px !important;
    min-width: 280px !important;
}

.track-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 107, 0.4);
}

.track-cover {
    width: 100% !important;
    height: 0 !important;
    padding-bottom: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.track-cover img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.5s ease !important;
}

/* Fallback icon when no image */
.track-cover::before {
    content: '\f001';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.track-card:hover .track-cover img {
    transform: scale(1.08) !important;
}

.track-card h3 {
    padding: 20px 20px 10px !important;
    margin: 0 !important;
    color: var(--text-color);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.track-links {
    padding: 0 20px 20px !important;
    display: flex;
    gap: 1rem;
}

.track-links a {
    color: var(--text-muted);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.track-links a:hover {
    color: var(--primary-color);
    transform: scale(1.15);
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events {
    background: var(--light-bg);
}

.event-card {
    background: var(--dark-bg);
    padding: 1.8rem;
    margin-bottom: 1.2rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.event-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--secondary-color);
}

.event-card h3 {
    color: var(--text-color);
    margin-bottom: 0.6rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.event-card p {
    color: var(--text-muted);
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking {
    background: var(--gradient-primary);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.08" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.booking .container {
    position: relative;
    z-index: 1;
}

.booking h2 {
    text-align: center;
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    background: none;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.booking h2::after {
    background: rgba(255, 255, 255, 0.8);
}

.booking .section-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 26px;
    color: white;
}

.info-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list li i {
    color: white;
    font-size: 14px;
}

/* Booking Form Card */
.booking-form-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header i {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
    display: block;
}

.form-header h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.booking-form-card form {
    padding: 35px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group label i {
    margin-right: 8px;
    opacity: 0.8;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: var(--dark-bg);
    color: white;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-booking-submit {
    width: 100%;
    padding: 18px 35px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'DM Sans', sans-serif;
}

.btn-booking-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--text-warm);
}

.btn-booking-submit i {
    font-size: 18px;
}

.form-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 20px;
}

.form-note i {
    margin-right: 6px;
}

.form-response {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    display: none;
    font-weight: 600;
    text-align: center;
}

.form-response.show {
    display: block;
}

.form-response.success {
    background: rgba(16, 185, 129, 0.2);
    color: #6EE7B7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-response.error {
    background: rgba(239, 68, 68, 0.2);
    color: #FCA5A5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--dark-bg);
    padding: 100px 20px;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 107, 0.15);
    box-shadow: var(--shadow-card);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-form label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(26, 18, 37, 0.8);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.contact-form .btn-submit {
    width: 100%;
    padding: 18px 35px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'DM Sans', sans-serif;
}

.contact-form .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.contact-form .btn-submit i {
    font-size: 18px;
}

.contact-form .form-response {
    margin-top: 25px;
    padding: 18px 25px;
    border-radius: 12px;
    display: none;
    font-weight: 600;
    text-align: center;
}

.contact-form .form-response.show {
    display: block;
}

.contact-form .form-response.success {
    background: rgba(16, 185, 129, 0.15);
    color: #6EE7B7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.contact-form .form-response.error {
    background: rgba(239, 68, 68, 0.15);
    color: #FCA5A5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: var(--light-bg);
}

.gallery-carousel {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 30px 25px;
    background: linear-gradient(to top, rgba(26, 18, 37, 0.95), transparent);
}

.carousel-caption h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.carousel-caption p {
    color: var(--text-muted);
    font-size: 1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 107, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog {
    background: var(--dark-bg);
}

.blog-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.blog-card {
    flex: 0 1 calc(33.333% - 20px) !important;
    max-width: 350px !important;
    min-width: 280px !important;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 107, 0.15);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 107, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0F0A17;
    padding: 4rem 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 107, 0.15);
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer a:hover {
    color: var(--secondary-color);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .info-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 18, 37, 0.98);
        padding: 2rem;
        transition: left 0.3s;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 20px 60px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    section {
        padding: 70px 20px;
    }
    
    section h2 {
        font-size: 2.2rem;
    }
    
    .tracks-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .track-card,
    .blog-card {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
    
    .about-with-image {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .about-image {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
    
    .about-text {
        text-align: center !important;
    }
    
    .booking {
        padding: 70px 20px;
    }
    
    .booking h2 {
        font-size: 2.5rem;
    }
    
    .booking .section-description {
        font-size: 1rem;
    }
    
    .booking-info {
        grid-template-columns: 1fr;
    }
    
    .info-card:last-child {
        grid-column: 1;
    }
    
    .booking-form-card form {
        padding: 25px;
    }
    
    .form-header {
        padding: 25px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .gallery-carousel {
        height: 400px;
    }
    
    .carousel-caption {
        padding: 40px 20px 20px;
    }
    
    .carousel-caption h3 {
        font-size: 1.4rem;
    }
    
    .carousel-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .carousel-prev { left: 10px; }
    .carousel-next { right: 10px; }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .logo a {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    section h2 {
        font-size: 1.9rem;
    }
    
    .booking {
        padding: 50px 15px;
    }
    
    .booking h2 {
        font-size: 2rem;
    }
    
    .booking-form-card form {
        padding: 20px;
    }
    
    .form-header {
        padding: 20px;
    }
    
    .form-header i {
        font-size: 36px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 22px;
    }
    
    .gallery-carousel {
        height: 300px;
        border-radius: 12px;
    }
    
    .carousel-caption h3 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.85rem;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-booking-submit.loading i {
    animation: spin 1s linear infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0.5;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.carousel-slide img {
    animation: fadeIn 0.5s ease-in-out;
}

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

.form-response.show {
    animation: slideUp 0.3s ease;
}