/* GENERAL STYLES (DESIGN SYSTEM) */

body {
    margin: 0;
    font-family: "Work Sans", sans-serif;
    background: var(--background-base-dark);
    width: 100%;
    overflow-x: hidden;
}

:root {
    --background-base-dark: #140D1A;
    --background-base-light: #FFFFFF;
    --surface-dark: #201925;
    --surface-light: #FAFAFA;
    --border-light: #D0CFD1;
    --border-dark: #433D48;
    --text-primary-dark: #F3F3F4;
    --text-primary-light: #201925;
    --text-secondary-dark: #D0CFD1;
    --text-secondary-light: #89868C;
    --accent-primary-dark: #9F80C5;
    --accent-primary-light: #3F008B;
    --accent-gold-dark: #F8E9A1;
    --accent-gold-light: #C3A037;
    --error-red-dark: #FFB4AB;
    --error-red-light: #B00020;
    --success-green-dark: #B2FFD0;
    --success-green-light: #00875A;
}

a {
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    color: var(--text-primary-dark);
}

button {
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: "Work Sans", sans-serif;
    padding: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

input,
textarea,
select {
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--text-primary-dark);
    border: 1px solid var(--border-dark);
    background-color: transparent;
    padding: 14px 12px;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
    color: var(--text-secondary-light);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

select {
    background-color: var(--surface-dark);
}

@media (max-width: 1080px) {
    a {
        font-size: 14px;
    }

    input,
    textarea,
    select {
        font-size: 14px;
        padding: 12px 10px;
    }

    input::placeholder,
    textarea::placeholder,
    select::placeholder {
        color: var(--text-secondary-light);
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
}

/* TYPOGRAPHY STYLES */

h1, h2, h3 {
    margin: 0;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-family: "Libre Baskerville", sans-serif;
    color: var(--text-primary-dark);
}

h1 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

h3 {
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

h4 {
    margin: 0;
    color: var(--text-primary-dark, #F3F3F4);
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
}

h5 {
    margin: 0;
    font-family: "Work Sans", sans-serif;
    color: var(--text-primary-dark, #F3F3F4);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

p {
    margin: 0;
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    color: var(--text-primary-dark);
}

p.headline {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    text-transform: uppercase;
    color: var(--text-secondary-dark);
}

span {
    color: var(--text-secondary-dark);
}

label {
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    color: var(--text-primary-dark);
}

@media (max-width: 1080px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 16px;
    }

    h5 {
        font-size: 14px;
    }

    p {
        font-size: 14px;
    }

    p.headline {
        font-size: 15px;
    }

    label {
        font-size: 13px;
    }
    
}



/* HEADER (NAVBAR) */

.bee-navbar-container {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background-color: transparent;
    width: calc(100% - 160px);
    z-index: 1000;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--background-base-dark);
    border-bottom: var(--border-dark) 1px solid;
}

.logo img {
    height: 54px;
    width: auto;
}

.bee-navbar-center {
    display: flex;
    align-items: center;
    gap: 40px;
}

.bee-navbar-center a,
.bee-navbar-right a {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--text-primary-dark);
}

.bee-navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bee-navbar-right button {
    padding: 13px 40px;
    border-radius: 24px;
}

button.bee-contact-btn {
    border: 1px solid var(--border-light);
    background-color: transparent;
}

button.bee-register-btn {
    background-color: var(--accent-primary-light);
    border: 1px solid var(--border-dark);
}

button.bee-contact-btn:hover,
button.bee-register-btn:hover {
    background-color: var(--accent-primary-dark);
    color: var(--text-primary-light);
    transition: background-color 0.8s ease-in-out;
}

.mode-language-toggles {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bee-navbar-right button.dark-light-toggle-btn {
    padding: 0;
    width: fit-content;
}

button.dark-light-toggle-btn img {
    width: 32px;
    height: auto;
}

/* MOBILE HEADER STYLING */

@media (max-width: 1080px) {
    .bee-navbar-container {
        padding: 14px 24px;
        width: calc(100% - 48px);
        background-color: transparent;
    }

    .fixed-header {
        background-color: var(--background-base-dark);
        border-bottom: var(--border-dark) 1px solid;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    .bee-navbar-center {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background-color: inherit;
        position: absolute;
        top: 70px; 
        right: 0;
        width: 60%;
        min-width: 240px;
        padding: 20px;
        gap: 20px;
        background-color: var(--background-base-dark);
    }

    .bee-navbar-right {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background-color: inherit;
        position: absolute;
        top: 198px; 
        right: 0;
        width: 60%;
        min-width: 240px;
        padding: 20px;
        gap: 16px;
        background-color: var(--background-base-dark);
    }

    .mode-language-toggles {
        gap: 16px;
    }

    .bee-navbar-right button {
        width: 100%;
        max-width: 300px;
    }

    .bee-navbar-center.active,
    .bee-navbar-right.active {
        display: flex;
    }

    .bee-navbar-left {
        flex: 1;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        width: 28px;
        height: 28px;
        position: relative;
    }

    .hamburger span {
        display: block;
        height: 3px;
        background: var(--text-primary-dark);
        margin: 6px 0;
        transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
}

@media (min-width: 1080px) {
    .hamburger {
        display: none;
    }
}




/* HERO SECTION */

.bee-hero-section {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 40px;
	height: 125vh;
	background-image: url('../images/hero-imagebg.jpg');
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.bee-hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(20, 13, 26, 0.75);
	z-index: 0;
}

.bee-hero-section > * {
	position: relative;
	z-index: 1;
}

.bhs-texts {
    margin-top: -120px;
    max-width: 1200px;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
}

.bhs-texts-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

p.bee-hero-subtext {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    color: var(--text-primary-dark);
    max-width: 880px;
}

.bee-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.bee-main-btn,
.bee-sub-btn {
    border-radius: 8px;
    padding: 0;
    width: max-content;
}

.bee-main-btn a,
.bee-sub-btn a {
    padding: 13px 40px;
    border-radius: 8px;
    display: flex;
    gap: 14px;
    align-items: center;
}

.bee-main-btn {
    background-color: var(--background-base-light);
    border: 1px solid var(--border-light);
}

.bee-sub-btn {
    background-color: transparent;
    border: 1px solid var(--border-light);
}

.bee-main-btn:hover,
.bee-sub-btn:hover {
    background-color: var(--accent-primary-dark);
    color: var(--text-primary-light);
    transition: background-color 0.8s ease-in-out;
}

.bee-main-btn p {
    color: var(--text-primary-light);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.bee-quote-credit {
    position: absolute;
    bottom: calc(25vh + 40px);
    right: 80px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: var(--accent-gold-dark);
    padding: 12px 24px;
}

.bee-quote-credit span {
    color: var(--text-primary-light);
}

@media (max-width: 1080px) {
    .bee-hero-section {
        padding: 0 24px;
        height: 125vh;
    }

    .bhs-texts {
        margin-top: -160px;
        max-width: 1200px;
        height: 100vh;
        gap: 24px;
    }

    .bhs-texts-main {
        gap: 12px;
    }

    p.bee-hero-subtext {
        font-size: 15px;
    }

    .bee-hero-buttons {
        gap: 14px;
    }

    .bee-hero-buttons img {
        width: 20px;
    }

    .bee-main-btn a,
    .bee-sub-btn a {
        padding: 10px 32px;
        border-radius: 8px;
        gap: 10px;
    }

    .bee-main-btn p {
        font-size: 14px;
    }

    .bee-quote-credit {
        bottom: calc(25vh + 32px);
        right: 24px;
        font-size: 12px;
        padding: 10px 20px;
    }
}

@media (max-width: 660px) {
    .bee-hero-section {
        height: 100vh;
    }

    .bhs-texts {
        margin-top: 0px;
    }

    .bee-quote-credit {
        bottom: 32px;
    }
}

@media (max-width: 480px) {
    .bee-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .bee-hero-buttons .bee-main-btn,
    .bee-hero-buttons .bee-sub-btn {
        width: 100%;
    }

    .bee-hero-buttons .bee-main-btn a,
    .bee-hero-buttons .bee-sub-btn a {
        justify-content: center;
    }
}



/* HOW TO PARTICIPATE */

.bee-steps-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 40px;
}

.bss {
    position: absolute;
    display: flex;
    align-items: center;
    border-radius: 24px;
    background-color: var(--surface-dark);
    border: 1px solid var(--border-dark);
    max-width: 1200px;
    margin: 0 40px;
}

.bee-step-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-dark);
    gap: 4px;
}

.bee-step-box:last-child {
    border-right: none;
}

.bee-step-box h1 {
    color: var(--text-secondary-light);
}

.bst-main-cta,
.bst-main-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bsb-cta {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bsb-cta p {
    color: var(--accent-gold-dark);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 1080px) {
    .bee-steps-section {
        padding: 0px 24px;
    }

    .bss {
        border-radius: 20px;
        margin: 0 24px;
    }

    .bee-step-box {
        padding: 24px;
        gap: 4px;
    }

    .bst-main-cta,
    .bst-main-text {
        gap: 12px;
    }

    .bsb-cta {
        gap: 4px;
    }

    .bsb-cta p {
        font-size: 14px;
    }

    .bsb-cta img {
        width: 20px;
    }
}

@media (max-width: 660px) {
    .bee-steps-section {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 48px 24px;
    }

    .bss {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 20px;
        margin: 0;
    }

    .bee-step-box {
        padding: 24px;
        border-right: none;
        border-bottom: 1px solid var(--border-dark);
        gap: 4px;
    }

    .bee-step-box:last-child {
        border-bottom: none;
    }
}



/* ABOUT THE COMPETITION */

.bee-about-section {
    padding: 150px 40px 88px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bas {
    margin-top: 88px;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 72px;
}

.bee-about-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.bat-main-texts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bee-about-images {
    max-width: 672px;
    width: 100%;
}

.bee-about-images img {
    width: 100%;
}

@media (max-width: 1080px) {
    .bee-about-section {
        padding: 96px 24px 48px 24px;
    }

    .bas {
        margin-top: 88px;
        gap: 20px;
    }

    .bee-about-text {
        gap: 12px;
    }

    .bat-main-texts {
        gap: 16px;
    }
}

@media (max-width: 880px) {
    .bee-about-section {
        padding: 88px 24px 48px 24px;
    }

    .bas {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .bat-main-texts {
        align-items: center;
    }

    .bee-about-text {
        text-align: center;
    }

    .bee-about-images {
        max-width: 680px;
        width: 100%;
    }
    
}

@media (max-width: 660px) {
    .bee-about-section {
        padding: 0 24px 48px 24px;
    }

    .bas {
        margin-top: 0;
    }
}


/* IMPACT SECTION */

.bee-impact-section {
    position: relative;
    padding: 88px 40px 200px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--surface-dark);
}

.bis {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.bee-impact-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bit-texts {
    display: flex;
    align-items: center;
    gap: 60px;
}

.bit-texts h2 {
    max-width: 520px;
    width: 100%;
}

.bit-texts p {
    max-width: 620px;
    width: 100%;
}

.bee-impact-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.bee-impact-stats hr {
    height: 88px;
    stroke-width: 2px;
    stroke: var(--border-dark);
}

.bee-impact-stats div {
    padding: 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1080px) {
    .bee-impact-section {
        padding: 48px 24px 160px 24px;
    }

    .bis {
        gap: 28px;
    }

    .bee-impact-text {
        gap: 12px;
    }

    .bit-texts {
        gap: 20px;
    }

    .bee-impact-stats hr {
        height: 80px;
        stroke-width: 2px;
    }

    .bee-impact-stats div {
        padding: 0 20px;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .bee-impact-section {
        padding: 48px 24px 32px 24px;
    }

    .bit-texts {
        flex-direction: column;
        gap: 12px;
    }

    .bee-impact-stats {
        flex-direction: column;
    }

    .bee-impact-stats hr {
        height: 0;
        width: 172px;
        stroke-width: 2px;
    }

    .bee-impact-stats div {
        padding: 20px 0;
        gap: 8px;
    }
}



/* PARTNER CALLOUT */

.bee-partner-banner {
    position: relative;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0px;
}

.bpb {
    position: absolute;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background-color: var(--accent-primary-light);
    max-width: 1200px;
    margin: 0 40px;
    padding: 36px 40px;
    gap: 16px;
}

.bpb .bee-main-btn {
    margin-top: 4px;
}

@media (max-width: 1080px) {
    .bee-partner-banner {
        padding: 0 24px;
    }

    .bpb {
        border-radius: 20px;
        margin: 0 24px;
        padding: 24px;
        gap: 12px;
    }

    .bpb .bee-main-btn {
        margin-top: 2px;
    }
}

@media (max-width: 600px) {
    .bee-partner-banner {
        position: relative;
        padding: 48px 24px;
        top: 0;
    }

    .bpb {
        position: relative;
        display: flex;
        flex-direction: column;
        max-width: 1200px;
        margin: 0;
        padding: 24px;
        gap: 12px;
    }
}



/* ORGANIZERS */

.bee-organizers-section {
    padding: 200px 40px 88px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bos {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bos-maintexts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bos-organizers {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bee-country-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.bct-country {
    padding: 11px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--border-dark);
    margin-left: -1px;
}

.bct-active {
    background-color: var(--accent-gold-light);
}

.bee-organizers-list {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    gap: 36px;
}

.bee-organizer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 272px;
    width: 100%;
    transition: opacity 0.5s ease;
}

.bee-organizer-card img {
    max-width: 272px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border-radius: 272px;
}

.organizer-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.organizer-titles p,
.bee-organizer-card p {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.organizer-titles a {
    font-weight: 400;
}

.organizer-titles span {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    color: var(--text-secondary-dark);
}

.bee-plus-icon {
    max-width: 272px;
    max-height: 272px;
    width: 100%;
    height: 100%;
    background-color: var(--accent-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bee-plus-icon img {
    max-width: 188px;
    width: 100%;
    height: auto;
}

@media (max-width: 1080px) {
    .bee-organizers-section {
        padding: 160px 24px 48px 24px;
    }

    .bos {
        gap: 24px;
    }

    .bos-maintexts {
        gap: 12px;
    }

    .bos-organizers {
        gap: 24px;
    }

    .bct-country {
        padding: 8px 24px;
        gap: 8px;
        border: 1.5px solid var(--border-dark);
    }

    .bee-organizers-list {
        gap: 20px;
    }

    .bee-organizer-card {
        gap: 12px;
        max-width: 220px;
        width: 100%;
    }

    .bee-organizer-card img {
        max-width: 220px;
        width: 100%;
    }

    .organizer-titles {
        gap: 2px;
    }

    .organizer-titles p,
    .bee-organizer-card p {
        font-size: 16px;
    }

    .organizer-titles span {
        font-size: 14px;
    }

    .bee-plus-icon {
        max-width: 220px;
        max-height: 220px;
    }

    .bee-plus-icon img {
        max-width: 220px;
    }
}

@media (max-width: 600px) {
    .bee-organizers-section {
        padding: 0 24px 48px 24px;
    }
}

@media (max-width: 512px) {
    .bct-country {
        padding: 8px 28px;
        flex-wrap: wrap;
    }

    .bee-organizers-list {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
    }

    .bee-organizer-card {
        gap: 12px;
        max-width: 280px;
        width: 100%;
    }

    .bee-organizer-card img {
        max-width: 280px;
        width: 100%;
    }

    .bee-plus-icon {
        max-width: 280px;
        max-height: 280px;
    }

    .bee-plus-icon img {
        max-width: 280px;
    }
}



/* BEE FOOTER */

.bee-footer {
    background-color: var(--surface-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--border-dark);
}

.bee-footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 54px 0;
    max-width: 1200px;
    width: 100%;
    gap: 24px;
}

.bee-footer-left,
.bee-footer-links,
.bee-footer-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 300px;
    padding: 0 24px;
}

.bee-footer-links ul,
.bfr-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bee-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--background-base-dark);
}

.bfb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 24px 40px;
}

.bee-footer-social {
    display: flex;
    align-items: center;
    gap: 28px;
}

.bee-footer-social img {
    width: 40px;
}

#bss-about .bss {
    position: static;
}

@media (max-width: 1080px) {
    .bee-footer-top {
        padding: 40px 0;
        gap: 32px 20px;
        justify-content: center;
    }

    .bee-footer-left,
    .bee-footer-links,
    .bee-footer-right {
        gap: 12px;
        max-width: 300px;
        padding: 0 24px;
    }

    .bee-footer-links ul,
    .bfr-main {
        gap: 10px;
    }

    .bfb {
        padding: 16px 24px;
        gap: 14px 40px;
        flex-wrap: wrap;
    }

    .bee-footer-social {
        gap: 20px;
    }

    .bee-footer-social img {
        width: 24px;
    }
}

@media (max-width: 600px) {
    .bee-footer-top,
    .bee-footer-left {
        flex-direction: column;
        align-items: center;
    }

    .bee-footer-left,
    .bee-footer-links,
    .bee-footer-right {
        max-width: 100%;
        text-align: center;
    }

    .bfb {
        justify-content: center;
        flex-direction: column;
        gap: 12px 40px;
    }

    .copyright {
        text-align: center;
    }
}





/* ABOUT PAGE */

/* HERO BANNER */

.bee-hero-banner {
    position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 40px;
    height: 400px;
	background-image: url('../images/hero-imagebg.jpg');
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

#about-hero {
	background-image: url('../images/about\ hero\ bg.png');
}

.bee-hero-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(20, 13, 26, 0.75);
	z-index: 0;
}

.bee-hero-banner > * {
	position: relative;
	z-index: 1;
}

.bhb {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 1200px;
    width: 100%;
    margin-top: 40px;
}

.bhb p {
    max-width: 600px;
}

@media (max-width: 1080px) {
    .bee-hero-banner {
        padding: 0 24px;
        height: 280px;
    }

    .bhb {
        margin-top: 48px;
    }
}



/* ABOUT SECTION */

#bee-about {
    padding: 0 40px 88px 40px;
    position: relative;
}

#bee-about .bas {
    position: relative;
    top: -120px;
    margin-bottom: -120px;
    margin-top: 0;
    max-width: 1200px;
    display: flex;
    align-items: flex-end;
    gap: 72px;
}

@media (max-width: 1240px) {
    #bee-about {
        padding: 88px 40px 88px 40px;
        position: relative;
    }

    #bee-about .bas {
        position: relative;
        top: 0;
        margin-bottom: 0;
        margin-top: 0;
        max-width: 1200px;
        display: flex;
        align-items: center;
        gap: 72px;
    }
}

@media (max-width: 1080px) {
    #bee-about {
        padding: 48px 24px 48px 24px;
        position: relative;
    }

    #bee-about .bas {
        gap: 40px 24px;
    }
}

