*{
    box-sizing:border-box;
    margin:0;
    padding:0;
    color: #ffb700;
}

html,
body{
    min-height:100%;
}

body{
    background:#2f2f2f;
    color:#ffb700;
    font-family:Arial, sans-serif;

    display:flex;
    flex-direction:column;
}

/* PAGE LAYOUT */

.page{
    flex:1;
    display:flex;
    min-height:calc(100vh - 70px);
}

/* SIDEBAR */

.sidenav{
    width:260px;
    background:#0f0f0f;
    padding:40px 30px;

    display:flex;
    flex-direction:column;
}

#main-logo{
    width:100%;
    border-radius:12px;
}

.brand{
    margin-bottom:50px;
}

.brand p{
    color:#ffb700;
    text-align:center;
    margin-top:10px;
    font-size:14px;
}

/* MENU */

.menu{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.menu a{
    color:#ffb700;
    text-decoration:none;
    font-size:20px;
    text-align:center;

    padding:12px;
    border:2px solid #333;
    border-radius:10px;

    transition:.2s;
}

.menu a:hover,
.menu a.active{
    color:#ffb700;
    border-color:#e07722;
}

/* SIDEBAR FOOTER */

.sidebar-footer{
    margin-top:auto;
    padding-top:20px;
    border-top:1px solid #e07722;
    text-align:center;
}

.sidebar-footer small{
    color:#ffb700;
    line-height:1.6;
}

/* MAIN CONTENT */

.content{
    flex:1;
    background:#3a3a3a;
    padding:40px;
}

.content h1{
    color:#fff;
}

.content p{
    color:#b8b8b8;
}

/* HERO */

.hero{
    display:flex;
    justify-content:center;
    margin-bottom:30px;

}

.hero-box{
    width:100%;
    max-width:1200px;

    background:#171717;
    border:2px solid #e07722;
    border-radius:12px;

    padding:25px;
    text-align:center;
}

.hero-box h1{
    font-size:3.5rem;
    color: #c89b5e;
    margin-bottom:10px;
}

.hero-box p{
  color: #c89b5e;
}

/* CAROUSEL */

#main-carousel{
    width:100%;
    max-width:1200px;
    margin:0 auto 30px auto;

    border-radius:12px;
    overflow:hidden;
    border:1px solid #e07722;
}

#main-carousel img{
    width:100%;
    height:500px;
    object-fit:cover;
}

/* News Section */

.news-section{
    width:100%;
    max-width:1200px;
    margin:40px auto;
}

.news-card{
    background:#171717;
    border:1px solid #e07722;
    border-radius:12px;
    padding:25px;
    height:100%;
}

.news-card h3{
    color:#c89b5e;
    margin-bottom:15px;
}

.news-card p{
    color:#b8b8b8;
    margin-bottom:15px;
}

.news-card small{
    color:#888;
}

/* SECTION HEADER */

.section-header{
    width:100%;
    max-width:1200px;

    margin:0 auto 25px auto;

    background:#171717;
    border:1px solid #e07722;
    border-radius:12px;

    padding:20px;
    text-align:center;
}

.section-header h1{
    color:#fff;
    margin-bottom:10px;
}

.section-header p{
    color:#999;
}

/* DIVIDER */

.section-divider{
    border:none;
    height:3px;

    background:linear-gradient(
        to right,
        transparent,
        #c89b5e,
        transparent
    );

    margin:40px auto;
    max-width:1200px;
}

/* EVENTS */

.event-grid{
    width:100%;
    max-width:1200px;

    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.event-card{
    background:#171717;
    border:1px solid #e07722;
    border-radius:12px;
    padding:20px;
}

.event-card h3{
    margin-bottom:10px;
    color:#fff;
}

.event-card p{
    color:#999;
}

/* FORMS */

.forms-section{
    width:100%;
    max-width:1200px;
    margin:0 auto;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.form-card{
    background:#171717;
    border:1px solid #e07722;
    border-radius:12px;
    padding:20px;

    display:flex;
    flex-direction:column;
}

.form-card h3{
    margin-bottom:10px;
    color:#fff;
}

.form-card p{
    color:#999;
}

.form-actions{
    margin-top:auto;

    display:flex;
    gap:10px;
    flex-wrap:wrap;

    padding-top:20px;
}

/* BUTTONS */

.btn-download,
.btn-online{
    text-decoration:none;
    padding:10px 14px;
    border-radius:8px;
    font-weight:bold;
    font-size:14px;
    transition:.2s;
    cursor:pointer;
}

.btn-download{
    background:#252525;
    border:1px solid #444;
    color:#fff;
}

.btn-download:hover{
    background:#333;
    color:#fff;
}

.btn-online{
    background:#c89b5e;
    border:1px solid #c89b5e;
    color:#111;
}

.btn-online:hover{
    background:#d6a76b;
    color:#111;
}

/* MODALS */

.modal-content{
    background:#171717 !important;
    border:1px solid #333;
}

.modal-header{
    border-bottom:1px solid #333;
}

.modal-footer{
    border-top:1px solid #333;
}

.modal .form-control,
.modal .form-select,
.modal textarea{
    background:#222;
    border:1px solid #444;
    color:#fff;
}

.modal .form-control:focus,
.modal .form-select:focus,
.modal textarea:focus{
    background:#222;
    color:#fff;
    border-color:#c89b5e;
    box-shadow:none;
}

/* FULL WIDTH FOOTER */

.site-footer{
    min-height:70px;

    background:#0f0f0f;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 30px;

    color:#888;
    font-size:14px;
}

/* MOBILE */

@media(max-width:768px){

    .page{
        flex-direction:column;
        min-height:auto;
    }

    .sidenav{
        width:100%;
    }

    .content{
        padding:20px;
    }

    .hero-box h1{
        font-size:2rem;
    }

    #main-carousel img{
        height:250px;
    }

    .site-footer{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}

/* Sponsor Section */

.sponsors-section{
    max-width:1200px;
    margin:0 auto;
}

.sponsor-card{
    background:#171717;
    border:3px solid #e07722;
    border-radius:12px;

    height:180px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:20px;
}

.sponsor-card img{
    max-height:120px;
    width:auto;
}