/* ========================= */
/* FONT */
/* ========================= */

@font-face {
    font-family: 'Riuka';
    src: url('./assets/font/RiukaBold.ttf') format('truetype');
}

/* ========================= */
/* BODY */
/* ========================= */

body {
    margin: 0;
    padding: 0;
    padding-top: 103px;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.custom-navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    z-index: 9999;

    background-color: rgba(255, 247, 233, 0.9);
    transition: all 0.3s ease;
}

.custom-navbar.sticky {
    width: 75%;
    top: 15px;

    border-radius: 10px;

    background-color: rgba(255, 247, 233, 0.9);
    backdrop-filter: blur(10px);

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 600;
    font-size: 34px;
    background-image: linear-gradient(to bottom, #CDE599, #9BCC33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    border: none;
    cursor: pointer;
}

.nav-link.active {
    font-weight: 700;
}

.nav-link {
    font-weight: 550;
    font-size: 18px;
}

/* ========================= */
/* PRIMARY BUTTON */
/* ========================= */

.button-primary {
    display: inline-flex;

    padding: 8px 16px;

    justify-content: center;
    align-items: center;

    gap: 10px;

    border: none;
    border-radius: 12px;

    background:
        linear-gradient(180deg,
            #ED9CB8 22.6%,
            #F45D92 100%);

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.15);

    color: #1C1C1C;

    font-size: 18px;
    font-weight: 500;

    line-height: 27px;

    cursor: pointer;
}

/* ========================= */
/* PRIMARY BUTTON HOVER */
/* ========================= */

.button-primary:hover {
    background: #FFA8C4;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.15);

}

/* ========================= */
/* PRIMARY BUTTON FOCUSED */
/* ========================= */

.button-primary:focus,
.button-primary:focus-visible {
    background: #FDE7EE;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.15);

    outline: none;
}

/* ========================= */
/* HERO */
/* ========================= */

#hero {
    width: 100%;
    height: 520px;

    margin-top: -103px;
    padding-top: 70px;

    position: relative;
}

.events-heading {
    width: 100%;
    margin-top: 120px;
    margin-left: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 18px;

    text-align: center;
}

.section-tag {
    font-size: 24px;
    font-weight: 600;

    line-height: 36px;

    background:
        linear-gradient(180deg,
            #FFF7E9 14.01%,
            #FFEFB6 68.86%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-family: 'Riuka', serif;

    font-size: 70px;
    font-weight: 400;

    line-height: 85px;

    letter-spacing: -3px;

    margin: 0;

    background:
        linear-gradient(180deg,
            #FFE487 26.94%,
            #FFC809 68.94%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    filter:
        drop-shadow(0 0 1px rgba(255, 228, 135, 0.45)) drop-shadow(0 2px 3px rgba(28, 28, 28, 0.28));
}



.section-desc {
    width: auto;
    margin: 0;

    color: #192331;

    font-size: 32px;
    font-weight: 600;
    line-height: 48px;

    text-align: center;
}

/* ========================= */
/* EVENT */
/* ========================= */

#event-list {
    margin-top: -60px;

    padding-bottom: 120px;
}

.event-wrapper {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 24px;
}

.event-card {
    width: 1062px;
    height: 226px;

    border-radius: 18px;
    border: 2px solid #CDE599;

    overflow: hidden;

    display: flex;

    background:
        linear-gradient(90deg,
            rgba(8, 64, 55, 0.90) 0%,
            rgba(37, 103, 90, 0.90) 33.15%,
            rgba(8, 64, 55, 0.90) 100%);

    backdrop-filter: blur(8px);

    position: relative;
}

.event-content {
    width: 735px;

    padding: 32px 48px;

    display: flex;

    align-items: center;

    gap: 36px;

    z-index: 2;
}

.event-icon img {
    width: 92px;
    height: 92px;
}

.event-number {
    font-size: 42px;
    font-weight: 700;

    color: #FFD84D;
}

.event-text {
    width: 402px;

    display: flex;
    flex-direction: column;

    gap: 18px;
}

.event-text h3 {
    margin: 0;

    font-size: 24px;
    font-weight: 600;

    color: white;
}

.event-text p {
    margin: 0;

    font-size: 14px;

    line-height: 21px;

    color: white;
}

/* ========================= */
/* EVENT BUTTON */
/* ========================= */

.event-button {
    display: inline-flex;

    padding: 6px 12px;

    justify-content: center;
    align-items: center;

    gap: 10px;

    width: fit-content;

    border: none;
    border-radius: 8px;

    background:
        linear-gradient(180deg,
            #CDE599 0%,
            #9BCC33 100%);

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.15);

    color: #1C1C1C;

    font-size: 14px;
    font-weight: 400;

    line-height: 21px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.event-button:hover {
    background: #CDE599;


}

.event-button:focus,
.event-button:focus-visible {
    background: #EBF5D6;

    outline: none;
}

.event-button svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;
}

.event-image {
    width: 327px;
    height: 226px;

    position: relative;

    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.event-image::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(14, 106, 89, 0.95) 0%,
            rgba(14, 106, 89, 0.85) 15%,
            rgba(14, 106, 89, 0.45) 40%,
            rgba(14, 106, 89, 0.08) 70%,
            rgba(14, 106, 89, 0) 100%);
}

