/* 1. Modern Reset */
*, *::before, *::after {
    box-sizing: border-box; /* Makes padding/border not affect width */
    margin: 0;
    padding: 0;
}


/* 2. Root Variables (Theme Colors) */
:root {
    --primary-color: #3498db;
    --text-color: #333;
    --bg-color: #ffffff;
    --font-main: 'Roboto Flex', sans-serif;
}

/* 3. Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-weight: 300;
}

ul {
  list-style-type: disc;
  margin: 0;      /* Space above and below the list */
  padding-left: 1.5rem;   /* Space for the bullets */
}

li {
  margin-bottom: 0.25rem; /* Space between items */
  padding-left: 0.25rem;
  line-height: 1.6;       /* Optimal readability */
  color: #333;
}

/* Optional: Change bullet color without changing text color */
li::marker {
  color: #f7882f;        /* A nice blue bullet */
}

/* 4. Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
    font-family: "Roboto Flex";
    font-weight: 600;
}

h1, h2 {
    font-size: 2rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    max-width: 100%; /* Prevents images from overflowing containers */
    display: block;
}

.hero {
    width: 100%;
    max-height: 100vh;
    color: white;
    display: flex;
    align-items: center;
}

.hero-left {
    width: 50%;
    background-image: url('../var/Hero.svg');
    background-repeat: no-repeat;
    background-size: cover; /* Or 'contain' depending on your needs */
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-right {
    width: 50%;

}

.hero-right video {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-inner {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

h1 {
    margin-top: 1rem;
}

.hero svg {
    max-width: 498px;
    width: 100%;
}

@media (max-width: 1000px) {
    .hero {
        position: relative;
        display: block;
        min-height: 100vh;
        overflow: hidden;
    }

    .hero-right {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 1;
        pointer-events: none;
    }

    .hero-right {
        z-index: 0;
    }

    .hero-left {
        z-index: 2;
        background-image: none;
    }

    .hero-right video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-left {
        position: relative;
        z-index: 2;
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 2rem;
    }

    .hero-inner {
        max-width: 600px;
        margin: 0 auto;
    }
}

.mission {
    width: 100%;
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
}

.mission ul {
    width: 100%;
    font-size: 250%;
    text-align: center;
    margin: 0 auto;
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-around;
    background: linear-gradient(
        130deg,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0.4)
    );
    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shine 4s linear infinite;
}

.mission ul li {
    padding: 0;
    margin: 0;

    font-size: clamp(1rem, 4vw, 2.5rem);
    letter-spacing: 0.08em;
    transition: transform 0.25s ease;
    font-weight: 600;
    animation: all 0.2s ease-in-out;
}

@keyframes shine {
    from {
        background-position: 200% center;
    }

    to {
        background-position: 0% center;
    }
}

@media (min-width: 768px) {
    .mission {
        bottom: 2rem;
    }
}

.products {
    background-color: #EAEAEA;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 4rem 1rem 1rem;
}

.products-inner {
    background-color: #ffffff;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 22px -35px rgba(0, 0, 0, 0.25);
    border-radius: 1rem;
}

.product-intro {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 820px;
    margin: 0 auto;
}

.product-intro-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1rem;
    width: 100%;
}

.product-video {
    width: 100%;
}

.product-video video {
    width: 100%;
}

.product {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product.sour-mix {
    flex-direction: column-reverse;
}

.product .image-col {
    width: 100%;
    display: flex;
    align-items: center;
}

.product .image-col img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.product .content-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    gap: 0.75rem;
}

.product .content-col .short-desc {
    font-size: 1.25rem;
    font-weight: 600;
}

.product.sweet-mix h2 span {
    color: #EB4136;
    white-space: nowrap;
}

.product.sour-mix h2 span {
    color: #699437;
    white-space: nowrap;
}

.product.foam-mix h2 span {
    color: #DC6898;
    white-space: nowrap;
}


@media (min-width: 768px) {
    .product {
        flex-direction: row;
    }

    .product.sour-mix {
        flex-direction: row;
    }


    .product .image-col {
        width: 25%;
    }

    .product .content-col {
        width: 75%;
        padding: 1rem 2rem;
    }
}

.b2c {
    width: 100%;
    background-color: #383838;
    color: white;
    padding: 0.75rem;
}

.b2c-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.b2c-inner > div {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.b2c h2 {
    font-size: 1.25rem;
}

.b2c a {
    background-color: #FF9A00;
    transform: all .5s ease-in-out;
    border-radius: 32px;
    display: block;
    padding: 0.5rem 1.5rem;
    color: white;
    text-align: center;
}

.b2c a:hover {
    background-color: #c97a00;
}

@media (min-width: 768px) {
    .b2c-inner {
        flex-direction: row;
    }
}

.b2b {
    background-color: #EAEAEA;
    width: 100%;
    display: flex;
    padding: 1rem 1rem 4rem;
}

.b2b .b2b-inner {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 6px 22px -8px rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
    overflow: hidden;
}

.b2b-inner > div {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-us {
    background-color: #BE1818;
    color: #ffffff;
    padding: 4rem 2rem;
}

.about-us-inner {
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0 auto;
    align-items: center;
}

.about-us .image-col {
    width: 100%;
}

.about-us .content-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer {
    background-color: #DC2B26;
    width: 100%;
}

footer p {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    color: white;
}
