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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat', sans-serif;
    background:#020617;
    color:white;
    overflow-x:hidden;
}

/* CONTAINER */

.container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

/* HERO */

.hero{
    position:relative;
    min-height:100vh;

    background:
    linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.9)
    ),
    url('../images/flyer.jpg');

    background-size:cover;
    background-position:center;

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

    text-align:center;

    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top,
        rgba(37,99,235,0.35),
        transparent 60%
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:1000px;
    padding:40px 20px;
}

.event-tag{
    font-size:16px;
    letter-spacing:6px;
    color:#3b82f6;
    font-weight:700;
    margin-bottom:25px;
}

.hero-title{
    font-size:120px;
    font-weight:900;
    line-height:0.9;
    text-transform:uppercase;
}

.hero-title span{
    display:block;
    color:#3b82f6;
}

.artist-name{
    font-size:80px;
    font-weight:900;
    margin-top:25px;
    margin-bottom:40px;
}

.hero-info{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.hero-badge{
    background:#2563eb;
    padding:18px 35px;
    border-radius:50px;
    font-weight:700;
    font-size:18px;

    box-shadow:
    0 0 20px rgba(37,99,235,0.5);
}

.hero-btn{
    display:inline-block;

    background:white;
    color:black;

    padding:18px 45px;

    border-radius:60px;

    text-decoration:none;

    font-weight:800;

    transition:0.3s;
}

.hero-btn:hover{
    transform:translateY(-5px);
}

/* EVENT SECTION */

.event-section{
    padding:100px 0;
    background:#020617;
}

.event-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.event-card{
    background:#0f172a;

    padding:40px 30px;

    border-radius:25px;

    border:1px solid rgba(59,130,246,0.2);

    transition:0.3s;
}

.event-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 0 25px rgba(59,130,246,0.25);
}

.event-card h3{
    color:#3b82f6;
    font-size:22px;
    margin-bottom:20px;
}

.event-card p{
    color:#cbd5e1;
    line-height:1.8;
}

/* PACKAGES */

.packages-section{
    padding:100px 0;
    background:#020617;
}

.section-title{
    text-align:center;
    font-size:55px;
    font-weight:900;
    margin-bottom:70px;
}

.packages-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.package-card{
    position:relative;

    background:#0f172a;

    border-radius:30px;

    padding:40px 30px;

    border:1px solid rgba(59,130,246,0.15);

    transition:0.4s;
}

.package-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 0 35px rgba(37,99,235,0.35);
}

.featured-package{
    border:2px solid #3b82f6;
}

.popular-tag{
    position:absolute;
    top:20px;
    right:20px;

    background:#3b82f6;

    padding:8px 18px;

    border-radius:30px;

    font-size:12px;
    font-weight:700;
}

.package-top h3{
    font-size:30px;
    font-weight:800;
    margin-bottom:20px;
}

.package-price{
    font-size:55px;
    color:#3b82f6;
    font-weight:900;
    margin-bottom:30px;
}

.package-features{
    list-style:none;
    margin-bottom:35px;
}

.package-features li{
    margin-bottom:15px;
    color:#cbd5e1;
}

.package-btn{
    width:100%;

    background:#2563eb;

    color:white;

    border:none;

    padding:18px;

    border-radius:16px;

    font-size:16px;
    font-weight:700;

    cursor:pointer;

    transition:0.3s;
}

.package-btn:hover{
    background:#1d4ed8;
}

/* CHECKOUT */

.checkout-section{
    padding:100px 0;
}

.checkout-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;

    background:#0f172a;

    border-radius:35px;

    overflow:hidden;

    border:1px solid rgba(59,130,246,0.2);
}

.checkout-left{
    padding:60px;
    background:
    linear-gradient(
        rgba(37,99,235,0.15),
        rgba(15,23,42,1)
    );
}

.checkout-left h2{
    font-size:55px;
    font-weight:900;
    margin-bottom:20px;
}

.checkout-left p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:40px;
}

.selected-package-box{
    background:#020617;

    padding:30px;

    border-radius:25px;

    border:1px solid rgba(59,130,246,0.2);
}

.selected-package-box h3{
    color:#3b82f6;
    margin-bottom:15px;
}

#selectedPackageText{
    font-size:30px;
    font-weight:800;
}

.checkout-right{
    padding:60px;
}

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

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

.form-group input,
.form-group select{

    width:100%;

    padding:18px;

    border:none;

    outline:none;

    border-radius:15px;

    background:#020617;

    color:white;

    font-size:16px;
}

.pay-btn{
    width:100%;

    background:#2563eb;

    border:none;

    color:white;

    padding:20px;

    border-radius:18px;

    font-size:18px;
    font-weight:800;

    cursor:pointer;

    transition:0.3s;
}

.pay-btn:hover{
    background:#1d4ed8;
}

/* FOOTER */

.footer{
    padding:80px 0 40px;
    background:black;
}

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

.footer-content h3{
    font-size:35px;
    margin-bottom:20px;
}

.footer-content p{
    color:#94a3b8;
    margin-bottom:30px;
}

.footer-socials{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-bottom:30px;
}

.footer-socials a{
    color:white;
    text-decoration:none;
}

.footer-copy{
    color:#64748b;
}

/* MOBILE */

@media(max-width:1100px){

.packages-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:900px){

.hero-title{
    font-size:80px;
}

.artist-name{
    font-size:55px;
}

.checkout-wrapper{
    grid-template-columns:1fr;
}

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

}

@media(max-width:768px){

.hero{
    padding-top:100px;
    padding-bottom:100px;
}

.hero-title{
    font-size:60px;
}

.artist-name{
    font-size:40px;
}

.hero-badge{
    width:100%;
}

.section-title{
    font-size:38px;
}

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

.checkout-left,
.checkout-right{
    padding:35px 25px;
}

.checkout-left h2{
    font-size:38px;
}

#selectedPackageText{
    font-size:24px;
}

.footer-socials{
    flex-direction:column;
    gap:15px;
}

}