@media (max-width: 660px) {
    #bee-about {
        padding: 48px 24px 0 24px;
    }
}



/* VIDEO SECTION */

.sponsor-video {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 88px 40px;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 15px;
    overflow: hidden;
}

.video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--accent-primary-light); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 2;
}

.play-button::before {
    content: '';
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

.video-wrapper.playing .video-cover,
.video-wrapper.playing .play-button {
    display: none;
}

.video-wrapper.playing .video-iframe {
    display: block;
}

@media (max-width: 1080px) {
    .sponsor-video {
        border-radius: 20px;
    }

    .video-wrapper {
        margin: 48px 24px;
        border-radius: 12px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 660px) {
    .video-wrapper {
        margin: 0 24px 48px 24px;
        border-radius: 12px;
    }
}



/* SUPPORT THE MISSION */

.bee-support-section {
    padding: 0 40px 88px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bssponsor {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.bss-sponsor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.bss-para {
    max-width: 960px;
    width: 100%;
}

.bss-sponsor .bee-main-btn {
    margin-top: 4px;
}

@media (max-width: 1080px) {
    .bee-support-section {
        padding: 0 24px 48px 24px;
    }

    .bssponsor {
        gap: 10px;
    }

    .bss-sponsor {
        gap: 12px;
    }

    .bss-sponsor .bee-main-btn {
        margin-top: 4px;
    }
}



/* MISSION VISION SECTION */

.bee-vision-mission-section {
    padding: 88px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--surface-dark);
}

.bvms {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.bee-vision-left {
    max-width: 440px;
    width: 100%;
}

.bee-vision-left img {
    border-radius: 24px;
    width: 100%;
}

.bee-vision-right,
.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.bee-vision-right {
    max-width: 700px;
    width: 100%;
}

.bvr-head,
.our-vision,
.our-mission {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vision-mission {
    margin-left: 12px;
    padding-left: 40px;
    border-left: 2px solid var(--border-dark);
}

@media (max-width: 1080px) {
    .bee-vision-mission-section {
        padding: 48px 24px;
    }

    .bvms {
        gap: 28px 24px;
    }

    .bee-vision-left img {
        border-radius: 20px;
    }

    .bee-vision-right,
    .vision-mission {
        gap: 20px;
    }

    .bvr-head,
    .our-vision,
    .our-mission {
        gap: 8px;
    }

    .vision-mission {
        margin-left: 8px;
        padding-left: 24px;
    }
}

@media (max-width: 880px) {
    .bvms {
        flex-direction: column;
    }
}





/* CONTACT PAGE */

/* HERO BANNER */

#contact-hero {
	background-image: url('../images/contact\ hero\ bg.png');
}

#contact-hero .bhb {
    margin-top: -20px;
}

@media (max-width: 1080px) {
    #contact-hero .bhb {
        margin-top: 48px;
    }
}



/* QUICK CONTACT INFO */

#bss-contact .bee-step-box {
    width: 33.33%;
}

@media (max-width: 1080px) {
    #bss-contact {
        padding: 48px 24px;
    }

    #bss-contact .bss {
        position: relative;
        margin: 0;
    }
}

