@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,700;0,800;0,900;0,1000;1,800&family=Caveat:wght@600;700&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Primary Brand Colors */
    --yu-yellow: #FFCF06;
    /* Preferred Yu Yellow - Brighter & Better Visibility (CMYK 1 17 99 0) */
    --yu-yellow-alt: #FFB703;
    /* Client Original Yellow Shade */
    --yu-black: #111111;
    /* Digital Black */
    --yu-white: #FFFFFF;
    /* Pure White */

    /* Secondary Brand Colors (Palette Option 2) */
    --yu-secondary-1: #FA0012;
    /* Red - CMYK 2 100 93 0 */
    --yu-secondary-2: #F5F0AB;
    /* Cream / Beige - CMYK 4 6 33 0 */
    --yu-secondary-3: #38E675;
    /* Teal / Mint Green - CMYK 78 10 54 0 */
    --yu-secondary-4: #FF08BA;
    /* Vibrant Pink / Magenta - CMYK 0 97 27 0 */

    /* Semantic Color Shortcuts */
    --yu-red: var(--yu-secondary-1);
    --yu-cream: var(--yu-secondary-2);
    --yu-teal: var(--yu-secondary-3);
    --yu-pink: var(--yu-secondary-4);
}

/* Custom Typography Classes */
.font-heading {
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    letter-spacing: -0.02em;
}

.font-body {
    font-family: 'Work Sans', system-ui, -apple-system, sans-serif;
}

.font-script {
    font-family: 'Caveat', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--yu-yellow);
    color: var(--yu-black);
    font-family: 'Work Sans', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

/* ==========================================================================
   Preloader Section
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    color: var(--yu-black);
    overflow: hidden;
    z-index: 1000;
}

.preloader-bg,
.preloader-revealer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    transform-origin: center;
}

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

.preloader-revealer {
    clip-path: circle(0% at 50% 50%);
    will-change: clip-path;
}

.preloader-revealer-1 {
    background-color: var(--yu-cream);
}

.preloader-revealer-2 {
    background-color: var(--yu-teal);
}

.preloader-revealer-3 {
    background-color: var(--yu-red);
}

.preloader-revealer-4 {
    background-color: var(--yu-yellow);
}

.items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    pointer-events: none;
}

.item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15vw;
    max-width: 220px;
    min-width: 120px;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%) scale(0);
    will-change: transform;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.preloader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14vw;
    max-width: 200px;
    min-width: 130px;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    will-change: transform, opacity;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.preloader-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.nav-logo img {
    height: 3.2rem;
    width: auto;
    transform-origin: top left;
    display: block;
}

.nav-items {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}

.nav-items a {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--yu-white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: color 0.3s ease;
}

.nav-items a:hover {
    color: var(--yu-red);
}

/* ==========================================================================
   Hero Infinite Dual-Column Slider Section
   ========================================================================== */
.hero.slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    display: flex;
    overflow: hidden;
    z-index: 1;
    background-color: var(--yu-black);
}

.column {
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
}

.slide .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.copy {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    color: var(--yu-white);
    pointer-events: none;
    will-change: transform;
}

.left .copy {
    left: 0;
}

.right .copy {
    right: 0;
}

