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

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0000;
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== ENTRY OVERLAY ===== */
.entry-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: #0a0000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.entry-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.entry-logo {
    max-width: 280px;
    margin-bottom: 30px;
}

.entry-title {
    font-size: clamp(2rem, 8vw, 4.5rem);
    color: #ff0000;
    text-shadow: 0 0 30px #ff0000, 0 0 60px rgba(255, 0, 0, 0.4);
    letter-spacing: 8px;
    margin-bottom: 20px;
    font-weight: bold;
}

.entry-date {
    color: #ff0000;
    font-size: clamp(14px, 3vw, 20px);
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.entry-button {
    background: transparent;
    border: 2px solid #ff0000;
    color: #ff0000;
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(16px, 4vw, 24px);
    letter-spacing: 6px;
    padding: 15px 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    animation: entryPulse 2s ease-in-out infinite;
}

.entry-button:hover {
    background: #ff0000;
    color: #0a0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

@keyframes entryPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 0, 0, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 0, 0, 0.6); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(10, 0, 0, 0.95);
    border-bottom: 2px solid #ff0000;
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #ff0000;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero-bg-placeholder.png') no-repeat center center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 0, 0, 0.75);
}

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

.main-logo {
    max-width: 500px;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
    /* Placeholder styling when image is missing */
    min-height: 150px;
    background: rgba(255, 0, 0, 0.1);
    border: 2px dashed #ff0000;
    display: inline-block;
}

/* Remove placeholder styling when image loads */
.main-logo[src*=".png"]:not([src=""]) {
    border: 2px solid #ff0000;
    background: none;
}

.event-date {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #ff0000;
    text-shadow: 0 0 20px #ff0000;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.event-tagline {
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    color: #e0e0e0;
    letter-spacing: 8px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    background: #ff0000;
    color: #000;
    font-weight: bold;
    font-family: inherit;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1rem;
    letter-spacing: 3px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px #ff0000, 0 0 40px rgba(255, 0, 0, 0.3);
    transition: all 0.3s;
}

.cta-button:hover {
    box-shadow: 0 0 40px #ff0000, 0 0 80px rgba(255, 0, 0, 0.5);
    transform: scale(1.05);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 20px;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #ff0000;
    text-shadow: 0 0 15px #ff0000;
    letter-spacing: 5px;
    margin-bottom: 50px;
}

/* ===== INFO SECTION ===== */
.info-section {
    background: #0a0000;
}

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

.info-card {
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 30px 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ff0000;
}

.info-card h3 {
    color: #ff0000;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.info-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

/* ===== LINE-UP SECTION ===== */
.lineup-section {
    background: #0d0000;
}

/* Timetable */
.timetable {
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: left;
}

.timetable-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.15);
    transition: background 0.3s;
}

.timetable-row:hover {
    background: rgba(255, 0, 0, 0.05);
}

.timetable-row.now-playing {
    border: 1px solid rgba(255, 0, 0, 0.6);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.25);
    background: rgba(255, 0, 0, 0.08);
    animation: nowPlayingPulse 2s ease-in-out infinite;
}

@keyframes nowPlayingPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 0, 0, 0.2); }
    50% { box-shadow: 0 0 30px rgba(255, 0, 0, 0.4); }
}

.timetable-row.past {
    opacity: 0.35;
}

.timetable-time {
    font-size: 0.85rem;
    opacity: 0.6;
    letter-spacing: 1px;
    min-width: 130px;
}

.timetable-name {
    color: #ff0000;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 0.95rem;
    text-align: right;
}

.timetable-dj-link {
    color: inherit;
    text-decoration: none;
}

.timetable-row.now-playing .timetable-name {
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    font-size: 1.05rem;
}

.timetable-row.now-playing .timetable-time {
    opacity: 1;
}

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.dj-card {
    padding: 20px;
    transition: transform 0.3s;
    cursor: pointer;
    position: relative;
}

.dj-card::after {
    content: attr(data-info);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.9);
    color: #ff4444;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: normal;
    width: 200px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    border: 1px solid #ff0000;
    z-index: 10;
}


@media (hover: hover) {
    .dj-card:hover::after {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    .dj-card:hover {
        transform: translateY(-10px);
    }
}

.dj-image-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.dj-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    background: rgba(255, 0, 0, 0.1);
}


.dj-name {
    color: #ff0000;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.dj-genre {
    font-size: 0.85rem;
    opacity: 0.6;
    letter-spacing: 2px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: #0a0000;
}

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

.gallery-item {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 0, 0.2);
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    /* Placeholder styling */
    background: rgba(255, 0, 0, 0.05);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== TICKETS SECTION ===== */
.tickets-section {
    background: #0d0000;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.ticket-card {
    position: relative;
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 40px 25px 30px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.ticket-card.featured {
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    transform: scale(1.05);
}

.ticket-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff0000;
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 4px 15px;
    letter-spacing: 2px;
}

.ticket-card h3 {
    color: #ff0000;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.ticket-price {
    font-size: 2.5rem;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    margin-bottom: 20px;
    font-weight: bold;
}