@media (max-width: 660px) {
    #bss-contact .bee-step-box {
        width: calc(100% - 48px);
    }
}



/* CONTACT FORM SECTION */

.bee-contact-form-section {
    padding: 176px 40px 88px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bcfs {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 60px;
}

.bee-contact-form-left {
    max-width: 466px;
    width: 100%;
}

.bee-contact-form-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bcfl-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bcf-country {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-dark);
}

.bee-contact-social {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bcs-light,
.bcs-dark {
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
}

.bcs-links img {
    width: 32px;
    height: auto;
}

.bee-contact-form-right {
    max-width: 672px;
    width: 100%;
}

.bee-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bee-send-message-btn {
    border-radius: 8px;
    border: 1px solid var(--border-dark, #433D48);
    background: var(--accent-primary-light, #3F008B);
    padding: 13px 40px;
    color: var(--text-primary-dark, #F3F3F4);
}

@media (max-width: 1080px) {
    .bee-contact-form-section {
        padding: 0 24px 48px 24px;
    }

    .bcfs {
        gap: 32px;
    }

    .bee-contact-form {
        gap: 16px;
    }

    .bee-contact-form-left {
        gap: 12px;
    }

    .bcfl-main {
        gap: 18px;
    }

    .bcf-country {
        gap: 8px;
        padding-bottom: 18px;
    }

    .bee-contact-social {
        gap: 10px;
    }

    .bcs-light,
    .bcs-dark {
        gap: 14px;
    }

    .bcs-links img {
        width: 28px;
        height: auto;
    }

    .bee-contact-form-right {
        max-width: 672px;
        width: 100%;
    }

    .input {
        gap: 10px;
    }

    .bee-send-message-btn {
        padding: 11px 28px;
    }
}

@media (max-width: 720px) {
    .bcfs {
        flex-direction: column;
    }

    .bee-contact-form-left {
        max-width: none;
    }

    .bee-contact-form-right {
        max-width: none;
    }

    .bee-contact-form {
        gap: 16px;
    }
}



/* REGISTER PAGE */

#register-hero {
	background-image: url('../images/register\ hero\ bg.jpg');
}

.bee-register-form-section {
    padding: 88px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brfs {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 88px;
}

.bee-register-form-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.bee-register-left {
    max-width: 600px;
    width: 100%;
}

.bee-register-right {
    max-width: 540px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.bee-register-right hr,
.bpe-intro-right hr {
    width: 120px;
    margin: 0;
    border: 1px solid var(--border-dark);
}

.bee-register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bee-form-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 24px;
}

.bee-form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bee-form-checkboxes input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary-light);
}

.bee-form-checkboxes label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bee-form-checkboxes label {
    text-transform: inherit;
    font-weight: 400;
    font-size: 13px;
}

.bfc-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.bee-form-checkboxes label a {
    color: var(--accent-gold-light);
    text-decoration: underline;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: 20%;
    text-underline-position: from-font;
}

.bee-rules {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 13, 26, 0.75);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.bee-rules.active {
    display: flex;
}

.bee-rules .beerules {
    position: relative;
    background: var(--background-base-dark);
    padding: 36px 40px;
    max-height: 70%;
    max-width: 80%;
    overflow-y: auto;
    border-radius: 24px;
    border: 1px solid var(--border-dark);
}

#close-rules {
    position: absolute;
    top: 0;
    right: 0;
    padding: 32px;
}

#close-rules img {
    width: 40px;
    height: auto;
}

