@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;600;800&display=swap');


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


body {

    background:#09070d;
    color:white;
    font-family:Inter, sans-serif;

}


.navbar {

    position:fixed;
    top:0;
    width:100%;
    height:80px;

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

    padding:0 7%;

    background:rgba(10,8,15,.7);
    backdrop-filter:blur(15px);

    z-index:100;

    border-bottom:1px solid rgba(255,255,255,.1);

}


.logo {

    font-family:"Playfair Display";
    font-size:32px;

}


.logo span {

    color:#9b59ff;

}



.navbar ul {

    display:flex;
    gap:40px;
    list-style:none;

}


.navbar a {

    color:white;
    text-decoration:none;

    font-size:15px;

}

@media (max-width: 768px){

    .navbar{
        height:auto;
        padding:18px 20px;
        flex-direction:column;
        gap:18px;
    }

    .logo{
        font-size:28px;
    }

    .navbar ul{
        gap:18px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .navbar a{
        font-size:14px;
    }

}


.hero h1{

    font-family:"Playfair Display";

    font-size:clamp(3.5rem,12vw,7rem);

    line-height:.95;

}
@media(max-width:768px){

.hero-content{

    left:20px;
    right:20px;

    max-width:none;

}

.date{

    font-size:22px;

}

.venue{

    font-size:16px;

}

button{

    width:100%;

    margin-top:30px;

}

}

.overlay{

background:
linear-gradient(
180deg,
rgba(0,0,0,.7),
rgba(0,0,0,.55)
);

}

.slides {

    position:absolute;
    inset:0;

}


.slide {

    position:absolute;
    inset:0;

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

    opacity:0;
    transition:opacity 1.5s;

}


.slide:nth-child(1){

background-image:url(images/slide1.jpg);

}


.slide:nth-child(2){

background-image:url(images/slide2.jpg);

}


.slide:nth-child(3){

background-image:url(images/slide3.jpg);

}


.slide.active{

opacity:1;

}



.overlay {

position:absolute;
inset:0;

background:
linear-gradient(
90deg,
rgba(0,0,0,.85),
rgba(0,0,0,.35)
);

}



.hero-content {

position:absolute;

top:50%;
left:8%;

transform:translateY(-50%);

max-width:800px;

}



.hero h1 {

font-family:"Playfair Display";
font-size:110px;
line-height:1;

}


.hero h1 span {

color:#a66cff;

}



.date {

margin-top:30px;

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

}



.venue {

margin-top:15px;

font-size:18px;

max-width:600px;

color:#ddd;

}



button {

margin-top:40px;

padding:15px 40px;

border:none;

background:#8b4cff;

color:white;

font-size:16px;

border-radius:5px;

cursor:pointer;

}



.announcement {

padding:120px 12%;

}



.announcement h2 {

font-family:"Playfair Display";
font-size:55px;

margin-bottom:50px;

}



.letter {

background:

linear-gradient(
135deg,
rgba(140,80,255,.15),
rgba(255,255,255,.03)
);


border:1px solid rgba(255,255,255,.15);

padding:50px;

border-radius:20px;


font-size:19px;
line-height:1.8;

}



.placeholder {

height:400px;

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

background:#0e0b14;

font-family:"Playfair Display";

font-size:40px;

}



footer {

padding:50px 10%;

background:#050409;

text-align:center;

}



.footer-logo {

font-size:40px;
font-family:"Playfair Display";

}



.links {

margin:30px;

display:flex;
justify-content:center;
gap:35px;

}



.links a {

color:#bbb;
text-decoration:none;

}


footer p {

color:#777;

}
.about-grid {

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

    align-items:start;

}


.about-card h3 {

    font-family:"Playfair Display";

    font-size:35px;

    margin-bottom:25px;

}


.about-card .letter {

    height:100%;

}



@media(max-width:900px){

    .about-grid {

        grid-template-columns:1fr;

    }

}

/* ===========================
   COMMITTEES
=========================== */

.committees{
    padding:100px 8%;
    background:#0e0b14;
}

.committees h2{
    text-align:center;
    font-family:"Playfair Display";
    font-size:clamp(2.5rem,5vw,4rem);
    margin-bottom:60px;
}

.committee-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

.committee-card{

    position:relative;

    display:flex;
    flex-direction:column;

    padding:32px;

    border-radius:22px;

    background:linear-gradient(
        135deg,
        rgba(140,80,255,.15),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(255,255,255,.08);

    overflow:hidden;

    transition:.3s ease;

}

.committee-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;
    bottom:0;

    width:5px;

    background:#9b59ff;

}

.committee-card:hover{

    transform:translateY(-8px);

    border-color:#9b59ff;

    box-shadow:0 15px 35px rgba(155,89,255,.2);

}

.committee-badge{

    align-self:flex-start;

    background:#9b59ff;

    color:white;

    padding:8px 16px;

    border-radius:999px;

    font-size:14px;

    font-weight:700;

    margin-bottom:22px;

}

.committee-card h3{

    font-family:"Playfair Display";

    font-size:1.9rem;

    line-height:1.25;

    margin-bottom:18px;

}

.committee-type{

    display:inline-block;

    align-self:flex-start;

    background:rgba(255,255,255,.08);

    color:#ddd;

    padding:6px 14px;

    border-radius:999px;

    font-size:13px;

    margin-bottom:18px;

}

.agenda{

    color:#d6d6d6;

    line-height:1.6;

    margin-bottom:20px;

}

.committee-chair{

    margin-top:auto;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.12);

}

