/* ==========================================================================
   ROCKSTAGE
   Production stylesheet
   ========================================================================== */
   
   

/* ==========================================================================
   1. RESET
   ========================================================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    background:#080808;
    color:#ffffff;
    font-family:"Poppins",Arial,Helvetica,sans-serif;
    line-height:1.6;
    overflow-x:hidden;
}

/* ==========================================================================
   2. VARIABLES
   ========================================================================== */

:root{

    --red:#b10b0f;
    --red-hover:#d51419;

    --yellow:#ffd700;

    --dark:#080808;
    --dark-2:#111111;
    --gray:#151515;

    --white:#ffffff;
    --text:#dddddd;

    --radius:12px;

    --container:1200px;

    --transition:.3s ease;

    --shadow:
        0 10px 30px rgba(0,0,0,.35);

}

/* ==========================================================================
   3. BASE
   ========================================================================== */

main{
    display:block;
}

section{
    width:100%;
    padding:80px 0;
}

.container{
    width:min(92%,var(--container));
    margin-inline:auto;
    text-align:center;
}

img,
video{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
}

ul{
    list-style-position:inside;
}

/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4{
    line-height:1.2;
}

h2{
    font-size:clamp(2rem,4vw,2.8rem);
    margin-bottom:1.8rem;
}

p{
    color:var(--text);
}

.yellow-title{
    color:var(--yellow);
}

.red{
    color:var(--red);
}

.final-text{
    font-size:22px;
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.ticket-button,
.btn{

    display:inline-block;

    background:var(--red);

    color:var(--white);

    padding:.7rem 1.4rem;

    border-radius:6px;

    font-weight:700;

    transition:var(--transition);

}

.ticket-button:hover,
.btn:hover{

    background:var(--red-hover);

    transform:translateY(-2px);

}

/* ==========================================================================
   6. HERO
   ========================================================================== */

.hero{

    min-height:90vh;

    display:flex;

    align-items:center;

    background:

    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.9)
    ),

    url("../img/audience.jpeg")
    center/cover no-repeat;

}

.hero img{

    width:100%;
    max-width:320px;

    margin:0 auto 2rem;

}

.hero p{

    max-width:760px;

    margin:1.5rem auto;

    font-size:1.3rem;

}

.countdown{

    margin:2rem 0;

    color:var(--red);

    font-size:1.8rem;

    font-weight:700;

    letter-spacing:2px;

    text-shadow:

        0 0 8px rgba(255,0,0,.6),
        0 0 20px rgba(255,0,0,.4);
		

}

.band-name{
    font-weight:700;
    letter-spacing:.5px;
}

/* ==========================================================================
   7. ABOUT
   ========================================================================== */

.rockstage-about{
    background:var(--dark);
}

.rockstage-about-inner{
    display:flex;
    justify-content:center;
}

.rockstage-about-text{

    max-width:820px;

    text-align:center;

}

.rockstage-about-text h2{

    font-size:clamp(2.2rem,4vw,3rem);

    margin-bottom:1.5rem;

}

.rockstage-about-text h2 span{

    color:var(--red);

}

.rockstage-about-text p{

    font-size:1.15rem;

    line-height:1.9;

    color:#d8d8d8;

    margin-bottom:1rem;

}

.rockstage-about-text p:first-of-type{

    font-size:1.3rem;

    font-weight:600;

    color:#ffffff;

}

.divider{

    margin:1.5rem 0;

    color:var(--red);

    letter-spacing:6px;

    font-size:.9rem;

    opacity:.8;

}

/* ==========================================================================
   8. EVENTS
   ========================================================================== */

.event-box{

    background:var(--gray);

    border-radius:18px;

    padding:2.5rem;

    box-shadow:var(--shadow);

}
/*
.event-video {
    display: block;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    background: #000;
    margin: 0 auto;
}

.event-video {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    background: #000;
    margin: 0 auto;
}*/

.event-video {
    display: block;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto;
}

.price{

    margin:1.5rem 0;

    font-size:2.8rem;

    font-weight:700;

    color:var(--yellow);

}

/* Upcoming event */

.event-container{

    max-width:1000px;

    margin:0 auto;

}

.event-photo{

    margin-bottom:1.5rem;

}

.event-photo img{

    width:100%;

    aspect-ratio:16/9;

    object-fit:cover;

    border-radius:12px;

}

