/* FONTS */
@font-face {
    font-family: "Acrylic Hand Thick";
    src: url("./FONT/AcylicalHand-Thick.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Acrylic Hand Tall";
    src: url("./FONT/AcylicalHand-Tall.ttf") format("truetype");
    font-display: swap;
}

/* VARIABLES */
:root {
    --green: #007A3F;
    --red: #FF3A00;
    --yellow: #FF9000;
    --blue: #0069D4;
    --cream: #FFDDA2;

    --font-heading: "Acrylic Hand Thick", sans-serif;
    --font-subheading: "Acrylic Hand Thick", sans-serif;
    --font-body: "Acrylic Hand Thick", sans-serif;
    --font-number: "Acrylic Hand Thick", sans-serif;

    --hero-size: clamp(5rem, 8vw, 8rem);
    --h1: clamp(4rem, 6vw, 6rem);
    --h2: clamp(3rem, 5vw, 5rem);
    --h3: clamp(2rem, 4vw, 3rem);
    --h4: clamp(1.5rem, 3vw, 2rem);
    --body-lg: 1.3rem;
    --body: 1rem;

    --heading-spacing: -0.08em;
    --sub-spacing: -0.072em;
    --sub-scale: .75;
    --stroke: 2px;

    --container: 1520px;
    --section-padding: 120px;
    --transition: .4s ease;
}

/* RESET */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 0;
    /* Fluid scaling across all desktop sizes:
       Minimum 16px base, scales smoothly to 22px on large desktops (1920px+).
       Maintains identical large, bold component proportions everywhere. */
    font-size: clamp(16px, 1.2vw, 22px);
}

html,
body,
*,
*::before,
*::after,
a,
button,
input,
textarea,
select,
label,
[role="button"] {
    cursor: none !important;
}

body {
    font-family: var(--font-body);
    font-size: var(--body);
    overflow-x: hidden;
    background: var(--green);
    /* cursor: url('./IMG/cursorAsset\ 1.svg'), auto; */
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    pointer-events: none;
    z-index: 999999;
    will-change: transform;
}

.custom-cursor img {
    width: 100%;
    height: 100%;
    display: block;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    background: none;
    border-radius: 22px;
    corner-shape: squircle;
}

/* GLOBAL */
.container {
    width: min(92%, var(--container));
    margin: auto;
}

.section {
    position: relative;
    min-height: 100vh;
    padding: var(--section-padding) 0;
    overflow: hidden;
    background-position: top center;
    background-repeat: repeat;
    background-size: cover;
    background-image: url("./IMG/Vector.svg");
}


/* BACKGROUND COLORS */
.bg-red {
    background-color: var(--red);
}

.bg-green {
    background-color: var(--green);
}

.bg-yellow {
    background-color: var(--yellow);
}

.bg-blue {
    background-color: var(--blue);
}

.bg-cream {
    background-color: var(--cream);
}

/* TYPOGRAPHY */
.heading {
    font-family: var(--font-heading);
    font-size: var(--h1);
    letter-spacing: var(--heading-spacing);
    line-height: 1;
}

.number {
    font-family: var(--font-number);
}

.mobile-break {
    display: inline;
}

.text-center {
    text-align: center;
}

/* HEADER */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 130px;
    flex-shrink: 0;
}

.logo picture,
.logo img {
    width: 100%;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--yellow);
    letter-spacing: var(--heading-spacing);
    transition: .3s;
}

.nav-links a:hover {
    transform: translateY(-3px);
}

.hamburger {
    display: none;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
}

.hamburger img {
    width: 100%;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    background: var(--green);
    transform: translateX(-100%);
    transition: .45s ease;
    z-index: 99999;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    height: 64px;
    background: var(--yellow);
    background-image: url("./IMG/Vector.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    border: 4px solid var(--cream);
    flex-shrink: 0;
}

.mobile-menu-header .logo {
    width: 110px;
}

.close-btn {
    width: 32px;
    height: 32px;
}

.close-btn img {
    width: 100%;
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--cream);
    border-right: 4px solid var(--cream);
}

