@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY BG */
body {
    font-family: 'Arial', sans-serif;
    background-color: #02152D;
    color: #E6EEFF;
    line-height: 1.5;
    background-image:
        radial-gradient(circle at 8% 15%,  rgba(90,141,255,0.35) 0, rgba(90,141,255,0.35) 130px, transparent 131px),
        radial-gradient(circle at 90% 40%, rgba(120,170,255,0.28) 0, rgba(120,170,255,0.28) 120px, transparent 121px),
        radial-gradient(circle at 20% 80%, rgba(80,160,240,0.25) 0, rgba(80,160,240,0.25) 110px, transparent 111px);
    background-attachment: fixed;
}

/* LOGO */
.logo {
    flex: 0 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    width: 90px;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .main-logo {
        width: 70px;
    }
}

/* HEADER / NAV */
.header {
    padding: 22px 80px 10px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-left,
.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
    gap: 30px;
}

.nav-right {
    justify-content: flex-end;
    gap: 30px;
}

.nav-left a,
.nav-right a {
    text-decoration: none;
    color: #05264D;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #F9C529;
    margin: 0 auto;
}

.logo p {
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: #05264D;
}

/* =======================
   BANNER / CAROUSEL
   ======================= */

.banner-carousel {
    padding: 0;
    margin: 0;
}

.banner-carousel .carousel-item {
    height: auto;              /* no fixed height – prevents white gap */
}

.banner-carousel .banner-img {
    width: 100%;
    height: auto;              /* keeps aspect ratio */
    object-fit: cover;
    display: block;
}

.banner-carousel .carousel-indicators [data-bs-target] {
    background-color: #ffffff;
    opacity: 0.75;
}

.banner-carousel .carousel-indicators .active {
    opacity: 1;
}

.banner-carousel .carousel-control-prev-icon,
.banner-carousel .carousel-control-next-icon {
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.6)) invert(1);
}

/* HERO */
.hero {
    text-align: center;
    padding: 45px 12% 60px;
}

.tagline {
    font-style: italic;
    color: #F9A432;
    font-weight: 600;
    margin-bottom: 10px;
}

.title {
    font-size: 60px;
    margin: 15px 0 18px;
    color: #0050A4;
    font-weight: 900;
}

.subtext {
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto 40px;
    color: #23456A;
}

.hero-item {
    flex: 1;
    text-align: center;
}

.hero-img-title {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #003A75;
}

.hero-img-row {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 26px;
}

