/* =====================================================
   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;
}

@font-face {
    font-family: "Afroyoki Numbers";
    src: url("./FONT/AfroyokiNumbers-Regular.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: "Afroyoki Numbers", 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;
    --small: .9rem;

    --heading-spacing: -0.08em;
    --sub-spacing: -0.072em;

    --stroke: 2px;
    --stroke-color: var(--black);
    --sub-scale: .75;

    --container: 1440px;
    --section-padding: 120px;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 999px;

    --transition: .4s ease;
    --shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--body);
    color: var(--white);
    overflow-x: hidden;
    background: var(--red);
}

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;
}

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

.section {
    position: relative;
    min-height: 100vh;
    padding: var(--section-padding) 0;
    overflow: hidden;
    background-position: center;
    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
===================================================== */
.hero-title {
    font-family: var(--font-heading);
    font-size: var(--hero-size);
    letter-spacing: var(--heading-spacing);
    line-height: .9;
}

.heading {
    font-family: var(--font-heading);
    font-size: var(--h1);
    letter-spacing: var(--heading-spacing);
    line-height: .9;
}

.sub-heading {
    font-family: var(--font-subheading);
    font-size: var(--h3);
    letter-spacing: var(--sub-spacing);
    transform: scaleY(var(--sub-scale));
    transform-origin: left center;
    -webkit-text-stroke: var(--stroke) var(--stroke-color);
    paint-order: stroke fill;
}

.body {
    font-family: var(--font-body);
    font-size: var(--body-lg);
    line-height: 1.6;
}

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

/* =====================================================
   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: 60px;
    flex-shrink: 0;
}

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

/* Desktop nav */
.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 — hidden on desktop */
.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: 650px;
    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: 34px;
}

.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: 850px;
    background-position: center;
    border-left: 4px solid var(--cream);
    border-right: 4px solid var(--cream);
    border-bottom: 4px solid var(--cream);
}

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

.hero-image-wrapper {
    position: absolute;
    bottom: 0;
    /* Touch the absolute bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    height: calc(100vh - 150px);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-img-desktop {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
}

.hero-img-mobile {
    display: none;
    width: 90%;
    height: 80%;
    object-fit: contain;
    object-position: bottom;
}

/* LISTEN NOW button — sits at bottom, horizontally centered */
.btn-listen {
    display: block;
    width: fit-content;
    margin: 0 auto 0;
    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);
    box-shadow: 0 0 0 4px var(--yellow);
    padding: 15px 32px 10px 32px;
    line-height: 1;
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

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

.marquee-content {
    display: flex;
    flex-shrink: 0;
    animation: marquee 20s linear infinite;
}

.hero-ticker span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: var(--heading-spacing);
    color: var(--green);
    white-space: nowrap;
    padding: 5px 0 0 0;
    margin-right: 8px; /* Slight spacing if needed, but the bullet handles it mostly */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* =====================================================
   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: 60px 40px;
}

.about-content {
    max-width: 500px;
    width: 100%;
}

.about-logo {
    width: 100%;
    max-width: 400px;
    margin-bottom: 5rem;
    display: block;
}

.about-text {
    font-family: var(--font-body);
    color: var(--cream);
    font-size: 1.15rem;
    line-height: 1.1;
}

.about-right {
    position: relative;
}

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

/* =====================================================
   TOUR SECTION
===================================================== */
.tour-section {
    padding-top: 100px;
    /* Space for ticker */
    padding-bottom: 80px;
    display: flex;
    align-items: center;
}

.tour-container {
    max-width: 1000px;
    width: 92%;
    margin: 0 auto;
}

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

.tour-item {
    display: flex;
    width: 100%;
    border: 4px solid var(--cream);
    border-radius: 12px;
    background: #000;
    box-shadow: 0px 8px 0px #000;
    overflow: hidden;
    text-decoration: none;
}

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

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

.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 30px;
    color: var(--cream);
    border-right: 4px solid var(--cream);
}

.tour-city {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 0.9;
    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: scaleY(var(--sub-scale));
    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;
    text-decoration: none;
    transition: 0.2s;
    flex-shrink: 0;
}

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

.mobile-text {
    display: none;
}

/* =====================================================
   SECTION TICKER — shared + variants
===================================================== */

/* Shared base (works for any section ticker) */
.section-ticker {
    width: 100%;
    height: 48px;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border-width: 4px;
    border-style: solid;
}

.section-ticker span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: var(--heading-spacing);
    white-space: nowrap;
    padding: 5px 16px 0;
}

/* Tour ticker — blue bg, yellow text + border */
.tour-ticker {
    background: var(--blue);
    border-color: var(--yellow);
}

.tour-ticker span {
    color: var(--yellow);
}

/* Merch ticker — yellow bg, blue text + border */
.merch-ticker {
    background: var(--yellow);
    border-color: var(--blue);
}

.merch-ticker span {
    color: var(--blue);
}

/* Media ticker — yellow bg, red text + border */
.media-ticker {
    background: var(--yellow);
    border-color: var(--red);
}

