/* ========================= */
/* FONT */
/* ========================= */

@font-face {
    font-family: 'Riuka';
    src: url('./assets/font/RiukaBold.ttf') format('truetype');
}

/* ========================= */
/* GLOBAL */
/* ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #2D7C6C;

    font-family: 'Poppins', sans-serif;

    overflow-x: hidden;

    padding-top: 103px;
}

/* ========================= */
/* 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;

    transition: .25s ease;

    cursor: pointer;
}

.button-primary:hover {
    background: #FFA8C4;


}

.button-primary:focus {
    background: #FDE7EE;
}

/* ========================= */
/* HERO */
/* ========================= */

#hero {
    width: 100%;
    height: 760px;

    background-image: url('./assets/img/bg.png');

    background-size: cover;

    background-position: center -120px;

    background-repeat: no-repeat;
    margin-top: -103px;
    padding-top: 70px;
}

.events-heading {
    width: 564px;

    margin-left: 160px;
    margin-top: 70px;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.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';

    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));
}

.title-line {
    width: 150px;
    height: 6px;

    border-radius: 999px;

    background: #FFD84D;
}

.section-desc {
    width: 564px;

    color: #FFF7E9;

    font-size: 18px;
    font-weight: 500;

    line-height: 27px;
}

/* ========================= */
/* EVENT SECTION */
/* ========================= */

#event-list {
    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 18px;

    margin-top: -120px;

    position: relative;
    z-index: 5;
}

.event-wrapper {
    width: 100%;

    display: flex;
    justify-content: center;
}

/* ========================= */
/* EVENT CARD */
/* ========================= */

.event-card {
    width: 1062px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 18px;

    padding: 24px 48px 32px;

    border-radius: 18px;
    border: 2px solid #CDE599;

    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%);

    box-shadow:
        0 5px 10px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(8px);

    overflow: hidden;
}

/* ========================= */
/* TOP ROW */
/* ========================= */

.event-top-row {
    width: 100%;

    display: flex;

    height: 60px;

    justify-content: space-between;
    align-items: center;

    align-self: stretch;
}

/* ========================= */
/* ITEM */
/* ========================= */

.event-item {
    display: flex;
    align-items: center;

    gap: 16px;
}

.event-icon-circle {
    width: 48px;
    height: 48px;

    border-radius: 999px;


    display: flex;
    justify-content: center;
    align-items: center;
}

.event-icon-circle img {
    width: 48px;
    height: 48px;
}

.event-info h4 {
    margin: 0;

    color: #FFF7E9;

    font-size: 16px;
    font-weight: 600;

    line-height: 24px;
}

.event-info p {
    margin: 0;

    color: #FFF7E9;

    font-size: 14px;
    font-weight: 400;

    line-height: 21px;

    opacity: .9;
}

/* ========================= */
/* DIVIDER */
/* ========================= */

.event-divider {
    width: 1px;
    height: 54px;

    background:
        rgba(255, 255, 255, 0.12);
}

/* ========================= */
/* REGISTER BUTTON */
/* ========================= */

/* ========================= */
/* REGISTER BUTTON */
/* ========================= */

.register-button {
    display: flex;

    padding: 8px 16px;

    justify-content: center;
    align-items: center;

    gap: 10px;

    border: none;
    border-radius: 12px;

    background:
        linear-gradient(180deg,
            #FFE487 -0.11%,
            #FFC809 100%);

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.15);

    color: #1C1C1C;

    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease;

}

/* ARROW */

.register-button svg {
    width: 18px;
    height: 18px;

    aspect-ratio: 1/1;

    flex-shrink: 0;
}

/* HOVER */

.register-button:hover {
    border-radius: 12px;

    background: #FFE487;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.15);

}

/* FOCUS */

.register-button:focus,
.register-button:focus-visible {
    border-radius: 12px;

    background: #FFF4CE;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.15);

    outline: none;
}

.register-button:hover {}

/* ========================= */
/* RUNNING TEXT */
/* ========================= */

.event-running-text {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;
}

.event-running-text img {
    width: 18px;
    height: 18px;
}

.event-running-text p {
    margin: 0;

    color: #FFF7E9;

    font-size: 15px;
    font-weight: 400;

    line-height: 22px;
}

/* ========================= */
/* FOOTER */
/* ========================= */

#footer {
    background: #091916;

    margin-top: 120px;

    padding: 48px 80px;
}

.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;
}

/* ========================= */
/* TALKSHOW GALLERY */
/* ========================= */

#talkshow-gallery {
    width: 1062px;

    margin: 48px auto 0;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 24px;

    position: relative;
    z-index: 3;
}

/* ========================= */
/* HEADER */
/* ========================= */

.gallery-header {
    width: 100%;

    display: flex;

    justify-content: space-between;
    align-items: center;
}

/* ========================= */
/* TITLE */
/* ========================= */

.gallery-title {
    font-family: 'Riuka';

    font-size: 50px;
    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));
}

/* ========================= */
/* NAVIGATION */
/* ========================= */

.gallery-navigation {
    display: flex;
    align-items: center;

    gap: 12px;
}

.gallery-arrow {
    width: 48px;
    height: 48px;

    border: none;

    border-radius: 999px;

    background:
        linear-gradient(180deg,
            #CDE599 0%,
            #9BCC33 100%);

    box-shadow:
        0 3px 8px rgba(0, 0, 0, .15);

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    transition: .25s ease;
}

.gallery-arrow svg {
    width: 18px;
    height: 18px;
}

.gallery-arrow:hover {

    background: #CDE599;
}

.gallery-arrow:focus {
    background: #EBF5D6;

    outline: none;
}

/* ========================= */
/* WRAPPER */
/* ========================= */

.gallery-wrapper {
    width: 100%;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 24px;
}

/* ========================= */
/* CARD */
/* ========================= */

.gallery-card {
    width: 338px;
    height: 318px;

    overflow: hidden;

    border-radius: 18px;

    border: 2px solid #D6E88A;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, .18);

    flex-shrink: 0;

    position: relative;
}

.gallery-card img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transform: scale(1.15);
}

/* ========================= */
/* LINK RESET */
/* ========================= */

a,
a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    color: inherit;
}