.committee-chair span{

    display:block;

    color:#999;

    text-transform:uppercase;

    font-size:12px;

    letter-spacing:1.5px;

    margin-bottom:6px;

}

.committee-chair strong{

    font-size:20px;

    font-weight:600;

}
@media (max-width:768px){

    .committees{
        padding:80px 20px;
    }

    .committee-list{
        grid-template-columns:1fr;
        gap:22px;
    }

    .committee-card{
        padding:24px;
    }

    .committee-card h3{
        font-size:1.5rem;
    }

    .committee-badge{
        font-size:13px;
    }

    .committee-chair strong{
        font-size:18px;
    }

}

.highlights {

    padding:100px 12%;

}


.highlight-grid {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


.highlight-card {

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.15);

    padding:35px;

    border-radius:20px;

}


.highlight-card h3 {

    font-family:"Playfair Display";

    font-size:26px;

    margin-bottom:20px;

}


.highlight-card p,
.highlight-card li {

    line-height:1.7;

    color:#ddd;

}


@media(max-width:900px){

    .highlight-grid {

        grid-template-columns:1fr;

    }

}

.register-button {
    color: #FFFFFF;
    text-decoration: none;
}

.registration {

    padding:120px 12%;

}

.registration h2 {

    font-family:"Playfair Display";

    font-size:55px;

    margin-bottom:60px;

}

.registration-card {

    max-width:800px;

    margin:auto;

    padding:50px;

    background:linear-gradient(
        135deg,
        rgba(140,80,255,.15),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    text-align:center;

}

.registration-card h3 {

    font-size:28px;

    margin-bottom:20px;

}

.registration-card p {

    font-size:18px;

    line-height:1.8;

    color:#ddd;

}

.registration-buttons {

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.registration-buttons a {

    display:inline-block;

    padding:15px 35px;

    background:#8b4cff;

    color:white;

    text-decoration:none;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.registration-buttons a:hover {

    background:#9d63ff;

    transform:translateY(-2px);

}
.team {

    padding:120px 12%;

    background:#09070d;

}

.team h2 {

    font-family:"Playfair Display";

    font-size:55px;

    margin-bottom:60px;

    text-align:center;

}

.team-grid {

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:35px;

}

.team-card {

    background:linear-gradient(
        135deg,
        rgba(140,80,255,.15),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.3s;

}

.team-card:hover {

    transform:translateY(-8px);

    border-color:#9b59ff;

}

.team-card img {

    width:140px;

    height:140px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:20px;

    border:3px solid rgba(166,108,255,.5);

}

.team-card h3 {

    font-family:"Playfair Display";

    font-size:24px;

    margin-bottom:10px;

}

.team-card p {

    color:#cfcfcf;

    font-size:17px;

}
.team-card .role {

    color:#a66cff;

    font-weight:600;

    margin:10px 0;

}

.team-card .names {

    color:#ddd;

    line-height:1.7;

    font-size:16px;

}
.team-images{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-bottom:20px;
}

.team-images img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid rgba(166,108,255,.5);
}
@media(max-width:768px){

.announcement{

    padding:80px 20px;

}

.about-grid{

    gap:25px;

}

.announcement h2{

    font-size:42px;

}

.about-card h3{

    font-size:28px;

}

.letter{

    padding:30px;

}

}

@media(max-width:768px){

.team-card img{

    width:110px;

    height:110px;

}

.team{

    padding:80px 20px;

}

}