.bee-rules-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bee-regulations ol {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bee-regulations h5 {
    font-size: 18px;
    margin-bottom: 4px;
}


@media (max-width: 1080px) {
    .bee-register-form-section {
        padding: 48px 24px;
    }

    .brfs {
        gap: 48px;
    }

    .bee-register-form-container {
        gap: 24px;
    }

    .bee-register-right {
        gap: 20px;
    }

    .bee-register-form {
        gap: 16px;
    }

    .bee-form-grid {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 16px;
    }

    .bee-form-checkboxes {
        gap: 8px;
    }

    .bee-form-checkboxes input {
        width: 16px;
        height: 16px;
    }

    .bee-form-checkboxes label {
        gap: 6px;
    }

    .bee-form-checkboxes label {
        font-size: 12px;
    }

    .bee-rules .beerules {
        padding: 24px;
        max-height: 70%;
        max-width: 80%;
        border-radius: 16px;
    }

    #close-rules {
        padding: 20px;
    }

    #close-rules img {
        width: 24px;
    }

    .bee-rules-main {
        gap: 16px;
    }

    .bee-regulations ol {
        gap: 12px;
    }

    .bee-regulations h5 {
        font-size: 16px;
        margin-bottom: 4px;
    }
}

@media (max-width: 720px) {
    .bee-register-form-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .bee-register-left {
        max-width: 100%;
    }

    .bee-register-right {
        max-width: 100%;
    }

    .bee-form-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}