.mobile-nav-links li {
    height: 66px;
    background: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 4px solid var(--cream);
    flex-shrink: 0;
}

.mobile-nav-links li:last-child {
    border-bottom: 4px solid var(--cream);
}

.mobile-link {
    font-family: var(--font-heading);
    color: var(--yellow);
    font-size: 2.6rem;
    letter-spacing: var(--heading-spacing);
    line-height: 1;
}

.mobile-bottom {
    flex: 1;
    background: var(--yellow);
    background-image: url("./IMG/Vector.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-left: 4px solid var(--cream);
    border-right: 4px solid var(--cream);
    border-bottom: 4px solid var(--cream);
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.hero-video-desktop {
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center bottom;
}

.hero-video-mobile {
    display: none;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center bottom;
}

/* Hero images — shared layout */
.hero-img-desktop,
.hero-img-mobile {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

.hero-img-mobile {
    display: none;
}

/* Responsive Mobile 9:16 Hero Animation Fit */
@media (max-width: 768px) {
    .hero-image-wrapper {
        position: absolute !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        transform: none !important;
        max-width: none !important;
        z-index: 1 !important;
    }

    .hero-video-desktop {
        display: none !important;
    }

    .hero-video-mobile {
        display: block !important;
        width: 100vw !important;
        height: 100vh !important;
        object-fit: cover !important;
        object-position: center bottom !important;
    }
}

.btn-listen {
    display: block;
    width: fit-content;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: var(--heading-spacing);
    color: var(--red);
    background: var(--yellow);
    border: 4px solid var(--red);
    border-radius: 22px;
    corner-shape: squircle;
    padding: 15px 32px 10px;
    line-height: 1;
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
    text-align: center;
    white-space: nowrap;
}

/* MARQUEE */
.hero-ticker,
.section-ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 12px 16px 8px;
}


.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.marquee-item {
    flex-shrink: 0;
    white-space: nowrap;
    padding-right: 0;
}

.hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: var(--yellow);
    border: 4px solid var(--green);
    display: flex;
    align-items: center;
    z-index: 5;
}

.hero-ticker .marquee-item,
.hero-ticker .marquee-clone span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: var(--heading-spacing);
    color: var(--green);
    white-space: nowrap;
}

@keyframes marquee-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ABOUT SECTION */
.about-section {
    padding: 0;
}

.about-grid {
    display: flex;
    min-height: 100vh;
}

.about-left,
.about-right {
    width: 50%;
    display: flex;
}

.about-left {
    align-items: center;
    justify-content: center;
    padding: 6vh 4vw;
}

.about-content {
    width: clamp(320px, 36vw, 680px);
    max-width: 90%;
}

.about-logo {
    width: clamp(240px, 28vw, 520px);
    margin-bottom: clamp(2.5rem, 5vh, 5rem);
    display: block;
}

.about-text {
    font-family: var(--font-body);
    color: var(--cream);
    font-size: clamp(1rem, 1.1vw, 1.35rem);
    line-height: 1.5;
    text-align: justify;
}

.about-right {
    position: relative;
}

.about-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TOUR SECTION */
.tour-section {
    min-height: auto;
    padding: 90px 0 60px;
}

.tour-container {
    max-width: 1000px;
    width: min(92%, 1000px);
    margin: 0 auto;
    padding: 0 16px;
}

.tour-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.tour-item {
    display: flex;
    width: 100%;
    border: 4px solid var(--cream);
    border-radius: 25px;
    corner-shape: squircle;
    background: #000;
    box-shadow: 0 8px 0 #000;
    overflow: hidden;
}

.tour-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 120px;
    border-right: 4px solid var(--cream);
    padding: 20px 20px 12px 20px;
    color: var(--cream);
    font-family: var(--font-heading);
    flex-shrink: 0;
    /* border-radius: 8px 0 0 8px; */
}

