
/* HERO */
.event-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.event-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* 👈 THIS is the key */
}
.event-hero-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px;

    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    color: #D4AF37;
}

/* SECTION */
.ticket-section {
    padding: 60px 20px;
    text-align: center;
}

.tickets-left {
    color: #D4AF37;
    margin-bottom: 30px;
}

/* GRID */
.ticket-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* BOX */
.ticket-box {
    width: 260px;
    background: #111;
    padding: 18px;
    border-radius: 10px;

    border: 1px solid rgba(212,175,55,0.2);
}

.ticket-box h3 {
margin-bottom: 6px;
    font-size: 18px;
    color: #D4AF37;
}

.ticket-box p {
font-size: 13px;
    margin-bottom: 6px;
    color: #bdbdbd;
}

.price {
    font-size: 18px;
    font-weight: bold;
    margin: 8px 0;
}
/* VIP BOX */
.ticket-box.vip {
    border: 1px solid gold;
}

/* INPUT */
.input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;

    background: #0A0A0A;
    border: 1px solid #333;
    color: #D4AF37;
}

/* BUTTONS */
.btn.vip-btn {
    background: gold;
    color: black;
}

.btn.disabled {
    background: gray;
    cursor: not-allowed;
}
.ticket-box {
    width: 300px;
    background: #111;
    padding: 25px;
    border-radius: 12px;

    border: 1px solid rgba(212,175,55,0.2); /* subtle gold */
}
.ticket-box.vip {
    border: 2px solid gold;
    box-shadow: 0 0 20px rgba(212,175,55,0.15);
}
.ticket-box:not(.vip) {
    border: 2px solid rgba(212,175,55,0.6);
    box-shadow: 0 0 10px rgba(212,175,55,0.08);
}
.ticket-box.highlight {
    border: 1px solid #00ffcc;
}

.ticket-box.vip {
    border: 1px solid gold;
}

.ticket-box.ultra {
    border: 1px solid #ff4d4d;
    background: linear-gradient(145deg, #1a1a1a, #000);
}

.ultra-btn {
    background: #ff4d4d;
}
/* TICKET BUTTON FIX */
.ticket-box .btn {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 6px;

    width: auto;           /* prevents full width */
    display: inline-block; /* keeps it compact */
    margin-top: 10px;
}
.ticket-box .btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}
/* SECURE CHECKOUT NOTE */
.secure-note {
    font-size: 11px;
    color: rgba(212,175,55,0.7); /* gold tone */
    margin-top: 6px;
    letter-spacing: 0.5px;
}
.event-hero {
    height: 65vh; /* 👈 shorter hero */
    min-height: 400px; /* keeps it clean on small screens */
    background: url("/static/images/flyer-part1.jpg") top center / cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 10%,
        rgba(0,0,0,0.85) 90%
    );
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.hero-content {
    width: 100%;              /* 👈 FULL WIDTH */
    color: white;
    padding: 40px 60px;       /* spacing left/right */
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    width: 100%;              /* 👈 stretch */
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    width: 100%;              /* 👈 stretch across */
}

.event-details {
    margin-top: 30px;
    text-align: center;
}

.event-details h3 {
    margin-bottom: 10px;
}

.event-details p {
    margin: 5px 0;
}

.event-card {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    margin: 30px auto 0;
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.event-title {
    font-size: 28px;
    margin-bottom: 5px;
}

.event-subtitle {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

.event-info {
    margin-top: 20px;
}

.info-block {
    margin-bottom: 20px;
}

.btn-primary {
    display: block;
    margin-top: 20px;
    padding: 14px;
    background: #D4AF37;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
}

.btn-primary:hover {
    background: #FFD700;
}

.event-actions {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    gap: 12px;
}

.event-actions a {
    color: #ccc;
    text-decoration: none;
}

.event-actions a:hover {
    color: #D4AF37;
}
.price {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive overrides */
.event-hero {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content h1 {
    font-size: clamp(28px, 6vw, 48px);
}

.hero-description {
    font-size: clamp(15px, 2.6vw, 18px);
}

.ticket-grid {
    padding: 0 12px;
}

.ticket-box {
    width: min(300px, 100%);
}

@media (max-width: 768px) {
    .event-hero {
        min-height: 320px;
        height: 52vh;
    }

    .hero-content {
        padding: 20px 16px;
    }

    .ticket-section {
        padding: 36px 12px;
    }

    .ticket-box {
        width: 100%;
        max-width: 360px;
    }

    .event-details {
        padding: 15px;
    }

    .event-card {
        padding: 20px;
    }

    .event-actions {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .btn-primary {
        width: 100%;
    }
}
