*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background:#fff;
}


.concert-hero{
    position:relative;
    height:70vh;
    background:url("images/concert_event.png") center/cover no-repeat;
    display:flex;
    align-items:center;
    padding:0 8%;
}

.concert-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(179,106,94,0.75), rgba(0,0,0,0.2));
}

.concert-content{
    position:relative;
    max-width:600px;
    color:#fff;
}

.badge{
    background:#c89f9c;
    padding:6px 14px;
    border-radius:20px;
    font-size:14px;
    display:inline-block;
    margin-bottom:15px;
}

.concert-content h1{
    font-size:48px;
    line-height:1.2;
    margin-bottom:15px;
}

.concert-content h1 span{
    color:#eee2df;
}

.concert-content p{
    font-size:16px;
    margin-bottom:25px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.btn{
    padding:12px 26px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

.btn.primary{
    background:#b36a5e;
    color:#fff;
}

.btn.outline{
    border:2px solid #fff;
    color:#fff;
}

.hero-highlights{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    font-size:14px;
}


.concert-services{
    background:#eee2df;
    padding:70px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#b36a5e;
    letter-spacing:2px;
    font-size:13px;
}

.section-title h2{
    font-size:36px;
    margin-top:10px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 30px rgba(0,0,0,0.12);
    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    border: 2px solid #bc8c80;

}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-content{
    padding:22px;
}

.card-content h3{
    color:#b36a5e;
    margin-bottom:10px;
}

.card-content p{
    font-size:14px;
    color:#555;
}

@media(max-width:768px){
    .concert-content h1{
        font-size:34px;
    }
    .concert-hero{
        height:80vh;
    }
}