.ticket-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.ticket-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
    font-size: 0.85rem;
    opacity: 0.8;
}

.ticket-features li::before {
    content: "// ";
    color: #ff0000;
}

.ticket-btn {
    width: 100%;
}

.ticket-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.ticket-note {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    position: relative;
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #ff0000;
    font-size: 2rem;
    cursor: pointer;
    transition: text-shadow 0.3s;
}

.modal-close:hover {
    text-shadow: 0 0 10px #ff0000;
}

.modal-ticket-type {
    color: #ff0000;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

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

/* Volume captcha */
.volume-captcha {
    margin: 15px 0;
}

.volume-captcha label {
    display: block;
    color: #ff4444;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 5px;
    text-align: center;
}

.volume-status {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    min-height: 1.2em;
    color: #00ff00;
    font-weight: bold;
}

.volume-slider-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-icon {
    font-size: 1.3rem;
    min-width: 24px;
    text-align: center;
}

.volume-slider-wrap input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: linear-gradient(to right, #330000, #ff0000);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.volume-slider-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff4444, #cc0000);
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.8), 0 0 4px rgba(255, 0, 0, 0.4);
    border: 2px solid #ff6666;
    cursor: pointer;
}

.volume-slider-wrap input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff4444, #cc0000);
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.8), 0 0 4px rgba(255, 0, 0, 0.4);
    border: 2px solid #ff6666;
    cursor: pointer;
}

.volume-slider-wrap input[type="range"]::-moz-range-track {
    height: 8px;
    background: linear-gradient(to right, #330000, #ff0000);
    border-radius: 4px;
    border: none;
}

.form-total {
    color: #ff0000;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 10px 0;
    min-height: 1.5em;
}

.ticket-field-group {
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.ticket-field-group label {
    display: block;
    color: #ff0000;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.ticket-field-group input {
    width: 100%;
    margin-bottom: 5px;
}

.aantal-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.aantal-control button {
    width: 36px;
    height: 36px;
    border: 2px solid #ff0000;
    background: transparent;
    color: #ff0000;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    line-height: 1;
}

.aantal-control button:hover {
    background: rgba(255, 0, 0, 0.2);
}

.aantal-control span {
    color: #fff;
    font-size: 1.1rem;
    min-width: 30px;
    text-align: center;
}

.form-success {
    display: none;
    color: #00ff00;
    padding: 20px;
}

.form-success.active {
    display: block;
}

/* ===== SHARED FORM STYLES ===== */
.neon-frame {
    border: 3px solid #ff0000;
    box-shadow: 0 0 15px #ff0000, inset 0 0 15px rgba(255, 0, 0, 0.1);
    padding: 30px 25px;
    margin: 20px auto;
    max-width: 500px;
    background: rgba(10, 0, 0, 0.95);
}

.neon-frame h2 {
    color: #ff0000;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

input, textarea {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 0, 0, 0.4);
    color: #e0e0e0;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    font-family: inherit;
    font-size: 0.85rem;
    letter-spacing: 1px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, textarea:focus {
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

textarea {
    resize: vertical;
}

.neon-button {
    background: #ff0000;
    color: #000;
    font-weight: bold;
    font-family: inherit;
    border: none;
    padding: 15px 30px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transition: all 0.3s;
    margin-top: 10px;
}

.neon-button:hover {
    box-shadow: 0 0 40px #ff0000;
    transform: scale(1.03);
}

/* ===== COUNTDOWN ===== */
.countdown-section {
    background: #0a0000;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: clamp(2rem, 6vw, 4rem);
    color: #ff0000;
    text-shadow: 0 0 20px #ff0000;
    font-weight: bold;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    opacity: 0.6;
    margin-top: 8px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: #0d0000;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    color: #ff0000;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.contact-info p {
    opacity: 0.8;
    margin-bottom: 8px;
}

.contact-detail {
    color: #ff0000;
    font-size: 1.1rem;
}

.contact-detail a {
    color: #ff0000;
    text-decoration: none;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #ff0000;
    color: #ff0000;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s;
}

.social-link:hover {
    background: #ff0000;
    color: #000;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #050000;
    padding: 40px 20px;
    border-top: 2px solid #ff0000;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    opacity: 0.7;
    /* Placeholder */
    min-height: 40px;
    background: rgba(255, 0, 0, 0.05);
}

.site-footer p {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-bottom: 5px;
}

.footer-tagline {
    letter-spacing: 5px;
    color: #ff0000;
    opacity: 0.4 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 0, 0, 0.98);
        border-bottom: 2px solid #ff0000;
        padding: 20px;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .dj-image-wrapper {
        width: 140px;
        height: 140px;
    }

    .ticket-card.featured {
        transform: none;
    }

    .tickets-grid {
        gap: 20px;
    }

    .countdown {
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 20px;
    }

    .section {
        padding: 60px 15px;
    }

    .neon-frame {
        padding: 25px 15px;
        margin: 10px;
    }

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

    .lineup-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .dj-image-wrapper {
        width: 110px;
        height: 110px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

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

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