/* PAST EDITIONS */

/* PAST EDITIONS SECTION */

#editions-hero {
	background-image: url('../images/past\ editions\ hero\ bg.jpg');
}

.bee-past-editions {
    padding: 88px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bpe {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 88px;
}

.bpe-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.bpe-intro-left {
    max-width: 600px;
    width: 100%;
}

.bpe-intro-right {
    max-width: 540px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.bpe-total-events {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    width: 100%;
}

.bpe-events {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    grid-auto-columns: 100%;
    gap: 24px;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
    overflow-x: scroll;
    padding-bottom: 24px;
    width: 100%;
}

.bpe-event-card {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 40px;
    width: calc(100% - 82px);
    border-radius: 24px;
    border: 1px solid var(--border-dark);
    background: var(--surface-dark);
}

.bpe-event-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
}

.bpe-event-image {
    height: 140px;
    width: auto;
    border-radius: 12px;
}

.bpec-texts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bpe-event-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bpe-events::-webkit-scrollbar {
    height: 10px;
}

.bpe-events::-webkit-scrollbar-track {
    background: var(--background-base-dark);
    border-radius: 4px;
}

.bpe-events::-webkit-scrollbar-thumb {
    background: var(--accent-primary-dark);
    border-radius: 5px;
}

.bpe-events::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary-light);
}

