*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI, sans-serif;
}

body{
background:linear-gradient(135deg,#131b4d,#1b235c,#0f1333);
color:white;
}

.container{
max-width:1100px;
margin:auto;
padding:20px;
}

/* HEADER */

header{
background:#0f1333;
padding:18px 0;
position:fixed;
width:100%;
top:0;
z-index:10;
box-shadow:0 4px 12px rgba(0,0,0,.4);
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:2.2rem;
font-weight:bold;
color:#ffd166;
}

.nav-links{
display:flex;
gap:30px;
}

.nav-links a{
text-decoration:none;
color:white;
font-size:.95rem;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding-top:120px;
}

.hero-logo{
max-width:750px;
width:100%;
margin-bottom:25px;
}

.hero p{
font-size:1.3rem;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

/* BUTTON */

.btn{
padding:12px 30px;
background:linear-gradient(45deg,#ff6b6b,#ffa502);
border-radius:40px;
border:none;
color:white;
text-decoration:none;
font-weight:bold;
cursor:pointer;
}

.btn-secondary{
background:none;
border:2px solid #ffd166;
color:#ffd166;
}

/* SECTIONS */

.section{
padding:90px 0;
}

.section-title{
text-align:center;
font-size:2.4rem;
margin-bottom:60px;
color:#ffd166;
}

/* HIGHLIGHTS */

.highlights-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.highlight-card{
background:rgba(255,255,255,.07);
padding:25px;
border-radius:16px;
text-align:center;
}

/* ABOUT */

.about-content{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
margin-top:40px;
}

.about-text{
flex:1;
font-size:1.1rem;
line-height:1.8;
}

.about-text p{
margin-bottom:22px;
}

.about-image{
flex:1;
display:flex;
justify-content:flex-end;
}

.about-image img{
width:100%;
max-width:450px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.35);
}

/* GALLERY */

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
max-width:900px;
margin:0 auto;
}

.gallery-item{
height:260px;
overflow:hidden;
border-radius:16px;
background:#000;
box-shadow:0 12px 28px rgba(0,0,0,.35);
transition:transform .3s ease, box-shadow .3s ease;
display:flex;
align-items:center;
justify-content:center;
}

.gallery-item:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.45);
}

.gallery-item img{
width:100%;
height:100%;
object-fit:contain;
transition:transform .4s ease;
}

.gallery-item:hover img{
transform:scale(1.05);
}

/* SHOWS */

.shows-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.show-card{
background:rgba(255,255,255,.07);
padding:25px;
border-radius:16px;
text-align:center;
}

/* TESTIMONIALS */

.testimonials{
background:rgba(255,255,255,.05);
}

.testimonials-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.testimonial-card{
background:rgba(255,255,255,.08);
padding:25px;
border-radius:12px;
}

/* CONTACT */

.contact-form{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:12px;
border:none;
border-radius:6px;
}

/* FOOTER */

footer{
text-align:center;
padding:40px;
}

.social-links{
display:flex;
justify-content:center;
gap:20px;
margin-bottom:10px;
}

.social-links a{
color:#ffd166;
font-size:1.4rem;
}
/* TESTIMONIALS */

.testimonials{
background:rgba(255,255,255,.05);
}

.testimonials-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
max-width:1000px;
margin:0 auto;
}

.testimonial-card{
background:rgba(255,255,255,.08);
padding:28px;
border-radius:16px;
line-height:1.7;
box-shadow:0 10px 30px rgba(0,0,0,.3);
transition:transform .25s ease, box-shadow .25s ease;
}

.testimonial-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 36px rgba(0,0,0,.4);
}

.testimonial-author{
margin-top:18px;
color:#ffd166;
font-size:.95rem;

}