/* ========================= */
/* FOOTER */
/* ========================= */

#footer {
    background: #091916;
    padding: 48px 80px;
    margin-top: 0;
}

.footer-container {
    display: flex;
    flex-direction: column;

    gap: 52px;
}

.footer-top {
    display: flex;

    justify-content: space-between;
}

.footer-logo {
    width: 380px;
}

.footer-desc {
    width: 580px;

    margin-top: 24px;

    color: white;

    line-height: 32px;
}

.footer-right {
    text-align: right;
}

.footer-right h3 {
    color: white;

    font-size: 24px;
    font-weight: 700;

    line-height: 36px;
}

.footer-right p {
    margin-top: 20px;

    color: white;

    font-size: 16px;

    line-height: 24px;
}

.footer-line {
    width: 100%;
    height: 1px;

    background:
        rgba(255, 255, 255, 0.2);
}

/* ========================= */
/* FOOTER BOTTOM */
/* ========================= */

.footer-bottom {
    width: 100%;

    display: flex;

    justify-content: space-between;
    align-items: flex-start;
}

.footer-presented h4 {
    margin-bottom: 16px;

    color: #FFF7E9;

    font-size: 18px;
    font-weight: 600;
}

.footer-logos {
    display: flex;
    align-items: center;

    gap: 16px;
}

.footer-logos img:first-child {
    width: 42px;
}

.footer-logos img:last-child {
    width: 52px;
}

.footer-socials {
    display: flex;
    align-items: center;

    gap: 16px;
}

.footer-socials a {
    width: 56px;
    height: 56px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 8px;

    text-decoration: none;

    transition: .25s ease;
}

.footer-socials a:hover {}

.footer-socials img {
    width: 56px;
    height: 56px;

    object-fit: contain;
}

.footer-copy {
    width: 100%;

    text-align: center;

    color: white;

    font-size: 14px;
}

/* ========================= */
/* FAQ SECTION */
/* ========================= */

#faq-section {
    position: relative;
    z-index: 20;

    margin-top: -120px;

    padding-bottom: 239px;
}

.faq-wrapper {
    width: 1062px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 68px;
}

.faq-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.faq-heading h2 {
    margin: 0;
    font-family: 'Riuka';
    font-size: 70px;
    font-weight: 400;
    line-height: 85px;
    letter-spacing: -3px;

    background: linear-gradient(180deg, #FFE487 26.94%, #FFC809 68.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.faq-heading p {
    margin: 0;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 32px;
    color: #192331;
}

.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    width: 100%;
}

.faq-question {
    width: 100%;
    min-height: 82px;
    
    border: 2px solid #CDE699;
    border-radius: 18px;

    background: linear-gradient(90deg,
            rgba(8, 64, 55, 0.9) 0%,
            rgba(37, 103, 90, 0.9) 33.15%,
            rgba(8, 64, 55, 0.9) 100%);

    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);

    padding: 16px 31px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;
    border-radius: 18px;

    color: white;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 24px;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    transform: translateY(-2px);
}

.faq-arrow {
    font-size: 32px;
    color: #FFF7E9;
    transition: transform 0.35s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;

    background: #FFF4CE;
    border: 2px solid #CDE699;
    border-radius: 18px;

    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);

    margin-top: 12px;
    padding: 0 64px;

    transition:
        max-height 0.45s ease,
        padding 0.45s ease;
}

.faq-answer p {
    margin: 0;
    padding: 48px 0;

    font-family: 'Poppins';
    font-size: 20px;
    line-height: 49px;
    color: #1C1C1C;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

#faq-page-bg {
    width: 100%;
    background-image: url('./assets/img/bg-faq.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}