.tour-day {
    font-family: var(--font-subheading);
    font-size: 2.5rem;
    line-height: 1;
}

.tour-day-tba {
    font-size: 1.6rem;
    letter-spacing: var(--sub-spacing);
}

.tour-month {
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 4px;
}

.tour-location {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 20px 12px 20px;
    color: var(--cream);
    border-right: 4px solid var(--cream);
}

.tour-city {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: var(--heading-spacing);
}

.tour-venue {
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    letter-spacing: var(--sub-spacing);
    margin-top: 8px;
    display: inline-block;
    transform-origin: left top;
}

.tour-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 220px;
    color: var(--cream);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: var(--heading-spacing);
    line-height: 1;
    text-align: center;
    transition: 0.2s;
    flex-shrink: 0;
    border-radius: 0 22px 22px 0;
    corner-shape: squircle;
    padding: 15px 5px 5px 5px;
}

.tour-btn:hover {
    background: var(--yellow);
    color: var(--red);
}

.mobile-text {
    display: none;
}

.desktop-text {
    display: block;
}

/* MORE SHOWS BUTTON AT BOTTOM OF TOUR SECTION */
.more-shows-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 36px;
    width: 100%;
}

.btn-more-shows {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    border: 4px solid var(--cream);
    box-shadow: 0 8px 0 #000 !important;
    color: var(--cream);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: var(--heading-spacing);
    padding: 14px 32px 8px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 22px;
    corner-shape: squircle;
}

.btn-more-shows:hover {
    background: var(--yellow);
    color: var(--red);
    /* transform: translateY(-2px); */
}

/* SECTION TICKERS */
.section-ticker {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border-width: 4px;
    border-style: solid;
}

.section-ticker .marquee-item,
.section-ticker .marquee-clone span {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    letter-spacing: var(--heading-spacing);
    white-space: nowrap;
}

.tour-ticker {
    background: var(--blue);
    border-color: var(--yellow);
}

.merch-ticker {
    background: var(--yellow);
    border-color: var(--blue);
}

.media-ticker {
    background: var(--yellow);
    border-color: var(--red);
}

.tour-ticker .marquee-item,
.tour-ticker .marquee-clone span {
    color: var(--yellow);
}

.merch-ticker .marquee-item,
.merch-ticker .marquee-clone span {
    color: var(--blue);
}

.media-ticker .marquee-item,
.media-ticker .marquee-clone span {
    color: var(--red);
}

.ticker-top {
    position: absolute;
    top: 0;
    left: 0;
}

/* MERCH SECTION */
#merch {
    display: none !important;
    min-height: auto;
    padding: 95px 0 60px;
}

.merch-container {
    max-width: 1240px;
    width: min(92%, 1240px);
    margin: 0 auto;
    padding: 0 16px;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    padding: 0;
}

.merch-card {
    background: var(--yellow);
    border: 3px solid var(--cream);
    border-radius: 22px;
    corner-shape: squircle;
    box-shadow: 3px 5px 0 #000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.merch-header {
    background: var(--green);
    color: var(--yellow);
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.2vw, 1.35rem);
    white-space: nowrap;
    letter-spacing: var(--heading-spacing);
    border-radius: 0 0 22px 22px;
    corner-shape: squircle;
    padding: 14px 10px 10px;
    text-align: center;
}

