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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#050816;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
}

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

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

    background:
    linear-gradient(
        rgba(5,8,22,0.82),
        rgba(5,8,22,0.92)
    ),
    url('../images/flyerrr.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(212,175,55,0.12),
        transparent 60%
    );
}

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

.event-tag{
    display:inline-block;

    background:rgba(212,175,55,0.12);

    color:#d4af37;

    padding:12px 24px;

    border-radius:50px;

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

    margin-bottom:30px;

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

.hero-title{
    font-size:90px;
    font-weight:800;
    line-height:1.05;
    margin-bottom:25px;
    color:#ffffff;
}

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

.artist-name{
    font-size:28px;
    font-weight:500;
    color:#cbd5e1;
    margin-bottom:40px;
}

.hero-info{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;

    margin-bottom:45px;
}

.hero-badge{
    background:#111827;

    color:#ffffff;

    padding:15px 28px;

    border-radius:50px;

    font-size:15px;
    font-weight:600;

    border:1px solid rgba(255,255,255,0.08);
}

.hero-btn{
    display:inline-block;

    background:#d4af37;
    color:#000000;

    padding:18px 45px;

    border-radius:60px;

    text-decoration:none;

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

    transition:0.3s ease;
}

.hero-btn:hover{
    transform:translateY(-4px);
    background:#facc15;
}

.event-section,
.packages-section,
.checkout-section{
    padding:25px 0;
}

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

.event-card{
    background:#0f172a;

    padding:40px 35px;

    border-radius:24px;

    border:1px solid rgba(255,255,255,0.06);

    transition:0.3s ease;
}

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

    border-color:rgba(212,175,55,0.25);

    box-shadow:
    0 10px 35px rgba(0,0,0,0.35);
}

.event-card h3{
    color:#d4af37;

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

    margin-bottom:18px;
}

.event-card p{
    color:#cbd5e1;
    font-size:16px;
}

.section-title{
    text-align:center;

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

    margin-bottom:70px;

    color:#ffffff;
}

.packages-grid{
    display:flex;
    justify-content:center;
}

.package-card{
    position:relative;

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

    background:#0f172a;

    padding:50px 40px;

    border-radius:30px;

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

    text-align:center;

    transition:0.3s ease;
}

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

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

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

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

    background:#d4af37;
    color:#000000;

    padding:8px 18px;

    border-radius:30px;

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

.package-top h3{
    font-size:30px;
    font-weight:700;

    margin-bottom:20px;
}

.package-price{
    font-size:65px;
    font-weight:800;

    color:#d4af37;

    margin-bottom:30px;
}

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

.package-features li{
    color:#cbd5e1;
    margin-bottom:16px;
    font-size:16px;
}

.package-btn{
    width:100%;

    background:#d4af37;
    color:#000000;

    border:none;

    padding:18px;

    border-radius:18px;

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

    cursor:pointer;

    transition:0.3s ease;
}

.package-btn:hover{
    background:#facc15;
}

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

    gap:0;

    background:#0f172a;

    border-radius:35px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,0.05);
}

.checkout-left{
    padding:60px;

    background:
    linear-gradient(
        rgba(212,175,55,0.08),
        rgba(15,23,42,1)
    );
}

.checkout-left h2{
    font-size:48px;
    font-weight:800;

    margin-bottom:20px;
}

.checkout-left p{
    color:#cbd5e1;

    margin-bottom:35px;

    font-size:16px;
}

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

    padding:30px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,0.06);
}

.selected-package-box h3{
    color:#d4af37;

    margin-bottom:15px;
}

#selectedPackageText{
    font-size:28px;
    font-weight:700;
}

.checkout-right{
    padding:60px;
}

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

.form-group label{
    display:block;

    margin-bottom:10px;

    font-size:15px;
    font-weight:600;

    color:#e2e8f0;
}

.form-group input,
.form-group select{
    width:100%;

    padding:18px;

    border:none;
    outline:none;

    border-radius:16px;

    background:#050816;

    color:#ffffff;

    font-size:15px;

    border:1px solid rgba(255,255,255,0.05);
}

.pay-btn{
    width:100%;

    background:#d4af37;
    color:#000000;

    border:none;

    padding:20px;

    border-radius:18px;

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

    cursor:pointer;

    transition:0.3s ease;
}

.pay-btn:hover{
    background:#facc15;
}

.footer{
    padding:70px 0 40px;

    background:#020617;

    border-top:1px solid rgba(255,255,255,0.05);
}

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

.footer-content h3{
    font-size:32px;
    font-weight:700;

    margin-bottom:18px;
}

.footer-content p{
    color:#94a3b8;

    margin-bottom:20px;
}

.footer-copy{
    color:#64748b;
    font-size:14px;
}

@media(max-width:992px){

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

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

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

@media(max-width:768px){

    .hero{
        min-height:auto;
        padding:120px 0 90px;
    }

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

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

    .hero-badge{
        width:100%;
    }

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

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

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

    #selectedPackageText{
        font-size:22px;
    }

    .package-price{
        font-size:50px;
    }

    .footer-content h3{
        font-size:24px;
    }
}