.event-right{

    text-align:center;

}

.event-title{

    margin-bottom:1rem;

}

.event-description{

    max-width:720px;

    margin:0 auto;

    color:#dddddd;

    line-height:1.8;

}

.event-timing{

    margin-top:2rem;

}

/* ==========================================================================
   9. CARDS
   ========================================================================== */

.cards{

    display:grid;

    grid-template-columns:

        repeat(auto-fit,minmax(260px,1fr));

    gap:24px;

}

.card{

    background:var(--gray);

    border-radius:16px;

    padding:2rem;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-6px);

}

.card h3{

    margin-bottom:1rem;

}

/* ==========================================================================
   10. GALLERY
   ========================================================================== */

.gallery-container{

    width:min(92%,1140px);

    margin-inline:auto;

    text-align:center;

}

.filter-buttons{

    margin:2rem 0 3rem;

}

.filter-btn{

    border:none;

    background:transparent;

    color:#bbbbbb;

    padding:.8rem 1.5rem;

    border-radius:999px;

    cursor:pointer;

    transition:var(--transition);

}

.filter-btn:hover{

    background:#222;

    color:#ffffff;

}

.filter-btn.active{

    background:var(--red);

    color:#ffffff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:

        repeat(auto-fit,minmax(300px,1fr));

    gap:24px;

}

.gallery-item{

    overflow:hidden;

    border-radius:16px;

    box-shadow:var(--shadow);

}

.gallery-item img{
    width:100%;
    aspect-ratio:2/3;
    object-fit:cover;
    transition:.4s ease;
}

.gallery-item:hover img{

    transform:scale(1.05);

}

.hidden{

    display:none;

}

/* ==========================================================================
   11. TICKETS
   ========================================================================== */

#tickets{
    background:var(--dark);
}

#tickets .event-box{
    max-width:760px;
    margin:0 auto;
}

#tickets p{
    line-height:2;
}

/* ==========================================================================
   12. ROCKSTAGE CLUB
   ========================================================================== */

.club-section{
    background:var(--dark-2);
}

.club-card{

    max-width:700px;

    margin:2rem auto;

    padding:2rem;

    background:#1b1b1b;

    border-left:4px solid var(--red);

    border-radius:10px;

    text-align:left;

    box-shadow:var(--shadow);

}

.club-card ul{

    margin-top:1rem;

    line-height:2;

}

.club-card li{

    color:var(--text);

}

/* ==========================================================================
   13. EMAIL FORM
   ========================================================================== */

.email-form-section{

    background:var(--dark);

}

.email-form-wrapper{

    width:100%;

    max-width:540px;

    margin:0 auto;

}

.email-form-wrapper iframe{

    width:100%;

    min-height:760px;

    border:0;

    display:block;

}

/* ==========================================================================
   14. VENUE
   ========================================================================== */

.venue-info{

    text-align:center;

    font-size:22px;

}

.venue-logo{

    width:100%;

    max-width:320px;

    margin:0 auto;

}

.venue-info p{

    color:var(--text);

    margin-top:.5rem;

}

/* ==========================================================================
   15. MAP
   ========================================================================== */

.map-section{

    background:var(--dark-2);

}