/* Shared card footer base */
.merch-footer,
.media-footer {
    background: var(--green);
    color: var(--yellow);
    font-family: var(--font-heading);
    letter-spacing: var(--heading-spacing);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.merch-footer {
    font-size: clamp(1.05rem, 1.2vw, 1.35rem);
    border-radius: 22px 22px 0 0;
    corner-shape: squircle;
    padding: 15px 16px 8px;
}

.merch-footer:hover {
    background: var(--red);
}

.media-footer {
    font-size: 1.5rem;
    padding: 15px 16px 8px;
    border-radius: 25px 25px 0 0;
    corner-shape: squircle;
    margin-top: -16px;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.media-footer span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-footer:hover {
    background: var(--red);
    color: var(--yellow);
}


.merch-img {
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.merch-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* transform: scale(0.9); */
}

.merch-footer img,
.media-footer img {
    width: 32px;
    height: 32px;
}

/* MEDIA SECTION */
#media {
    min-height: auto;
    padding: 95px 0 60px;
}

.media-container {
    max-width: 1240px;
    width: min(92%, 1240px);
    margin: 0 auto;
    padding: 0 16px;
}

.media-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 0;
    width: 100%;
}

.media-card {
    width: calc(50% - 10px);
    background: var(--yellow);
    border: 3px solid var(--cream);
    border-radius: 22px;
    corner-shape: squircle;
    box-shadow: 3px 5px 0 #000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.media-img {
    display: flex;
    overflow: hidden;
    /* skeleton background while image loads */
    background: linear-gradient(90deg, #c8c8c8 25%, #e0e0e0 50%, #c8c8c8 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.4s ease infinite;
    min-height: 160px;
}

@keyframes skeleton-pulse {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Once the image loads, stop skeleton on parent */
.media-img.loaded {
    animation: none;
    background: none;
}

.media-img picture {
    display: block;
    width: 100%;
}

.media-img img,
.media-img picture img {
    width: 100%;
    aspect-ratio: 1.85 / 1;
    object-fit: cover;
    object-position: top;
    display: block;
    transform: scale(1.05);
    /* smooth fade-in when image arrives */
    opacity: 0;
    transition: opacity 0.4s ease;
}

.media-img img.img-loaded,
.media-img picture img.img-loaded {
    opacity: 1;
}

/* FOOTER */
#archive {
    min-height: auto !important;
    padding: 0 !important;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 1rem 1rem;
    min-height: auto;
}

.footer-sticker-wrapper {
    width: 100%;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
}

.footer-sticker-img {
    width: 100%;
    height: auto;
    display: block;
}

.social-icons {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    transition: .3s;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.social-icons img {
    width: 100%;
}

.footer-text,
.footer-subtext {
    font-family: var(--font-subheading);
    color: var(--yellow);
    font-size: 0.55rem;
    letter-spacing: var(--sub-spacing);
    text-align: center;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.footer-subtext a {
    color: var(--yellow);
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-subtext a:hover {
    color: var(--cream);
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .nav-links {
        gap: 40px;
    }

    .nav-links a {
        font-size: 1.4rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 28px;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .merch-card {
        border-radius: 18px;
        corner-shape: squircle;
    }

    .section {
        padding: 80px 0;
    }

    .about-section {
        padding: 0;
    }

    .about-grid {
        flex-direction: column-reverse;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-right {
        height: 50vh;
        min-height: 400px;
    }

    .about-img {
        object-position: top;
    }

    .about-left {
        padding: 40px 20px;
    }

    .about-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .about-text {
        font-size: 0.85rem;
        text-align: center;
    }

    .heading {
        font-size: 3rem;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .btn-listen {
        font-size: 1.3rem;
        padding: 8px 24px;
        border-radius: 18px;
        corner-shape: squircle;
    }

    .hero-ticker span {
        font-size: 1.5rem;
    }

    .footer-text {
        font-size: 0.8rem;
        max-width: 100%;
    }

    .mobile-break {
        display: block;
    }

    .tour-item {
        flex-direction: column;
        border-radius: 18px;
        overflow: hidden;
    }

    .tour-date {
        width: 100%;
        border-right: none;
        border-bottom: 4px solid var(--cream);
        flex-direction: row;
        gap: 10px;
        padding: 14px 20px 10px 20px;
        border-radius: 0;
    }

    .tour-day {
        font-size: 1.4rem;
    }

    .tour-month {
        font-size: 1.4rem;
        margin-top: 0;
    }

    .tour-location {
        border-right: none;
        border-bottom: 4px solid var(--cream);
        text-align: center;
        padding: 14px 20px 10px 20px;
        border-radius: 0;
    }

    .tour-city {
        font-size: 1.8rem;
    }

    .tour-venue {
        font-size: 0.75rem;
    }

    .tour-btn {
        width: 100%;
        padding: 14px 20px 10px 20px;
        font-size: 1.5rem;
        border-radius: 0 0 18px 18px;
        corner-shape: squircle;
    }

    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: block;
    }

    .tour-section,
    #merch,
    #media {
        min-height: auto;
        padding: 80px 20px 50px 20px;
    }

    .tour-container,
    .merch-container,
    .media-container {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .tour-list {
        padding: 0;
    }

    .merch-card {
        border-radius: 18px;
        corner-shape: squircle;
    }

    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        gap: 12px;
    }

    .merch-header {
        font-size: clamp(0.85rem, 3.2vw, 1.15rem);
        white-space: nowrap;
        border-radius: 0 0 18px 18px;
        corner-shape: squircle;
        padding: 10px 6px 8px;
    }

    .merch-footer {
        font-size: clamp(0.85rem, 3.2vw, 1.15rem);
        border-radius: 18px 18px 0 0;
        corner-shape: squircle;
        padding: 10px 8px 6px;
    }

    .merch-footer img {
        width: 22px;
        height: 22px;
    }

    .merch-img {
        padding: 6px 8px;
    }

    .media-card {
        width: 100%;
        border-radius: 18px;
        corner-shape: squircle;
    }

    .media-grid {
        padding: 0;
        gap: 16px;
    }

    .media-footer {
        font-size: 1.05rem;
        margin-top: -14px;
        border-radius: 18px 18px 0 0;
    }

    .media-footer .music-word {
        display: none;
    }

    .media-footer img {
        display: block;
        width: 24px;
        height: 24px;
    }

    .footer-sticker-wrapper {
        padding: 1rem;
    }

    .form-group input {
        border-radius: 18px;
    }

    .btn-form-submit {
        border-radius: 18px;
    }
}

@media (max-width: 640px) {

    /* Default: full yellow bar at top */
    .header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: transparent;
        padding: 0;
        transition: none;
    }

    .header .container {
        width: 100%;
        padding: 0;
    }

    /* Default navbar: full yellow bar with inner cream border */
    .header .navbar {
        height: 64px;
        padding: 0 14px;
        background: var(--yellow);
        background-image: url("./IMG/Vector.svg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-bottom: 4px solid var(--cream);
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 0;
    }

    /* Sticky state: floating card with margins and border-radius */
    .header.scrolled {
        position: fixed;
        top: 8px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        background: transparent;
        animation: mobileNavFloat 0.3s ease-out;
    }

    .header.scrolled .navbar {
        height: 56px;
        border-bottom: none;
        border: 4px solid var(--cream);
        border-radius: 18px;
        corner-shape: squircle;
        /* box-shadow: 3px 5px 0 #000; */
    }

    @keyframes mobileNavFloat {
        from {
            transform: translateY(-120%);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .container {
        width: 100%;
        padding: 0;
    }

    .hero {
        min-height: 100vh;
        padding-top: 0;
    }

    .hero-image-wrapper {
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: none;
        width: 92%;
        max-width: 480px;
        height: calc(100vh - 120px);
        bottom: 0;
        justify-content: center;
        align-items: flex-end;
    }

    .hero-img-desktop {
        display: none;
    }

    .hero-img-mobile {
        display: block;
        height: 30rem;
    }

    .btn-listen {
        font-size: .8rem;
        padding: 10px 20px 8px;
        border-width: 3px;
        border-radius: 18px;
        corner-shape: squircle;
        bottom: 70px;
    }

    .logo {
        width: 140px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-ticker {
        height: 42px;
    }

    .hero-ticker span {
        font-size: 1.5rem;
    }

    .mobile-menu-header {
        border: 5px solid var(--cream);
        border-bottom: none;
        background-size: cover;
    }

    .mobile-menu-header .logo {
        width: 140px;
    }

    .close-btn {
        width: 34px;
        height: 34px;
    }

    .mobile-nav-links li {
        height: 72px;
        border-top: 5px solid var(--cream);
    }

    .mobile-nav-links li:last-child {
        border-bottom: 5px solid var(--cream);
    }

    .mobile-link {
        font-size: 2rem;
    }

    .mobile-bottom {
        min-height: 160px;
        background-size: cover;
        border-left: 5px solid var(--cream);
        border-right: 5px solid var(--cream);
        border-bottom: 5px solid var(--cream);
    }
}

/* LOADING SCREEN */
#loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--green);
    background-image: url("./IMG/Vector.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: opacity 0.6s ease;
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-bars-wrapper {
    width: 380px;
    max-width: 85vw;
    display: flex;
    flex-direction: column;
}

@media (max-width: 640px) {
    .loading-bars-wrapper {
        width: 260px;
    }
}

.progress-bar-bg {
    width: 100%;
    height: 14px;
    background: var(--red);
    border: 3px solid #000;
    border-radius: 99px;
    position: relative;
    overflow: visible;
    display: flex;
}

#progress-fill-1 {
    height: 100%;
    width: 0%;
    background: var(--yellow);
    border-radius: 99px 0 0 99px;
    transition: width 0.4s ease-out;
}

.progress-cursor {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 38px;
    z-index: 10;
    transition: left 0.4s ease-out;

}

/* ── UPDATES FORM SECTION ─────────────────────────── */
.form-section {
    padding: 60px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
}

.form-container {
    width: min(80%, var(--container));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ff8500;
    text-align: center;
    line-height: 1.5;
    letter-spacing: var(--heading-spacing);
    margin-bottom: 3rem;
    text-transform: uppercase;
    max-width: 40vw;

}

.yoki-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(700px, 100%);
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ff8500;
    letter-spacing: var(--heading-spacing);
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    background-color: #ff8500;
    border: 3px solid var(--cream);
    border-radius: 22px;
    corner-shape: squircle;

    padding: 10px 16px 8px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--cream);
    outline: none;
}

.form-group input:focus {
    border-color: #ffffff;
    transform: translateY(-1px);
}

.birthdate-input-container {
    position: relative;
    width: 100%;
}

.form-birthdate-input {
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFDDA2'%3e%3cpath d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 44px !important;
}

.native-date-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

/* T&C and Privacy Checkbox Styles - Small text */
.form-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 2px 0;
    width: 100%;
}

.terms-checkbox-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.5rem;
    letter-spacing: var(--heading-spacing);
    text-transform: uppercase;
    user-select: none;
    width: 100%;
    line-height: 1.3;
}

.terms-text {
    white-space: normal;
    word-break: break-word;
    font-size: 0.8rem;
}

.terms-checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    background-color: var(--red);
    border: 2px solid var(--cream);
    border-radius: 4px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    position: relative;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.terms-checkbox-label input[type="checkbox"]:checked {
    background-color: var(--red);
    border-color: var(--cream);
}

.terms-checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid var(--yellow);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.terms-link {
    color: var(--cream);
    text-decoration: underline;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Form Validation Styles - Site colors only */
.field-error {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    color: var(--yellow);
    background: var(--red);
    border: 1.5px solid var(--cream);
    padding: 3px 9px 2px;
    border-radius: 8px;
    corner-shape: squircle;
    display: none;
    margin-top: 4px;
    letter-spacing: normal;
    text-transform: uppercase;
    width: fit-content;
}

.form-group.has-error input {
    border-color: var(--red) !important;
    background-color: #ff3300 !important;
    color: var(--yellow) !important;
}

.form-group.has-error .field-error {
    display: inline-block;
}

/* Disable Custom Cursor on Touch & Mobile Screens */
@media (max-width: 768px),
(pointer: coarse) {
    .custom-cursor {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body,
    a,
    button,
    input,
    textarea,
    select {
        cursor: auto !important;
    }
}

.form-submit-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
}

.btn-form-submit {
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    margin: 0;
    height: 56px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #ff8500;
    background-color: #ff3300;
    border: 3px solid var(--cream);
    corner-shape: squircle;
    border-radius: 22px;
    padding: 15px 16px 8px;
    cursor: pointer;
    letter-spacing: var(--heading-spacing);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-form-submit:hover {
    background-color: var(--yellow);
    color: #ff3300;
    transform: translateY(-2px);
}

.btn-form-submit:active {
    transform: translateY(0);
}

.form-note {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #ff8500;
    text-align: center;
    margin-top: 36px;
    letter-spacing: var(--heading-spacing);
    line-height: 1.5;
    max-width: 600px;
    text-transform: uppercase;
}

/* Mobile Form Responsiveness */
@media (max-width: 640px) {
    .form-section {
        padding: 40px 0 15px;
    }

    /* .form-container {
        padding: 0 1.25rem;
    } */

    .form-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
        max-width: 90vw;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .form-group label {
        font-size: 1.05rem;
    }

    .form-group input {
        font-size: 1rem;
        border-radius: 18px;
        corner-shape: squircle;
    }

    .terms-checkbox-label {
        font-size: 0.8rem;
        gap: 6px;
    }

    .terms-checkbox-label input[type="checkbox"] {
        width: 15px;
        height: 15px;
        min-width: 15px;
    }

    .terms-checkbox-label input[type="checkbox"]:checked::after {
        left: 3px;
        top: 0px;
        width: 4px;
        height: 7px;
        border-width: 0 2px 2px 0;
    }

    .form-submit-group {
        margin-top: 6px;
    }

    .btn-form-submit {
        width: 100%;
        min-width: 100%;
        box-sizing: border-box;
        height: 48px;
        font-size: 1.05rem;
        padding: 11px 16px 8px;
        border-radius: 18px;
        corner-shape: squircle;
    }

    .form-note {
        font-size: 0.85rem;
        margin-top: 18px;
    }

    .footer-container {
        padding: 15px 1rem 1rem;
    }

    .footer-sticker-wrapper {
        margin: 0 auto 20px;
        padding: 0.5rem;
    }

    .social-icons {
        margin-bottom: 16px;
    }
}

/* ── CLIENT-SIDE POPUP MODAL ──────────────────────── */
.form-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.form-popup-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.popup-content {
    position: relative;
    z-index: 2;
    background: var(--yellow);
    border: 3px solid var(--cream);
    border-radius: 22px;
    corner-shape: squircle;
    box-shadow: 4px 6px 0 #000;
    padding: 22px 20px 18px;
    max-width: 330px;
    width: 85%;
    text-align: center;
    transform: scale(0.85);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-popup-modal.open .popup-content {
    transform: scale(1);
}

.popup-close-btn {
    position: absolute;
    top: 6px;
    right: 12px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--green);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.popup-icon {
    width: 38px;
    height: 38px;
    background: var(--green);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 auto 10px;
    border: 2px solid var(--cream);
}

.popup-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--green);
    margin-bottom: 6px;
    letter-spacing: var(--heading-spacing);
}

.popup-message {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--red);
    margin-bottom: 16px;
    line-height: 1.3;
}

.btn-popup-ok {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--yellow);
    background: var(--green);
    border: 2px solid var(--cream);
    border-radius: 22px;
    corner-shape: squircle;
    padding: 7px 22px;
    cursor: pointer;
    box-shadow: 2px 3px 0 #000;
    transition: var(--transition);
}

.btn-popup-ok:hover {
    background: var(--red);
    color: var(--yellow);
}