.slide-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(3rem, 9.5vw, 12rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.88;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.slide-tags {
    position: absolute;
    top: 32.5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    text-transform: uppercase;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.slide-link {
    position: absolute;
    top: 66%;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1.15rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    color: inherit;
    pointer-events: auto;
    cursor: pointer;
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.slide-link:hover {
    background: var(--yu-yellow);
    color: var(--yu-black) !important;
    border-color: var(--yu-yellow);
    transform: translateX(-50%) scale(1.05);
}

/* Inline block animation helpers */
.nav-word,
.footer-line {
    display: inline-block;
    will-change: transform;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1000px) {
    nav {
        padding: 1.5rem;
    }

    .nav-logo img {
        height: 2.4rem;
    }

    .nav-items {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-items a {
        font-size: 0.95rem;
    }

    .slide-title {
        font-size: clamp(2rem, 7vw, 4.5rem);
    }

    .slide-tags {
        font-size: 0.85rem;
        top: 30%;
    }

    .slide-link {
        font-size: 0.85rem;
        padding: 0.7rem 1.5rem;
        top: 68%;
    }

    .preloader-logo {
        width: 30vw;
    }

    .item {
        width: 30vw;
    }
}

/* ==========================================================================
   Product Category Landing Page Styles (Natural Juices)
   ========================================================================== */

.hero-container {
    position: relative;
    background-color: var(--yu-yellow);
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 4rem;
}

.hero-title {
    color: var(--yu-black);
    font-family: 'Nunito', sans-serif;
    font-size: clamp(3rem, 7.5vw, 8.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    text-align: center;
}

.hero-text-scroll {
    transform: rotate(-3deg);
    margin-bottom: 2rem;
    border: 0.4vw solid var(--yu-yellow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    background-color: var(--yu-red);
}

.hero-subtitle h1 {
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.5rem, 6.5vw, 7rem);
    font-weight: 900;
    color: var(--yu-yellow);
    line-height: 0.9;
    letter-spacing: -0.03em;
    padding: 0.6rem 2.2rem;
}

.hero-content h2 {
    font-family: 'Work Sans', sans-serif;
    color: var(--yu-black);
    text-align: center;
    max-width: 36rem;
    padding: 0 1.25rem;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.3;
    margin-top: 0.75rem;
    font-weight: 700;
}

.hero-button {
    margin-top: 2.5rem;
    color: var(--yu-yellow);
    background-color: var(--yu-black);
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 9999px;
    padding: 1rem 3rem;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.hero-button:hover {
    transform: scale(1.05);
    background-color: var(--yu-red);
}

/* Brand Message Section */
.message-content {
    background-color: var(--yu-black);
    color: var(--yu-cream);
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 20;
}

.msg-wrapper {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.5rem, 6vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.first-message {
    max-width: 60rem;
    text-align: center;
    color: rgba(250, 234, 222, 0.15);
}

.second-message {
    max-width: 75rem;
    text-align: center;
    color: rgba(250, 234, 222, 0.15);
}

.msg-text-scroll {
    transform: rotate(3deg);
    position: relative;
    z-index: 10;
    border: 0.4vw solid var(--yu-black);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.msg-text-scroll h2 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.5rem, 6vw, 6.5rem);
    font-weight: 900;
    color: var(--yu-yellow);
    background-color: var(--yu-red);
    padding: 0.6rem 2.5rem;
    text-transform: uppercase;
}

.paragraph-line {
    white-space: nowrap;
    overflow: hidden;
}

/* Flavor Section & Slider */
.flavor-section {
    min-height: 100vh;
    min-height: 100dvh;
    background-color: var(--yu-yellow);
    overflow: hidden;
    position: relative;
}

.general-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 6.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.03em;
}

.flavor-text-scroll {
    transform: rotate(-3deg);
    border: 0.4vw solid var(--yu-yellow);
    position: absolute;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.flavor-text-scroll h2 {
    color: var(--yu-yellow);
    background-color: var(--yu-red);
    padding: 0.5rem 2rem;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
}

.slider-wrapper {
    height: 100vh;
    height: 100dvh;
    width: 100%;
}

.flavors {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8rem;
    flex-wrap: nowrap;
    padding-left: 2rem;
    padding-right: 12rem;
}

.flavor-card {
    position: relative;
    z-index: 30;
    width: 40vw;
    max-width: 480px;
    height: 65vh;
    flex: none;
    transition: transform 0.4s ease;
}

.flavor-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
}

.flavor-card .drinks {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 95%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
    transition: transform 0.4s ease;
}

.flavor-card:hover .drinks {
    transform: translateX(-50%) scale(1.06);
}

.flavor-card .elements {
    position: absolute;
    top: 0;
    width: 100%;
    object-fit: contain;
    pointer-events: none;
}

.flavor-card h1 {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: var(--yu-black);
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .flavors {
        flex-direction: column;
        gap: 3rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 4rem;
    }

    .flavor-card {
        width: 85vw;
        height: 50vh;
    }

    .msg-wrapper {
        gap: 2rem;
    }
}