body{
margin:0;
background:#0c0c0c;
color:#f5f5f5;
font-family:'Inter',sans-serif;
line-height:1.8;
}

/* ===== HEADER CAROUSEL ===== */
header{
position:relative;
height:100vh;
overflow:hidden;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:opacity 2s ease-in-out;
animation:zoom 20s infinite alternate;
}

.slide.active{
opacity:1;
}

.slide::after{
content:"";
position:absolute;
width:100%;
height:100%;
background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.75));
top:0;
left:0;
}

@keyframes zoom{
0%{transform:scale(1);}
100%{transform:scale(1.1);}
}

.header-content{
position:relative;
z-index:2;
}

header h1{
font-family:'Playfair Display',serif;
font-size:4rem;
letter-spacing:3px;
margin:0;
}

header p{
font-size:1.4rem;
margin-top:15px;
opacity:.9;
}

/* ===== SECTIONS ===== */
section{
max-width:1100px;
margin:90px auto;
padding:0 20px;
}

h2{
font-family:'Playfair Display',serif;
font-size:2.3rem;
margin-bottom:25px;
border-left:5px solid gold;
padding-left:15px;
}

.profile{
display:flex;
flex-wrap:wrap;
gap:10px;
align-items:center;
}
.profile p{
text-align:justify;
}

.profile img{
width:32%;
border-radius:12px;
box-shadow:0 15px 40px rgba(255,215,0,.15);
align-items:center;
}

.timeline-item{
display:flex;
flex-wrap:wrap;
gap:30px;
margin-bottom:60px;
align-items:center;
}

.timeline-item img{
width:320px;
border-radius:10px;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery img{
width:100%;
border-radius:10px;
transition:.4s;
}

.gallery img:hover{
transform:scale(1.05);
}

footer{
text-align:center;
padding:40px;
border-top:1px solid #333;
margin-top:80px;
font-size:.9rem;
}

@media(max-width:768px){
header h1{font-size:2.5rem;}
.profile,.timeline-item{flex-direction:column;}
.profile img{
width:100%;
border-radius:12px;
box-shadow:0 15px 40px rgba(255,215,0,.15);
}
.nodsp {display:none;}
.timeline-item h3, p{
text-align:center;
}
.profile p{
text-align:center;
}
}