.map-wrapper{

    max-width:900px;

    margin:0 auto;

    border-radius:12px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.map-frame{

    width:100%;

    height:420px;

    border:0;

}

/* ==========================================================================
   16. FINAL CTA
   ========================================================================== */

.final{

    background:

    linear-gradient(
        rgba(0,0,0,.7),
        rgba(0,0,0,.92)
    ),

    url("../img/audience.jpeg")
    center/cover no-repeat;

    text-align:center;

}

.final-content{

    display:flex;

    flex-direction:column;

    align-items:center;

}

.final .venue-logo{
    max-width:320px;
    margin-bottom:2rem;
}

/* ==========================================================================
   17. FOOTER
   ========================================================================== */

.rockstage-footer{

    background:#000;

    padding:60px 20px 30px;

    border-top:2px solid var(--red);

}

.footer-container{

    max-width:1200px;

    margin:0 auto;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:40px;

    align-items:flex-start;

}

.footer-grid h4{

    color:#ffffff;

    font-size:20px;

    margin-bottom:18px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.footer-grid p{

    color:#cccccc;

    line-height:1.7;

    margin-bottom:14px;

    font-size:15px;

}

.footer-grid a{

    color:#ffffff;

    text-decoration:none;

    transition:var(--transition);

}

.footer-grid a:hover{

    color:var(--red);

}

.footer-about,
.footer-contact,
.footer-venue,
.footer-social{

    min-width:220px;

}

.footer-motto{

    margin-top:20px;

    padding-top:18px;

    border-top:1px solid #222;

    color:#ffffff;

    font-weight:600;

    letter-spacing:.6px;

    font-size:15px;

}

.footer-social h4{

    margin-bottom:18px;

}

.social-link{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:14px;

    color:#cccccc;

    transition:var(--transition);

}

.social-link img{

    width:20px;

    height:20px;

}

.social-link:hover{

    color:var(--red);

}

.footer-bottom{

    margin-top:40px;

    padding-top:20px;

    border-top:1px solid #222;

    text-align:center;

    color:#888;

    font-size:.9rem;

}

/* ==========================
   Mobile
========================== */

@media (max-width:768px){

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

        gap:35px;

    }

    .social-link{

        justify-content:center;

    }

}

/* ==========================================================================
   18. RESPONSIVE
   ========================================================================== */

@media (max-width:768px){

    section{

        padding:60px 0;

    }

    .hero{

        min-height:auto;

        padding:80px 0;

    }

    .hero img{

        max-width:250px;

    }

    .hero p{

        font-size:1rem;

    }

    h2{

        font-size:2rem;

    }

    .countdown{

        font-size:1.3rem;

    }

    .event-box{

        padding:1.5rem;

    }

    .price{

        font-size:2rem;

    }

    .cards{

        grid-template-columns:1fr;

    }

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .email-form-wrapper iframe{

        min-height:900px;

    }

    .map-frame{

        height:340px;

    }

    .venue-logo{

        max-width:260px;

    }

}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus{
    outline:2px solid var(--yellow);
    outline-offset:3px;
}

/* ==========================
   PARTNERS
========================== */

.partners{

    padding:50px 0;

    background:#111;

    overflow:hidden;

}

.partners h2{

    text-align:center;

    color:#fff;

    margin-bottom:35px;

    font-size:2rem;

    letter-spacing:2px;

    text-transform:uppercase;

}

.partners-slider{

    width:100%;

    overflow:hidden;

}

.partners-track{

    display:flex;

    align-items:center;

    gap:70px;

    width:max-content;

    animation:scroll 35s linear infinite;

}

.partners-track:hover{

    animation-play-state:paused;

}

.partners-track img{

    height:70px;

    width:auto;

    opacity:.75;

    transition:.3s;

    filter:grayscale(100%);

}

.partners-track img:hover{

    opacity:1;

    filter:none;

    transform:scale(1.08);

}

@keyframes scroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

.final .venue-logo{
    width:240px !important;
    max-width:240px !important;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */

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


/* --------------------------------------------------------------------------
   COVER — ALWAYS 16:9
   -------------------------------------------------------------------------- */

.gallery-cover {
    grid-column: 1 / -1;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
}

.gallery-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}


/* --------------------------------------------------------------------------
   OTHER GALLERY IMAGES
   16:9 OR 9:16 — NO FORCED CROPPING
   -------------------------------------------------------------------------- */

.gallery-item {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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


/* --------------------------------------------------------------------------
   MOBILE
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {

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

    .gallery-cover {
        grid-column: auto;
    }

}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 9999;
}

#lightbox.active {
    opacity: 1;
    visibility: visible;
}


/* --------------------------------------------------------------------------
   CONTENT
   -------------------------------------------------------------------------- */

.lightbox-content {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 60px 90px;
    box-sizing: border-box;
}


/* --------------------------------------------------------------------------
   IMAGE
   -------------------------------------------------------------------------- */

#lightboxImage {
    display: block;

    max-width: 90vw;
    max-height: 85vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 12px;

    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.6);
}


/* --------------------------------------------------------------------------
   CLOSE BUTTON
   -------------------------------------------------------------------------- */

.lightbox-close {
    position: absolute;

    top: 20px;
    right: 30px;

    background: none;
    border: none;

    color: #fff;

    font-size: 42px;
    line-height: 1;

    cursor: pointer;

    z-index: 10001;

    transition: color 0.2s ease;
}


