.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}


.bg-black-alpha {
    background-color: rgba(var(--bs-black-rgb), 0.6) !important;
}
#newsSection, #promotionSection {
    scroll-margin-top: 60px !important;
}

.nav-pills .nav-link {
    color: black !important;
}

.nav-pills .nav-link.active {
    color: black !important;
    background-color: rgb(246, 210, 87) !important;
    border: solid 1px #1c1c1c;
    box-shadow: var(--bs-box-shadow) !important;
}

.accordion-button:not(.collapsed) {
    color: #000000 !important;
    background: linear-gradient(#B88A44 0%, #f6d257 50%, #B88A44 100% );  !important;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 #B88A44 !important;
}

.text-gold {
    color: #B88A44 !important;
}

.bg-gold {
    background: linear-gradient(#B88A44 0%, #f6d257 50%, #B88A44 100% );  !important;
}

.bg-gold:hover {
    opacity: 0.9;
}

.border-gold {
    border-color: #B88A44 !important;
}

/* Hide the popup by default and stretch to cover the entire screen */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dims the background */
    z-index: 9999; /* Ensures it sits on top of all other elements */
    justify-content: center;
    align-items: center;
}

/* The actual box holding the video */
.popup-content {
    position: relative;
    width: 90%;
    max-width: 800px; /* Maximum width on desktop */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

/* Make the video fill its container responsively */
.popup-content video {
    width: 100%;
    display: block;
}

/* Style the close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 10000;
    transition: background 0.2s;
}

.close-btn:hover {
    background: rgba(255, 0, 0, 0.8); /* Turns red on hover */
}

body {
    /* Apply Poppins with clean geometric fallback fonts */
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Optimal body copy sizing and readability rules */
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #333333;

    /* Ensures smooth font rendering on modern screens */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}