* { margin: 0; padding: 0; box-sizing: border-box; }
body, html { 
    font-family: 'Montserrat', sans-serif; 
    background-color: #000; 
    color: #fff; 
    scroll-behavior: smooth;
}

/* Header */
header { position: absolute; top: 0; width: 100%; padding: 20px; z-index: 10; }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo { font-weight: 700; letter-spacing: 2px; color: #d4af37; }
.nav-links { list-style: none; 
    display: flex;       /* Aliniază elementele pe orizontală */
    list-style: none;    /* Scoate punctele de listă */
    gap: 20px;           /* Adaugă spațiu între butoane */
    margin: 0;
    padding: 0;
}
.nav-links li {
    display: inline-block; /* Alternativă pentru siguranță */
}
.nav-links a { text-decoration: none; color: #fff; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    /* Aliniem conținutul la început (sus) în loc de centru */
    align-items: flex-start; 
    text-align: center;
    overflow: hidden;
    /* Această valoare ridică textul. 15vh înseamnă 15% din înălțimea ecranului. 
       Dacă vrei și mai sus, scade la 10vh. Dacă vrei mai jos, crește la 20vh. */
    padding-top: 24vh; 
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('assets/images/seatpass_background.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-content { position: relative; z-index: 2; padding: 20px; }
.hero-content h1 { font-size: 2.5rem; letter-spacing: 4px; margin-bottom: 10px; }
.subtitle { font-size: 1.2rem; color: #d4af37; letter-spacing: 3px; margin-bottom: 20px; text-transform: uppercase; }
.mystic-text { max-width: 500px; margin: 0 auto 30px; font-weight: 300; line-height: 1.6; font-size: 0.9rem; }

.btn-explore {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
}
.btn-explore:hover { background: #d4af37; color: #000; }

/* Contact Section */
.contact-section { padding: 100px 20px; background: #000; text-align: center; }
.contact-container h2 { margin-bottom: 40px; letter-spacing: 2px; text-transform: uppercase; }
.contact-form { max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea {
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit;
}
.btn-send {
    padding: 15px;
    background: #d4af37;
    color: #000;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
   
    .hero {
        /* Pe mobil îl lăsăm tot la 15vh sau îl ridicăm la 12vh dacă e nevoie */
        padding-top: 20vh; 
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .mystic-text {
        font-size: 0.85rem;
        margin-bottom: 25px;
        padding: 0 15px; /* Adăugăm spațiu în margini să nu atingă marginile ecranului */
    }
   
    .hero::before { 
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('assets/images/seatpass_background_mobile.png');
        background-size: contain; 
    }
    .hero-content h1 { font-size: 1.8rem; }
    .subtitle { font-size: 1rem; }
    .hero-content > a:first-of-type:not(:last-of-type) {
        display: none !important;
    }
    
    nav {
        flex-direction: row !important; /* Forțează așezarea pe rând, nu coloană */
        justify-content: space-between;
    }

    .nav-links {
        flex-direction: row !important; /* Menține butoanele unul după altul */
        gap: 15px;
    }
}
/* Stil pentru locurile blocate temporar (Hold) de alți utilizatori */
.seat.hold {
    background-color: #ffcc00 !important; /* Galben intens */
    cursor: not-allowed;
    animation: pulse-hold 1.5s infinite;
    pointer-events: none; /* Nu permite click pe ele */
    opacity: 0.8;
}

/* Animația care face bulina să pulseze */
@keyframes pulse-hold {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 10px #ffcc00; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Stil pentru afișarea cronometrului în partea de sus */
#timer-container {
    display: none; /* Apare doar când selectezi ceva */
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #d4af37;
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid #d4af37;
    z-index: 10000;
    font-weight: 900;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

#timer-count {
    font-size: 1.3rem;
    margin-left: 8px;
    color: #fff;
}