/* --------------------------------------------------------------------------
   PREVIOUS / NEXT
   -------------------------------------------------------------------------- */

.lightbox-prev,
.lightbox-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    background: none;
    border: none;

    color: #fff;

    font-size: 55px;

    cursor: pointer;

    padding: 20px;

    z-index: 10001;

    transition: color 0.2s ease;
}

.lightbox-prev {
    left: 15px;
}

.lightbox-next {
    right: 15px;
}


/* --------------------------------------------------------------------------
   HOVER
   -------------------------------------------------------------------------- */

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
    color: #d71920;
}


/* --------------------------------------------------------------------------
   INFO
   -------------------------------------------------------------------------- */

.lightbox-info {
    position: absolute;

    bottom: 20px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 12px;

    color: #fff;

    font-size: 14px;

    text-align: center;

    white-space: nowrap;
}


/* --------------------------------------------------------------------------
   MOBILE LIGHTBOX
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {

    .lightbox-content {
        padding: 50px 20px;
    }

    #lightboxImage {
        max-width: 92vw;
        max-height: 82vh;
        border-radius: 8px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 38px;
        padding: 12px;
    }

    .lightbox-prev {
        left: 0;
    }

    .lightbox-next {
        right: 0;
    }

    .lightbox-close {
        top: 15px;
        right: 18px;
        font-size: 36px;
    }

    .lightbox-info {
        bottom: 12px;
        font-size: 12px;
    }

}

/* ==========================================================================
   11. CONCERT ARCHIVE
   ========================================================================== */

.concert-archive{
    padding:80px 0;
    background:#000;
}

.archive-container{
    width:min(92%,1200px);
    margin-inline:auto;
    text-align:center;
}

.archive-intro{
    max-width:900px;
    margin:25px auto 60px;
    color:#dddddd;
    line-height:1.7;
    font-size:1.15rem;
}

/* ===============================
   EVENT CARD
================================ */

.event-card{

    max-width:1000px;

    margin:60px auto;

    background:#111111;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

    transition:all .35s ease;

}

.event-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.55);

}

/* ===============================
   EVENT IMAGE
================================ */

.event-card img{

    width:100%;

    display:block;

    border-radius:18px 18px 0 0;

    transition:transform .5s ease;

}

.event-card:hover img{

    transform:scale(1.03);

}

/* ===============================
   EVENT CONTENT
================================ */

.event-content{

    padding:30px;

}

.event-content h3{

    margin-bottom:10px;

    font-size:2rem;

    color:#ffffff;

}

.event-date{

    color:#aaaaaa;

    font-size:1rem;

    margin-bottom:25px;

    letter-spacing:1px;

}

.event-content p{

    color:#dddddd;

    line-height:1.7;

    margin-bottom:25px;

}

/* ===============================
   PHOTO COUNT
================================ */

.photo-count{

    display:inline-block;

    margin-bottom:25px;

    color:#ffffff;

    background:#1b1b1b;

    padding:8px 18px;

    border-radius:30px;

    font-size:.95rem;

}

/* ===============================
   VIEW GALLERY BUTTON
================================ */

.gallery-btn{

    display:inline-block;

    padding:14px 34px;

    border:none;

    border-radius:40px;

    background:#c60000;

    color:#ffffff;

    font-weight:600;

    font-size:1rem;

    cursor:pointer;

    transition:.3s;

}

.gallery-btn:hover{

    background:#ff2020;

    transform:translateY(-2px);

}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width:768px){

    .event-card{

        margin:40px auto;

    }

    .event-content{

        padding:25px;

    }

    .event-content h3{

        font-size:1.6rem;

    }

    .archive-intro{

        font-size:1rem;

    }

    .gallery-btn{

        width:100%;

    }

}

/* ==========================================================================
   HIDDEN GALLERY IMAGES
   ========================================================================== */

.gallery-hidden {
    display: none;
}


/* ==========================================================================
   VIEW FULL GALLERY BUTTON
   ========================================================================== */

.gallery-more {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.gallery-more-button {
    padding: 12px 28px;

    background: transparent;
    border: 1px solid #d71920;
    border-radius: 6px;

    color: #fff;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.gallery-more-button:hover {
    background: #d71920;
    color: #fff;
}