.media-ticker span {
    color: var(--red);
}

/* Pin ticker at the very top of a section */
.ticker-top {
    position: absolute;
    top: 0;
    left: 0;
}

/* =====================================================
   MERCH SECTION
===================================================== */
#merch {
    padding-top: 60px;
    /* space for ticker */
    padding-bottom: 20px;
    display: flex;
    align-items: center;
}

.merch-container {
    padding: 0 2px;
    max-width: 100%;
}

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

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

.merch-header {
    background: var(--green);
    color: var(--yellow);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    padding: 15px 16px 12px 16px;
    letter-spacing: var(--heading-spacing);
    text-align: center;
}

.merch-header .number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

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

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

.merch-footer {
    background: var(--green);
    color: var(--yellow);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    padding: 15px 16px 12px 16px;
    letter-spacing: var(--heading-spacing);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.merch-footer:hover {
    background: var(--cream);
    color: var(--green);
}

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


/* =====================================================
   MEDIA SECTION
===================================================== */
#media {
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.media-container {
    max-width: 1000px;
    padding: 0 16px;
    margin: 0 auto;
}

.media-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 32px 0;
}

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

.media-img {
    display: flex;
    overflow: hidden;
}

.media-img img {
    width: 100%;
    aspect-ratio: 2.2 / 1;
    object-fit: cover;
    object-position: top;
    display: block;
    transform: scale(1.05);
}

.media-footer {
    background: var(--green);
    color: var(--yellow);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    padding: 15px 16px 12px 16px;
    letter-spacing: var(--heading-spacing);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.media-footer:hover {
    background: var(--cream);
    color: var(--green);
}

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

/* =====================================================
   FOOTER
===================================================== */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 2px;
    min-height: 50vh;
}

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

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

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

.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 {
    font-family: var(--font-subheading);
    color: var(--yellow);
    font-size: 1.6rem;
    letter-spacing: var(--sub-spacing);
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.2;
    transform: scaleY(var(--sub-scale));
}

.footer-subtext {
    font-family: var(--font-body);
    color: var(--yellow);
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.2;
}

.mobile-break {
    display: inline;
}

/* =====================================================
   BUTTON (generic)
===================================================== */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 18px 42px;
    border-radius: var(--radius-full);
    background: var(--black);
    color: var(--white);
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-5px);
}

/* =====================================================
   UTILS
===================================================== */
.flex {
    display: flex;
}

.grid {
    display: grid;
}

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

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

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

/* =====================================================
   ANIMATION
===================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: .8s;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   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) {
    .section {
        padding: 80px 0;
        background-size: 400px;
    }

    .about-section {
        padding: 0;
    }

    .about-grid {
        flex-direction: column-reverse;
        /* Puts the right column (image) on top */
    }

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

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

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

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

    .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;
    }

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

    .footer-text {
        font-size: 0.8rem;
    }

    .footer-subtext {
        font-size: 0.6rem;
    }

    .mobile-break {
        display: block;
    }

    /* Tour Section Mobile */
    .tour-item {
        flex-direction: column;
    }

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

    .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: 15px 10px;
    }

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

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

    .tour-btn {
        width: 100%;
        padding: 12px;
        font-size: 1.5rem;
    }

    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: block;
    }

    .tour-list {
        padding: 1rem;
    }

    .merch-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .merch-header,
    .merch-header .number,
    .merch-footer {
        font-size: 1.2rem;
        padding: 8px 12px;
    }

    .media-card {
        width: 100%;
    }

    .media-grid {
        padding: 2REM;
    }

    .media-container {
        padding: 2rem;
    }

    .media-footer {
        font-size: 1.2rem;
        padding: 8px 12px;
    }

    .media-footer img {
        display: none;
    }

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

/* Mobile — show hamburger, hide desktop nav */
@media (max-width: 640px) {
    .header {
        position: static;
        width: 100%;
        padding: 0;
        z-index: 1000;
    }

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

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

    .hero-image-wrapper {
        width: 90%;
        max-width: 400px;
        height: calc(100vh - 120px);
        bottom: 0;
        /* Reach absolute bottom */
    }

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

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

    .btn-listen {
        bottom: 100px;
        font-size: 1.2rem;
        padding: 12px 24px 8px 24px;
        border: 3px solid var(--red);
        box-shadow: 0 0 0 3px var(--yellow);
    }

    .navbar {
        height: 64px;
        padding: 0 16px;
        background: var(--yellow);
        border: 4px solid var(--cream);
    }

    .logo {
        width: 42px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: calc(100vh - 64px);
    }

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

    .hero-ticker {
        height: 42px;
    }

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

    /* Mobile menu overrides */
    .mobile-menu-header {
        border: 5px solid var(--cream);
        border-bottom: none;
        background-size: 400px;
    }

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

    .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: 400px;
        border-left: 5px solid var(--cream);
        border-right: 5px solid var(--cream);
        border-bottom: 5px solid var(--cream);
    }
}