/* ===========================
   GOOGLE FONTS
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ===========================
   RESET
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{

    padding-top:85px;
    font-family:'Poppins',sans-serif;
    background:#F6F3E8;
    color:#222;
}


/* ===========================
   NAVBAR
=========================== */

.navbar{

    width:100%;
    height:90px;

    background:#281715;

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

    padding:0 50px;

    border-bottom:3px solid #C9A44C;

    position:fixed;
    top:0;

    z-index:999;
    
}

.logo-left img,
.logo-right img{

    width:70px;

}

.nav-menu{

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

}

.nav-menu a{

    text-decoration:none;

    color:white;

    font-family:'Cinzel',serif;

    font-size:16px;

    transition:.3s;

}

.nav-menu a:hover{

    color:#D6B15B;

}


/* ===========================
   HERO
=========================== */

.hero{

    min-height:calc(100vh - 85px); /* 85px = navbar height */

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;

    overflow:hidden;

}


/* ===========================
   SCROLL
=========================== */

.scroll{

    transform:scale(0.82);

    transform-origin:center;

}

.scroll-top,
.scroll-bottom{

    width:100%;
    height:45px;

    background:linear-gradient(#D8BC73,#9C7428);

    border-radius:12px;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

}


/* ===========================
   PAPER
=========================== */

.paper{

    background:#FFFDF7;

    border-left:3px solid #B88A35;
    border-right:3px solid #B88A35;

    max-width:700px;      /* Reduce width */

    width:100%;            /* Responsive */

    padding:28px 35px;    /* Reduce inner spacing */

    margin:0 auto;

    box-shadow:0 0 25px rgba(0,0,0,.15);

    background-image:radial-gradient(#d6b15b 1px, transparent 1px);
    background-size:24px 24px;

}


/* ===========================
   TEXT
=========================== */

.edition{

    color:#B88A35;

    letter-spacing:3px;

    font-weight:600;

    margin-bottom:20px;

}

.paper h1{

    font-family:'Cinzel',serif;

    font-size:66px;

    color:#281715;

    margin: 8px 0;

    margin-bottom:15px;

}

.paper h3{

    color:#281715;

    font-size:32px;

    margin:8px 0;

    margin-bottom:30px;

}

.paper hr{

    width:60%;

    margin:18px auto;

    border:none;

    border-top:2px solid #C9A44C;

}

.paper h2{

    margin:15px 0;

    margin-bottom:15px;

    font-size:40px;

}

.paper h4{

    color:#777;

    margin:8px 0;

    margin-bottom:10px;

}

.venue{

    margin-bottom:40px;

}


/* ===========================
   BUTTON
=========================== */

.register-btn{

    display:inline-block;

    padding:15px 45px;

    background:#281715;

    color:white;

    text-decoration:none;

    border-radius:5px;

    transition:.3s;

    font-family:'Cinzel',serif;

}

.register-btn:hover{

    background:#C9A44C;

    color:#16352F;

}


/* ===========================
   FOOTER
=========================== */

footer{

    background:#281715;

    color:white;

    padding:60px 8%;

}

.footer-container{

    display:grid;

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

    gap:50px;

}

.footer-column h3{

    color:#D6B15B;

    margin-bottom:20px;

    font-family:'Cinzel',serif;

}

.footer-column ul{

    list-style:none;

}

.footer-column li{

    margin-bottom:10px;

}

.footer-column a{

    color:white;

    text-decoration:none;

}

.footer-column a:hover{

    color:#D6B15B;

}


@media (max-width: 900px){

    .footer-container{

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

    }

}

@media (max-width: 500px){

    .footer-container{

        grid-template-columns:1fr;

    }

}

.query-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.query-list li {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.query-list li:last-child {
    margin-bottom: 0;
}

.query-name {
    color: #fff;
    font-size: 0.95rem;
}

.query-name em {
    color: #D6B15B;
    font-style: normal;
    font-size: 0.85rem;
    margin-left: 4px;
}

.query-list a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.query-list a:hover {
    color: #D6B15B;
    text-decoration: underline;
}


/* ===========================
   TERMINAL
=========================== */

.terminal{

    border:1px solid #D6B15B;

    border-radius:8px;

    padding:20px;

    font-family:monospace;

    background:#281715;

}

.green{

    color:#62ff8b;

}

.yellow{

    color:#FFD54F;

}


/* ===========================
   SOCIAL
=========================== */

.social-links{

    display:flex;
    flex-direction:column;
    gap:10px;

    margin-top:15px;

}


/* ===========================
   COPYRIGHT
=========================== */

.copyright{

    margin-top:50px;

    text-align:center;

    color:#cccccc;

}


/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:900px){

.footer-container{

    grid-template-columns:1fr;

    text-align:center;

}

.navbar{

    flex-direction:column;

    height:auto;

    padding:20px;

}

.nav-menu{

    margin:20px 0;

    gap:20px;

    flex-wrap:wrap;

}

.paper{

    padding:50px 25px;

}

.paper h1{

    font-size:48px;

}

.paper h2{

    font-size:30px;

}

.paper h3{

    font-size:24px;

}

}

/* ================= ABOUT ================= */

.about-section{

    max-width:1000px;

    margin:70px auto;

    padding:20px;

}

.about-container{

    max-width:1000px;

    margin:0 auto;

    text-align:center;

}

.about-card{

    background:#ffffff;

    padding:60px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    border-top:6px solid #C9A44C;

}

.about-tag{

    display:inline-block;

    background:#281715;

    color:white;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    letter-spacing:2px;

}

.about-card h1{

    font-family:'Cinzel',serif;

    color:#281715;

    font-size:42px;

    margin:20px 0;

}

.gold-line{

    width:120px;

    height:4px;

    background:#C9A44C;

    border-radius:10px;

    margin-bottom:35px;

}

.about-card p{

    font-size:18px;

    line-height:2;

    color:#555;

    text-align:justify;

    margin-bottom:22px;

}

.quote-card{

    margin-top:45px;

    background:#281715;

    color:white;

    text-align:center;

    padding:45px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.quote-card h2{

    font-family:'Cinzel',serif;

    color:#D6B15B;

    margin-bottom:20px;

}

.quote-card p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:25px;

}

.quote-card h3{

    font-family:'Cinzel',serif;

    color:#D6B15B;

}

.title-line{

    width:180px;
    height:3px;

    margin:25px auto 45px;

    background:linear-gradient(
        to right,
        transparent,
        #C9A44C,
        #E8CF83,
        #C9A44C,
        transparent
    );

    position:relative;

}

.title-line::before,
.title-line::after{

    content:"❖";

    position:absolute;

    top:-14px;

    color:#C9A44C;

    font-size:20px;

}

.title-line::before{

    left:-10px;

}

.title-line::after{

    right:-10px;

}

.quote-box{

    margin-top:50px;

    padding:40px;

    background:linear-gradient(135deg,#9C7428, #281715);

    border-radius:18px;

    

    color:white;

    position:relative;

    overflow:hidden;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

    border:2px solid rgba(201,164,76,.35);

}

/* ==========================
   VISION BOX
========================== */

.vision-box{

    margin-top:60px;

    background:#ffffff;

    padding:50px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

    border-top:6px solid #C9A44C;

}

.vision-box h2{

    font-family:'Cinzel', serif;

    color:#281715;

    margin-bottom:25px;

    text-align:center;

}

.vision-box p{

    font-size:18px;

    line-height:2;

    color:#555;

}


/* ===========================
   REGISTRATION PAGE
=========================== */

.registration-page{

    padding:80px 20px 120px;

    background:#F6F3E8;

}

.registration-grid.single-card{

    display:flex;

    justify-content:center;

    margin-top:40px;

}

.registration-card{

    max-width:420px;

    width:100%;

}

.registration-header{

    text-align:center;

    margin-bottom:60px;

}

.registration-header h1{

    font-family:'Cinzel', serif;

    font-size:42px;

    color:#281715;

    margin-bottom:15px;

}

.registration-header p{

    color:#666;

    font-size:18px;

}

.registration-grid{

    max-width:1000px;

    margin:auto;

    display:grid;

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

    gap:40px;

}

.registration-card{

    background:white;

    padding:50px 35px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

    transition:.4s;

    border-top:6px solid #C9A44C;

}

.registration-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.registration-icon{

    font-size:60px;

    margin-bottom:20px;

}

.registration-card h2{

    font-family:'Cinzel', serif;

    color:#16352F;

    margin-bottom:20px;

}

.registration-card p{

    line-height:1.8;

    color:#555;

    margin-bottom:35px;

}

@media(max-width:768px){

.registration-grid{

    grid-template-columns:1fr;

}

}


/* Center single registration card */

.registration-grid.single-card{

    display:flex;

    justify-content:center;

    align-items:center;

}

.registration-grid.single-card .registration-card{

    max-width:545px;

    width:100%;

}

body{

    animation:fadeIn .8s ease;

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}


.hero{

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}


.registration-card{

    transition:.4s;

}

.registration-card:hover{

    transform:translateY(-12px) scale(1.03);

}

.nav-menu a{

    position:relative;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    bottom:-6px;

    left:50%;

    width:0;

    height:2px;

    background:#D4AF37;

    transition:.35s;

    transform:translateX(-50%);

}

.nav-menu a:hover::after{

    width:100%;

}

.quote-box{

    transition:.5s;

}

.quote-box:hover{

    box-shadow:0 0 40px rgba(212,175,55,.45);

}

.title-line{

    animation:grow 1s ease;

}

@keyframes grow{

    from{

        width:0;

    }

    to{

        width:180px;

    }

}

html{

    scroll-behavior:smooth;

}

/* ===========================
   COMMITTEE MATRIX
=========================== */

.committee-section{

    padding:100px 20px;

    background:#F8F6F1;

}

.committee-heading{

    text-align:center;

    margin-bottom:60px;

}

.committee-heading h1{

    font-family:'Cinzel', serif;

    color:#281715;

    font-size:48px;

}

.committee-heading p{

    margin-top:15px;

    color:#555;

}

.committee-grid{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:35px;

    max-width:1200px;

    margin:auto;

}

.committee-card{

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

    background-size: cover;

    background-position: center;

    border-radius:20px;

    padding:45px 35px;

    text-align:center;

    border-top:6px solid #D4AF37;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

    transition:.4s;

    min-height:260px;

    flex:0 1 calc(33.333% - 24px);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

}

.committee-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.25);

}

.committee-icon{

    font-size:50px;

    margin-bottom:18px;

}

.committee-card h2{

    font-family:'Cinzel', serif;

    color:#D4AF37;

    font-size:26px;

    margin-bottom:15px;

}

.committee-card p{

    line-height:1.7;

    color:#E8D5D0;

    font-size:15px;

}

@media (max-width: 900px){

    .committee-card{

        flex:0 1 calc(50% - 18px);

    }

}

@media (max-width: 600px){

    .committee-card{

        flex:0 1 100%;

    }

}