.hero-img {
    flex: 1;
    height: 270px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    padding: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-img-1 { background-color: #E29B1E; }
.hero-img-2 { background-color: #E29B1E; }
.hero-img-3 { background-color: #F3AE26; }
.hero-img-4 { background-color: #E29B1E; }

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* GRID SECTIONS */
.grid {
    padding: 70px 12% 80px;
}

.grid-group {
    margin-bottom: 70px;
}

.grid-section-title {
    font-size: 28px;
    color: #00468E;
    margin-bottom: 18px;
}

.grid-section-text {
    max-width: 640px;
    font-size: 15px;
    color: #455A7A;
    margin-bottom: 30px;
}

.grid-row-two {
    display: flex;
    gap: 60px;
}

.grid-row-two .item {
    flex: 1;
}

.item h3 {
    margin-top: 18px;
    color: #00468E;
    font-size: 18px;
}

.item p {
    color: #455A7A;
    font-size: 14px;
    margin-top: 10px;
}

/* ZIGZAG IMAGE BOXES */
.zigzag {
    width: 100%;
    max-width: 430px;
    aspect-ratio: 1;
    background: #FBE7A5;
    position: relative;
    clip-path: polygon(
        12% 0, 88% 0,
        100% 12%, 100% 88%,
        88% 100%, 12% 100%,
        0 88%, 0 12%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.img-box {
    width: 70%;
    height: auto;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
}

.img-box img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.img-1,
.img-2,
.img-3,
.img-4,
.img-5,
.img-6 {
    background: transparent !important;
}

/* GUMMIES BANNER */
.gummies-banner {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.gummies-banner .gummies-zigzag {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 3 / 1;
}

.gummies-banner .gummies-img-box {
    width: 75%;
    height: 70%;
}

/* CTA SECTION */
.cta {
    background: #03224D;
    color: #EAF2FF;
    padding: 80px 12%;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.cta h2 {
    font-size: 40px;
    line-height: 1.15;
}

.cta-text {
    max-width: 520px;
    margin-top: 22px;
    font-size: 15px;
    color: #D2E1FF;
}

.cta-btn {
    margin-top: 32px;
    background: #F9C529;
    padding: 14px 34px;
    border-radius: 999px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    color: #03224D;
}

.footer-img {
    width: 180px;
    height: 320px;
    background: #FBE18A;
    position: absolute;
    right: 11%;
    top: 70px;
    border-radius: 10px;
    object-fit: contain;
    overflow: hidden;
}

/* FOOTER */
.footer {
    background: #02152D;
    color: #E6EEFF;
    text-align: center;
    padding: 20px;
    font-size: 13px;
}

/* =======================
   992px BREAKPOINT
   ======================= */
@media (max-width: 992px) {

    .header {
        padding: 20px 40px 10px;
    }

    .hero {
        padding: 45px 8% 55px;
    }

    .title {
        font-size: 46px;
    }

    .hero-img-row {
        flex-wrap: wrap;
    }

    .hero-img {
        height: 230px;
    }

    .grid {
        padding: 55px 8% 70px;
    }
}

/* =======================
   768px BREAKPOINT
   ======================= */
@media (max-width: 768px) {

    .header {
        padding: 18px 18px 10px;
    }

    .nav {
        flex-direction: column;
        gap: 8px;
    }

    .nav-left,
    .nav-right {
        justify-content: center;
        gap: 18px;
    }

    .hero {
        padding: 35px 6% 45px;
    }

    .title {
        font-size: 36px;
    }

    .hero-img-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        justify-items: center;
    }

    .hero-img {
        flex: none;
        width: 100%;
        max-width: 210px;
        height: 220px;
    }

    .hero-img-title {
        font-size: 13px;
        line-height: 1.25;
        margin-top: 6px;
    }

    .grid {
        padding: 50px 6% 60px;
    }

    .grid-row-two {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        justify-items: center;
    }

    .grid-row-two .item {
        flex: none;
        width: 100%;
    }

    .zigzag {
        max-width: 210px;
    }

    .gummies-banner .gummies-zigzag {
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }

    .cta {
        text-align: center;
        padding: 60px 6% 70px;
    }

    .cta h2 {
        font-size: 30px;
    }

    .cta-text {
        margin: 20px auto 0;
    }

    .footer-img {
        position: static;
        margin: 30px auto 0;
    }
}

/* =======================
   576px BREAKPOINT
   ======================= */
@media (max-width: 576px) {

    .title {
        font-size: 30px;
    }

    .hero-img {
        height: 210px;
    }

    .cta h2 {
        font-size: 26px;
    }
}

.age-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate-overlay.hidden {
    display: none;
}

.age-gate-modal {
    background: #041326;
    border-radius: 18px;
    padding: 28px 24px 22px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(249, 197, 41, 0.3);
}

.age-gate-modal h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #F9C529;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.age-gate-modal p {
    font-size: 14px;
    color: #E6EEFF;
    margin-bottom: 20px;
    line-height: 1.5;
}

.age-gate-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.age-btn {
    flex: 1;
    padding: 10px 0;
    border-radius: 999px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.age-btn-yes {
    background: #F9C529;
    color: #03224D;
    box-shadow: 0 6px 14px rgba(249, 197, 41, 0.4);
}

.age-btn-no {
    background: transparent;
    color: #E6EEFF;
    border: 1px solid rgba(230, 238, 255, 0.4);
}

.age-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

/* Blur site when popup is active */
#site-content.blurred-bg {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

/* Small screens tweak */
@media (max-width: 480px) {
    .age-gate-modal {
        padding: 22px 18px 18px;
    }

    .age-gate-modal h2 {
        font-size: 20px;
    }

    .age-gate-modal p {
        font-size: 13px;
    }
}