.custom-scroll {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary-dark) var(--background-base-dark);
}

/* .bt-indicators {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 10px;
}

.bt-indicator {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.bt-indicator.active {
    background: #333;
} */

@media (max-width: 1080px) {
    .bee-past-editions {
        padding: 48px 24px;
    }

    .bpe {
        gap: 48px;
    }

    .bpe-intro {
        gap: 24px;
    }

    .bpe-intro-right {
        gap: 20px;
    }

    .bpe-total-events {
        gap: 16px;
    }

    .bpe-events {
        grid-template-rows: repeat(1, auto);
        gap: 20px;
        overflow-x: scroll;
        padding-bottom: 20px;
    }

    .bpe-event-card {
        gap: 24px;
        padding: 20px 24px;
        width: calc(100% - 48px);
        border-radius: 20px;
    }

    .bpe-event-content {
        gap: 14px;
    }

    .bpe-event-image {
        height: 140px;
        width: auto;
        border-radius: 8px;
    }

    .bpec-texts {
        gap: 10px;
    }

    .bpe-event-buttons {
        gap: 10px;
    }
}

@media (max-width: 880px) {
    .bpe-event-card {
        flex-direction: column;
    }

    .bpe-event-image {
        height: auto;
        width: 100%;
        max-width: 400px;
        border-radius: 8px;
    }
}

@media (max-width: 660px) {
    .bpe-intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .bpe-intro-left {
        max-width: 100%;
    }

    .bpe-intro-right {
        max-width: 100%;
    }

    .bpe-event-buttons {
        width: 100%;
    }

    .bpe-event-buttons .bee-send-message-btn,
    .bpe-event-buttons .bee-sub-btn {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}



/* TESTIMONIAL SECTION */

.bee-testimonials {
    padding: 0 40px 88px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btst {
    position: relative;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.btst-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.btst-head p {
    max-width: 880px;
}

.btst-body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.bt-cards {
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--border-dark);
    background: var(--surface-dark);
    display: flex;
    flex-direction: column;
    padding: 32px 48px;
}

.bt-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btc-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bt-card img {
    width: 60px;
    height: auto;
    border-radius: 60px;
    border: 2px solid var(--accent-gold-dark);
}

.btc-texts {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.btc-person {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bt-name {
    color: var(--accent-gold-dark);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.bt-meta {
    color: var(--accent-gold-dark);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

button.bee-right-left {
    position: absolute;
    top: calc(50% - 24px);
    color: var(--text-primary-dark);
    padding: 10px 12px;
    background-color: #9F80C5;
    font-size: 16px;
    border-radius: 4px;
}

.bee-display-left {
    left: 8px;
}

.bee-display-right {
    right: 8px;
}

@media (max-width: 1080px) {
    .bee-testimonials {
        padding: 0 24px 48px 24px;
    }

    .btst {
        gap: 28px;
    }

    .btst-head {
        gap: 10px;
    }

    .btst-body {
        gap: 20px;
    }

    .bt-cards {
        border-radius: 20px;
        padding: 20px 36px;
    }

    .btc-reviewer {
        gap: 8px;
    }

    .bt-card img {
        width: 40px;
    }

    .btc-texts {
        gap: 16px;
    }

    .btc-person {
        gap: 2px;
    }

    .bt-name {
        font-size: 16px;
    }

    .bt-meta {
        font-size: 12px;
    }

    button.bee-right-left {
        top: calc(50% - 24px);
        color: var(--text-primary-dark);
        padding: 4px 6px;
        background-color: #9F80C5;
        font-size: 14px;
        border-radius: 2px;
    }

    .bee-display-left {
        left: 8px;
    }

    .bee-display-right {
        right: 8px;
    }
}

/* @media (max-width: 600px) {

} */


/* ARCHIVES SECTION */

.bee-archives {
    padding: 88px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--surface-dark);
}

.barch {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

.barch-texts {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.barcht-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ba-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    border-left: 1px solid var(--border-dark);
    margin-left: 12px;
    padding-left: 40px;
}

.ba-list-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ba-list-item ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 48px;
}

.ba-list-item ul a {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: 20%;
    text-underline-position: from-font;
}

.ba-image {
    max-width: 540px;
    width: 100%;
}

.ba-image img {
    border-radius: 24px;
}

@media (max-width: 1080px) {
    .bee-archives {
        padding: 48px 24px;
    }

    .barch {
        gap: 40px;
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
    }

    .barch-texts {
        max-width: 100%;
        width: fit-content;
        gap: 20px;
    }

    .barcht-head {
        gap: 10px;
    }

    .ba-list {
        gap: 20px;
        margin-left: 8px;
        padding-left: 24px;
    }

    .ba-list-item {
        gap: 12px;
    }

    .ba-list-item ul {
        gap: 20px 40px;
    }

    .ba-list-item ul a {
        font-size: 14px;
    }

    .ba-image img {
        border-radius: 20px;
    }
}

@media (max-width: 660px) {
    .barch {
        width: 100%;
    }

    .barch-texts {
        max-width: 100%;
        width: 100%;
        gap: 20px;
    }

    .ba-image {
        max-width: 100%;
        width: 100%;
    }

    .ba-image img {
        border-radius: 20px;
        width: 100%;
    }
}


/* LANGUAGE SETTINGS */

button.lang-display {
    padding: 0;
}

.lang-display img {
    width: 32px;
    height: auto;
}

.language-toggle {
    position: relative;
    display: inline-block;
}

.lang-options {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--background-base-dark);
    border: 1px solid var(--border-dark);
    display: none;
    padding: 8px;
    z-index: 100;
}

.lang-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 4px 8px;
    text-transform: unset;
}

.lang-options label input {
    display: none;
}

.lang-options label:hover {
    background: var(--surface-dark);
}

.lang-options.show {
    display: block;
}

@media (max-width: 660px) {
    .lang-options {
        right: unset;
        left: 0;
    }
}






/* === LIGHT MODE OVERRIDE === */


.dark,
.bfs-dark {
    display: none;
}

:root[data-theme="light"] {
    .light {
        display: none;
    }

    .dark {
        display: block;
    }

    .bfs-dark {
        display: flex;
    }

    body {
        background: var(--background-base-light);
    }

    a {
        color: var(--text-primary-light);
    }

    input,
    textarea,
    select {
        color: var(--text-primary-light);
        border: 1px solid var(--border-light);
    }

    input::placeholder,
    textarea::placeholder,
    select::placeholder {
        color: var(--text-secondary-light);
    }

    select {
        background-color: var(--surface-light);
    }

    /* TYPOGRAPHY STYLES */

    h1, h2, h3 {
        color: var(--text-primary-light);
    }

    h4 {
        margin: 0;
        color: var(--text-primary-light);
    }

    h5 {
        color: var(--text-primary-light);
    }

    p {
        color: var(--text-primary-light);
    }

    button a p {
        color: var(--text-primary-dark);
    }

    p.headline {
        color: var(--text-secondary-light);
    }

    span {
        color: var(--text-secondary-light);
    }

    label {
        color: var(--text-primary-light);
    }

    /* HEADER (NAVBAR) */

    .fixed-header {
        background-color: var(--background-base-light);
        border-bottom: var(--border-dark) 1px solid;
    }

    .bee-navbar-center a,
    .bee-navbar-right a {
        color: var(--text-primary-light);
    }

    .bee-register-btn a {
        color: var(--text-primary-dark);
    }

    button.bee-contact-btn {
        border: 1px solid var(--border-dark);
        background-color: transparent;
    }

    /* HERO SECTION */

    .bee-hero-section::before {
        background: rgba(255, 255, 255, 0.75);
    }

    p.bee-hero-subtext {
        color: var(--text-primary-light);
    }

    .bee-main-btn {
        background-color: var(--accent-primary-light);
        border: 1px solid var(--border-dark);
    }

    .bee-sub-btn {
        background-color: var(--surface-light);
        border: 1px solid var(--border-light);
    }

    .bee-main-btn:hover,
    .bee-sub-btn:hover {
        background-color: var(--accent-primary-dark);
        color: var(--text-primary-light);
    }

    .bee-main-btn p {
        color: var(--text-primary-dark);
    }

    .bee-sub-btn p {
        color: var(--text-primary-light);
    }

    .bee-quote-credit {
        background-color: var(--accent-gold-light);
    }

    .bee-quote-credit span {
        color: var(--text-primary-light);
    }

    /* HOW TO PARTICIPATE */

    .bss {
        background-color: var(--surface-light);
        border: 1px solid var(--border-light);
    }

    .bee-step-box {
        border-right: 1px solid var(--border-light);
    }

    .bee-step-box h1 {
        color: var(--text-secondary-dark);
    }

    .bsb-cta p {
        color: var(--accent-gold-light);
    }

    /* IMPACT SECTION */

    .bee-impact-section {
        background: var(--surface-light);
    }

    .bee-impact-stats hr {
        border: 1px solid var(--border-light);
    }

    /* PARTNER CALLOUT */

    .bpb {
        background-color: var(--accent-primary-light);
    }

    .bpb h2,
    .bpb p {
        color: var(--text-primary-dark);
    }

    .bpb .bee-main-btn {
        border: 1px solid var(--border-light);
        color: var(--text-primary-light);
    }

    /* ORGANIZERS */

    .bct-country {
        border: 2px solid var(--border-light);
    }

    .bct-active {
        background-color: var(--accent-gold-light);
    }

    .organizer-titles span {
        color: var(--text-secondary-light);
    }

    .bee-plus-icon {
        background-color: var(--accent-primary-light);
    }

    .bee-plus-icon img {
        max-width: 188px;
        width: 100%;
        height: auto;
    }



    /* BEE FOOTER */

    .bee-footer {
        background-color: var(--surface-light);
        border-top: 1px solid var(--border-light);
    }

    .bee-footer-bottom {
        background-color: var(--background-base-light);
    }

    /* ABOUT PAGE */

    /* HERO BANNER */

    .bee-hero-banner::before {
        background: rgba(255, 255, 255, 0.75);
        z-index: 0;
    }

    /* MISSION VISION SECTION */

    .bee-vision-mission-section {
        background-color: var(--surface-light);
    }

    .vision-mission {
        border-left: 2px solid var(--border-light);
    }

    /* PAST EDITIONS */

    /* PAST EDITIONS SECTION */

    .bpe-event-card {
        border: 1px solid var(--border-light);
        background: var(--surface-light);
    }

    .bpe-events::-webkit-scrollbar-track {
        background: var(--background-base-light);
    }

    .bpe-events::-webkit-scrollbar-thumb {
        background: var(--accent-primary-dark);
    }

    .bpe-events::-webkit-scrollbar-thumb:hover {
        background: var(--accent-primary-light);
    }

    .custom-scroll {
        scrollbar-width: thin;
        scrollbar-color: var(--accent-primary-dark) var(--background-base-light);
    }

    .bee-rules {
        background-color: rgba(20, 13, 26, 0.75);
    }

    .bee-rules .beerules {
        background: var(--background-base-light);
        border: 1px solid var(--border-light);
    }


    /* TESTIMONIAL SECTION */

    .bt-cards {
        border: 1px solid var(--border-light);
        background: var(--surface-light);
    }

    .bt-name {
        color: var(--text-primary-light);
    }

    .bt-meta {
        color: var(--text-primary-light);
    }


    /* ARCHIVES SECTION */

    .bee-archives {
        background-color: var(--surface-light);
    }

    .ba-list {
        border-left: 1px solid var(--border-light);
    }

    @media (max-width: 1080px) {
        /* MOBILE MENU */

        .fixed-header {
            background-color: var(--background-base-light);
            border-bottom: var(--border-light) 1px solid;
        }

        .bee-navbar-center {
            background-color: var(--background-base-light);
        }

        .bee-navbar-right {
            background-color: var(--background-base-light);
        }

        .hamburger span {
            background: var(--text-primary-light);
        }
    }

    /* LANGUAGE SETTINGS */

    .lang-options {
        background: var(--background-base-light);
        border: 1px solid var(--border-light);
    }

    .lang-options label:hover {
        background: var(--surface-light);
    }
}