/* ==========================================================================
   1. GLOBAL RESET & UTILITIES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    width: 100%;
    background: #00A393;
    background: radial-gradient(circle, rgba(0, 163, 147, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

/* Scroll Animation Utilities */
.hidden-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.show-scroll {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
header {
    position: fixed;
    width: 100%;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.5s ease-in-out, padding 0.5s ease-in-out;
    z-index: 1000;
}

header.scrolled {
    background-color: #f9f9f9;
}

.logo {
    width: 180px;
    height: auto;
    z-index: 1002;
}

/* Desktop Navigation */
.navigation {
    display: flex;
    align-items: center;
    gap: 70px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    color: #f9f9f9;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    background-color: #00A393;
    left: 0;
    bottom: -5px;
    transition: width 0.5s ease-in-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

header.scrolled .nav-links a {
    color: #19303d;
}

.nav-btns {
    display: flex;
    gap: 20px;
}

/* Mobile Navigation & Burger Menu */
.burger-menu {
    display: none;
    cursor: pointer;
    z-index: 1002;
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: #f9f9f9;
    margin: 5px 0;
    transition: all 0.4s ease;
}

header.scrolled .burger-menu div {
    background-color: #19303d;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle, rgba(0, 120, 110, 1) 0%, rgba(0, 0, 0, 1) 100%);
    transition: transform 0.5s ease-in-out;
    z-index: 1001;
}

.mobile-nav.open {
    transform: translateX(-100%);
}

.mobile-nav a {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1.5rem;
    color: #f9f9f9;
    opacity: 0;
    transform: translateY(20px);
}

.burger-menu.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.toggle .line2 {
    opacity: 0;
}

.burger-menu.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 992px) {
    .navigation,
    .nav-btns {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    .mobile-nav.open a {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
    }
}


/* ==========================================================================
   3. HOME PAGE
   ========================================================================== */
.hero-section {
    width: 100%;
    height: 120vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* FIXED: Lowercase assets */
    background-image: url(assets/hero_bg_img.png);
    background-size: cover;
    background-position: center;
    color: #f9f9f9;
    padding-top: 80px;
}

.hero-content {
    width: 100%;
    position: absolute;
    top: 14%;
    text-align: center;
}

.hero-section h1 {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 8em;
    line-height: 0.9;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    color: #f9f9f9;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 0% 10%;
    font-family: 'Agnostic', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    color: #f9f9f9;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-points li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 30px;
}

.hero-image-container {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home_hero_image {
    width: 100%;
    max-width: 1056px;
    height: auto;
    display: block;
    transition: transform 0.3s ease-out;
    cursor: pointer;
}

.home_hero_image:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Call to Action Buttons */
.shop_the_drop {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    padding: 15px 40px;
    border: none;
    border-radius: 16px;
    color: #f9f9f9;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0;
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #00A393, #005F56);
    transition: background 0.3s ease;
    z-index: 3;
}

.shop_the_drop:hover {
    background: linear-gradient(to bottom, #005F56, #00A393);
}

.twb_button,
.view_cart,
.watch_launch {
    position: absolute;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #00A393, #005F56);
    border: none;
    cursor: pointer;
    align-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 3;
}

.twb_button:hover,
.view_cart:hover,
.watch_launch:hover {
    background: linear-gradient(to bottom, #005F56, #00A393);
    transform: scale(1.05);
}

.twb_button img,
.view_cart img,
.watch_launch img {
    width: 88%;
    height: auto;
    transition: filter 0.3s ease;
    margin-bottom: 24%;
}

.twb_button { top: 15%; left: 5%; }
.watch_launch { bottom: 25%; right: 5%; }
.view_cart { bottom: 10%; right: 5%; }

/* Why Morph Section */
.why_morph {
    width: 100%;
    overflow: hidden;
    margin-top: 100px;
    padding-bottom: 50px;
}

.why-top-section {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 5%;
}

.why-section-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-mascot-img {
    position: absolute;
    bottom: -172px;
    left: 0;
    height: 135%;
    width: auto;
    z-index: 1;
    pointer-events: none;
    transform: translateX(-15%);
}

.slider-container {
    position: relative;
    width: 50%;
    max-width: 600px;
    z-index: 3;
    text-align: left;
    color: #f9f9f9;
}

.slider-main-title {
    font-family: 'Agnostic', sans-serif;
    font-size: 5rem;
    letter-spacing: 5px;
    color: #f9f9f9;
    margin-bottom: 20px;
}

.slider-content {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide-item.active {
    opacity: 1;
}

.slide-subtitle {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1.3em;
    color: #009F91;
    margin-bottom: 10px;
}

.slide-description {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.slider-dots {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #f9f9f950;
    cursor: pointer;
    transition: background-color 1s ease, width 0.5s ease;
}

.dot.active {
    width: 40px;
    background-color: #009F91;
    border-radius: 20px;
}

.why-benefits-section {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
}

.why-benefits-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.benefits-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 90%;
    text-align: center;
    color: #f9f9f9;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.benefit-item img {
    width: 60px;
    height: auto;
    margin-bottom: 5px;
}

.benefit-title {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #19303D;
    margin-bottom: 5px;
}

.benefit-description {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #f9f9f9;
}


/* ==========================================================================
   4. SHARED COMPONENTS (Signup, UGC, Campaign)
   ========================================================================== */

/* Email Block Section */
.email-block-section {
    width: 100%;
    /* FIXED: Lowercase assets */
    background-image: url(assets/email_block_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 100px;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.email-block-content {
    width: 100%;
    color: #f9f9f9;
}

.email-block-title {
    font-family: 'Agnostic', sans-serif;
    font-size: 4rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    line-height: 1;
}

.email-block-subtitle {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 50px;
    color: #f9f9f9;
}

.email-signup-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
    width: 100%;
}

.input-group {
    position: relative;
    flex: 1;
    height: 60px;
}

.text-input {
    width: 100%;
    height: 100%;
    padding: 15px;
    background-color: transparent;
    border: 2px solid #f9f9f9;
    border-radius: 5px;
    color: #f9f9f9;
    font-family: 'Agnostic', sans-serif;
    font-size: 1.1em;
    outline: none;
    position: relative;
    z-index: 2;
}

.input-label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #f9f9f9;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 0.85em;
    pointer-events: none;
    transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
    z-index: 1;
}

.text-input:focus+.input-label,
.text-input:not(:placeholder-shown)+.input-label {
    top: -10px;
    font-size: 0.7em;
    color: #009F91;
    background-color: #0d121c;
    padding: 0 5px;
}

.text-input:focus {
    box-shadow: 0 0 10px rgba(0, 159, 145, 0.7);
}

.form-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.get-access-button,
.newsletter-button {
    background: linear-gradient(to bottom, #f9f9f9, #4FB1A8);
    color: #005F56;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.6s ease, transform 0.6s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.get-access-button {
    background: linear-gradient(to bottom, #f9f9f9, #4FB1A8);
    color: #19303D;
}

.get-access-button:hover {
    background: linear-gradient(to bottom, #4FB1A8, #f9f9f9);
    transform: translateY(-3px);
}

.newsletter-button {
    background: transparent;
    border: 2px solid #f9f9f9;
    color: #f9f9f9;
}

.newsletter-button:hover {
    background-color: #009F91;
    color: #f9f9f9;
    transform: translateY(-3px);
    border-color: #009F91;
}

/* UGC Section */
.ugc-section {
    width: 100%;
    overflow: hidden;
    padding: 50px 0;
    box-sizing: border-box;
}

.ugc-carousel-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.ugc-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.2s ease-out;
}

.ugc-carousel img {
    flex-shrink: 0;
    height: 300px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.ugc-carousel img:hover {
    transform: scale(1.05);
}

/* Morph Campaign Banner */
.morph_campaign {
    display: flex;
    background: linear-gradient(to bottom, #f9f9f9, #4FB1A8);
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    margin: 5% 0%;
    padding: 2% 0%;
}

.morph_campaign h5 {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #00A393;
}

.morph_campaign_btn {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    padding: 15px 40px;
    border: none;
    border-radius: 16px;
    color: #f9f9f9;
    text-transform: uppercase;
    cursor: pointer;
    background: linear-gradient(to bottom, #00A393, #005F56);
    transition: background 0.3s ease;
}

.moon_img {
    position: absolute;
    left: -125px;
    top: -75px;
}


/* ==========================================================================
   5. FLAVOR & PRODUCT DETAIL PAGE
   ========================================================================== */
.flavor-hero-image {
    width: 100%;
}

.flavor-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20%;
    left: 36%;
}

.flavor-hero-content h1 {
    font-family: 'Agnostic', sans-serif;
    font-size: 6rem;
    color: #f9f9f9;
    letter-spacing: 5px;
}

.flavor-hero-content h2 {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #f9f9f9;
}

.flavor-detail-section {
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.flavor-product-hero {
    position: relative;
    width: 100%;
    height: 1040px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.product-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.product-can-img {
    position: relative;
    max-width: 100%;
    height: auto;
    width: 33%;
    z-index: 2;
}

.product-info-container {
    padding: 0 20px;
    margin-bottom: 40px;
}

.product-name-title {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #f9f9f9;
}

.product-tagline {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #f9f9f9;
    margin-bottom: 30px;
}

.product-description-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-description-text {
    border: solid #f9f9f9;
    padding: 20px 20px;
    border-radius: 20px;
}

.product-description-text p {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #f9f9f9;
}

.warning-text {
    font-weight: normal;
    color: #f9f9f9;
    font-size: 0.85em;
}

.product-key-points {
    display: flex;
    align-items: center;
    padding: 20px 20px 20px 30px;
    border: solid #f9f9f9;
    border-radius: 20px;
}

.product-key-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-key-points li {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #f9f9f9;
}

.product-key-points li:last-child {
    margin-bottom: 0;
}

.product-key-points li::before {
    content: '•';
    color: #4FB1A8;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    line-height: 1;
}

/* Benefits Section */
.benefits-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
    flex-wrap: nowrap;
    padding: 0 20px;
}

.benefits {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
}

.ben {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 600;
    font-size: 20px;
}

.FS { color: #00ADE0; }
.SB { color: #C6853E; }
.NS { color: #5EB531; }
.ND { color: #009F91; }

.SB p, .NS p, .ND p, .FS p {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 400;
    font-size: 1rem;
}

.SB p { color: #C6853E; }
.NS p { color: #5EB531; }
.ND p { color: #009F91; }
.FS p { color: #00ADE0; }

.product-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 130px;
    border: none;
    border-radius: 5px;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.8s ease;
}

.buy-now-btn {
    background: linear-gradient(to bottom, #f9f9f9, #4FB1A8);
    color: #00A393;
}

.buy-now-btn:hover {
    background: linear-gradient(to bottom, #4FB1A8, #f9f9f9);
    transform: translateY(-2px);
}

.view-bundle-btn {
    background: transparent;
    color: #f9f9f9;
    border: 2px solid #f9f9f9;
}

.view-bundle-btn:hover {
    border: none;
    background-color: #4FB1A8;
    color: #f9f9f9;
    transform: translateY(-2px);
}


/* ==========================================================================
   6. SHOP PAGE & PRODUCT LISTINGS
   ========================================================================== */
#shopherosection {
    /* FIXED: Lowercase assets */
    background-image: url(assets/hero_img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
}

.fillters {
    width: 100%;
    padding: 40px 20px;
    background-image: linear-gradient(to bottom, #F9F9F9, #4FB1A8);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.fillter_links {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #00A393;
}

.sort_btn {
    background-color: transparent;
    border: 2px solid #005F56;
    border-radius: 16px;
    color: #00A393;
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    padding: 16px 32px;
    cursor: pointer;
}

.shop-heading {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-evenly;
}

.section-title {
    font-family: 'Agnostic', sans-serif;
    font-size: 72px;
    text-align: center;
    color: #f9f9f9;
    letter-spacing: 4px;
}

.new-flavors-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 88px;
}

.flavor-cards-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 64px;
}

.flavor-card {
    border-radius: 15px;
    padding: 30px 20px;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 1s ease, border-color 1s ease;
}

.flavor-card:hover {
    transform: translateY(-10px);
}

.can-wrapper {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.flavor-can {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.add-button,
.add-more-button {
    background: linear-gradient(to bottom, #f9f9f9, #4FB1A8);
    position: absolute;
    top: -20px;
    right: -10px;
    border-radius: 20%;
    border: none;
    width: 75px;
    height: 75px;
    cursor: pointer;
    transition: background-color 1s ease, transform 1s ease;
}

.add-button:hover,
.add-more-button:hover {
    background: linear-gradient(to bottom, #4FB1A8, #f9f9f9);
    transform: scale(1.1);
}

.flavor-name {
    font-family: 'LEMON MILK', sans-serif;
    padding: 8px 64px;
    font-size: 12px;
    font-weight: 600;
    color: #f9f9f9;
    margin-bottom: 30px;
}

.frost-surge { background: linear-gradient(to right, #00ADE000, #00ADE0, #00ADE000); }
.solar-blaze { background: linear-gradient(to right, #C6853E00, #C6853E, #C6853E00); }
.night-shift { background: linear-gradient(to right, #5EB53100, #5EB531, #5EB53100); }
.natural-drift { background: linear-gradient(to right, #2AA07C00, #2AA07C, #2AA07C00); }

.flavor-description {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 12px;
    font-weight: 200;
    color: #f9f9f9;
    margin-bottom: 30px;
}

.learn-more-button {
    background: linear-gradient(to bottom, #f9f9f9, #4FB1A8);
    color: #005F56;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.6s ease, transform 0.6s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.learn-more-button:hover {
    background: linear-gradient(to bottom, #4FB1A8, #f9f9f9);
    transform: translateY(-3px);
}

/* Social Proof */
.social-proof {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 72px 80px;
}

.proof {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.proof h1 {
    font-family: 'Agnostic', sans-serif;
    color: #f9f9f9;
    font-size: 4rem;
}

.proof h4 {
    font-family: 'LEMON MILK', sans-serif;
    color: #f9f9f9;
    font-size: 20px;
    font-weight: 400;
}


/* ==========================================================================
   7. STORY PAGE
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #0d121c;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: flex-end;
    padding: 80px 40px;
    box-sizing: border-box;
    z-index: 1;
}

.hero-slide.active-slide {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.content-left {
    padding: 20px 30px;
    max-width: 600px;
}

.about-morph {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 0.9em;
    color: #00A393;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-main-title {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 20px;
    color: #f9f9f9;
    margin-top: 0;
    margin-bottom: 10px;
}

.slide-sub-title {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #f9f9f9;
    margin-top: 0;
    margin-bottom: 10px;
}

.slide-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.get-early-access-btn,
.get-press-kit-btn {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    padding: 15px 40px;
    border: none;
    border-radius: 16px;
    color: #f9f9f9;
    background: linear-gradient(to bottom, #00A393, #005F56);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.get-early-access-btn:hover,
.get-press-kit-btn:hover {
    background: linear-gradient(to bottom, #005f56, #00A393);
    transform: translateY(-2px);
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    height: 10px;
    width: 10px;
    background-color: rgba(249, 249, 249, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.hero-dot.active-hero-dot {
    width: 40px;
    background-color: #009F91;
    border-radius: 20px;
}

/* Founders */
.founders-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 72px;
    padding: 80px 40px;
    color: #f9f9f9;
}

.founder,
.co-founder {
    position: relative;
    width: 100%;
    max-width: 500px;
    background-color: #0d121c;
    border-radius: 15px;
    overflow: hidden;
}

.founder-img,
.cofounder-img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0.8) contrast(1.1);
    transition: filter 0.3s ease;
}

.founder-img:hover,
.cofounder-img:hover {
    filter: brightness(1) contrast(1.2);
}

.founders-text-block {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.0));
    padding: 80px 30px 30px 30px;
    box-sizing: border-box;
    text-align: left;
}

.founders-title {
    font-family: 'Agnostic', sans-serif;
    font-size: 3rem;
    color: #f9f9f9;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.founders-subtitle {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f9f9f9;
    margin-bottom: 15px;
}

.founders-story {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.6;
    color: #f9f9f9;
    margin-bottom: 0;
}

/* Mission & Benefits */
.our-mission-section {
    margin-top: 72px;
}

.mission-top-content {
    position: relative;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mission-main-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.claw-pattern-img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 120%;
    width: auto;
    object-fit: contain;
    z-index: 1;
}

.mission-text-block {
    position: relative;
    z-index: 2;
    max-width: 840px;
    padding: 40px;
    text-align: left;
    margin-left: 440px;
    bottom: 100px;
}

.mission-title {
    font-family: 'Agnostic', sans-serif;
    font-size: 4rem;
    color: #f9f9f9;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mission-subtitle {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #f9f9f9;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.4;
}

.mission-description {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.7;
    color: #f9f9f9;
    margin-bottom: 0;
}

.mission-benefits-bar {
    position: relative;
    width: 100%;
    background-color: #19303D;
    margin-top: -180px;
    z-index: 3;
    padding: 40px 20px;
    box-sizing: border-box;
}

.mission-ben-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.8);
}

.mission-benefits-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mission-benefit-item {
    flex: 1 1 220px;
    padding: 15px;
    box-sizing: border-box;
}

.mission-benefit-icon {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.mission-benefit-title {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1.1em;
    color: #f9f9f9;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.mission-benefit-description {
    font-family: 'Agnostic', sans-serif;
    font-size: 0.85em;
    line-height: 1.4;
    color: #f9f9f9;
}

/* Timeline/Story */
.our-story-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 80px 40px;
    color: #f9f9f9;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
    box-sizing: border-box;
    margin-left: 40px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.timeline-item:hover {
    transform: translateX(5px);
}

.timeline-dot {
    width: 18px;
    height: 18px;
    border: 2px solid #f9f9f9;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.timeline-item.active-timeline-item .timeline-dot,
.timeline-item:hover .timeline-dot {
    width: 24px;
    height: 24px;
    background-color: #009F91;
    border-color: #009F91;
}

.timeline-line {
    width: 2px;
    height: 60px;
    background-color: #f9f9f9;
    margin: -10px 0 -10px 8px;
    flex-shrink: 0;
}

.timeline-text {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1.2em;
    font-weight: 400;
    color: rgba(249, 249, 249, 0.7);
    line-height: 1.5;
    margin: 0;
    transition: all 0.3s ease;
}

.timeline-item.active-timeline-item .timeline-text,
.timeline-item:hover .timeline-text {
    font-size: 1.3em;
    font-weight: 600;
    color: #f9f9f9;
}

.story-image-container {
    position: relative;
    width: 50%;
    flex-shrink: 0;
    margin-left: 200px;
    transform: rotate(5deg);
    transition: transform 0.5s ease;
}

.story-image-container:hover {
    transform: rotate(3deg) scale(1.02);
}

.story-display-image {
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease;
}

/* Signup Story Section */
.email-signup-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    color: #fff;
    text-align: center;
    min-height: 400px;
}

.signup-offer-text {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.3;
}

.email-input-container-story {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.email-input-story {
    width: 100%;
    padding: 16px;
    background-color: transparent;
    border: 1px solid #f9f9f9;
    border-radius: 8px;
    font-size: 12px;
    margin-bottom: 15px;
    color: #f9f9f9;
}

.email-input-story::placeholder {
    color: #f9f9f956;
}

.signup-terms-text {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.signup-button {
    background: linear-gradient(to bottom, #f9f9f9, #4FB1A8);
    color: #005F56;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.6s ease, transform 0.6s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.signup-button:hover {
    background: linear-gradient(to bottom, #4FB1A8, #f9f9f9);
    transform: translateY(-2px);
}


/* ==========================================================================
   8. MEDIA PAGE
   ========================================================================== */
.media-hero {
    /* FIXED: Lowercase assets */
    background: url("assets/media_hero_img.png") no-repeat center center/cover;
    color: #f9f9f9;
    text-align: left;
    padding: 120px 60px;
    font-family: 'LEMON MILK', sans-serif;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 80vh;
}

.media-hero-content {
    max-width: 900px;
}

.media-hero h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 40px;
}

.media-hero-buttons {
    display: flex;
    gap: 20px;
}

.media-btn {
    background: linear-gradient(to bottom, #00A393, #005F56);
    color: #f9f9f9;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.6s ease, transform 0.6s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.media-btn:hover {
    background: linear-gradient(to bottom, #005F56, #00A393);
    transform: translateY(-2px);
}

.media-news {
    padding: 80px 60px;
    color: #f9f9f9;
}

.news-title {
    font-family: 'Agnostic', sans-serif;
    text-align: center;
    font-size: 4rem;
    letter-spacing: 8px;
    margin-bottom: 50px;
}

.news-grid,
.news-grid-two {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
}

.news-grid-two {
    grid-template-columns: 1fr 2fr;
}

.news-card,
.news-card-two {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.news-card img,
.news-card-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-card.large {
    grid-row: span 2;
}

.news-card-two.large {
    grid-row: span 2;
    grid-column: 1;
}

.news-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    background: linear-gradient(to top, #142129 10%, transparent 100%);
    transition: background 0.4s ease;
}

.news-date,
.news-author {
    font-size: 1rem;
    opacity: 0.5;
    font-weight: 400;
    margin-bottom: 6px;
    font-family: 'LEMON MILK', sans-serif;
    color: #f9f9f9;
}

.news-overlay h3 {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 3rem;
    margin-bottom: 6px;
    color: #f9f9f9;
}

.news-sub {
    font-size: 1.5rem;
    opacity: 0.9;
    font-family: 'LEMON MILK', sans-serif;
    color: #f9f9f9;
}

.news-card:hover img,
.news-card-two:hover img {
    transform: scale(1.05);
}

.news-card:hover .news-overlay,
.news-card-two:hover .news-overlay {
    background: linear-gradient(to top, #142129 20%, transparent 100%);
}

.media-campaign {
    /* FIXED: Lowercase assets */
    background: url(assets/View_Campaign_Media_BG.png) no-repeat center center / cover;
    text-align: left;
    color: #f9f9f9;
    padding: 100px 160px;
    font-family: 'LEMON MILK', sans-serif;
}

.campaign-title {
    font-family: 'Agnostic', sans-serif;
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 8px;
}

.campaign-sub {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.campaign-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.campaign-card {
    position: relative;
    overflow: hidden;
    max-width: 390px;
    width: 100%;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.campaign-card img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.campaign-link {
    margin-top: 20px;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 0.9rem;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.campaign-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.campaign-card:hover .campaign-link {
    opacity: 1;
    color: #00A393;
}

.upcoming-events {
    padding: 80px 60px;
    color: #f9f9f9;
}

.events-title {
    font-family: 'Agnostic', sans-serif;
    text-align: center;
    font-size: 4rem;
    letter-spacing: 8px;
    margin-bottom: 50px;
}

.events-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
}

.events-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.events-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.events-card.large {
    grid-row: span 2;
}

.events-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    background: linear-gradient(to top, #142129 10%, transparent 100%);
    transition: background 0.4s ease;
}

.events-date,
.events-author {
    font-size: 1rem;
    opacity: 0.5;
    font-weight: 400;
    margin-bottom: 6px;
    font-family: 'LEMON MILK', sans-serif;
    color: #f9f9f9;
}

.events-overlay h3 {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 3rem;
    margin-bottom: 6px;
    color: #f9f9f9;
}

.events-sub {
    font-size: 1.5rem;
    opacity: 0.9;
    font-family: 'LEMON MILK', sans-serif;
    color: #f9f9f9;
}

.events-card:hover img {
    transform: scale(1.05);
}

.events-card:hover .events-overlay {
    background: linear-gradient(to top, #142129 20%, transparent 100%);
}


/* ==========================================================================
   9. UTILITY PAGES (Contact, 404)
   ========================================================================== */
.morph_merch_ad {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 420px;
    /* FIXED: Lowercase assets */
    background-image: url(assets/morph_merch_ad.png);
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 40px;
    margin: 64px 0px;
}

.morph_merch_button {
    background: linear-gradient(to bottom, #f9f9f9, #4FB1A8);
    color: #005F56;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.6s ease, transform 0.6s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.morph_merch_button:hover {
    background: linear-gradient(to bottom, #4FB1A8, #f9f9f9);
    transform: translateY(-2px);
}

/* 404 Page */
.morph-404-container {
    position: relative;
    width: 100%;
    height: 120vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.morph-404-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.morph-404-numbers {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 20;
}

.morph-404-number-left,
.morph-404-number-right {
    width: 330px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.morph-404-can-wrapper {
    width: 377px;
    height: 373px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 10px;
}

.morph-404-can {
    width: 100%;
    height: auto;
    display: block;
}

.morph-404-main-message {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 2.5em;
    color: #f9f9f9;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.morph-404-sub-message {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1.1em;
    color: #f9f9f9;
    margin-bottom: 40px;
}

.morph-404-actions {
    display: flex;
    gap: 20px;
}

.morph-404-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(79, 177, 168, 0.3);
}

.morph-404-button-shop {
    background: linear-gradient(to bottom, #f9f9f9, #4FB1A8);
    color: #005F56;
}

.morph-404-button-home {
    background: linear-gradient(to bottom, #4FB1A8, #005F56);
    color: #f9f9f9;
}

.morph-404-button-shop:hover {
    background: linear-gradient(to bottom, #4FB1A8, #f9f9f9);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(79, 177, 168, 0.6);
}

.morph-404-button-home:hover {
    background: linear-gradient(to bottom, #005F56, #4FB1A8);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(79, 177, 168, 0.6);
}

.morph-404-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
    pointer-events: none;
}


/* ==========================================================================
   10. FOOTER
   ========================================================================== */
footer {
    background-color: #142129;
    width: 100%;
    margin-top: 120px;
    padding-bottom: 20px;
}

.footer-container {
    background-color: #142129;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 70px;
    padding: 70px 100px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col-about {
    flex-basis: 30%;
    min-width: 280px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
    display: block;
}

.footer-description {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 200;
    font-size: 1em;
    margin-bottom: 30px;
    color: #f9f9f9;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.contact-info h4 {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #f9f9f9
}

.contact-info p {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 200;
    font-size: 12px;
    margin-bottom: 5px;
    color: #f9f9f956
}

.footer-col-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    flex-basis: 35%;
    min-width: 300px;
}

.footer-nav-group h4 {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #f9f9f9;
}

.footer-nav-group ul {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 400;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-group ul li {
    margin-bottom: 8px;
}

.footer-nav-group ul li a {
    color: #f9f9f950;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-nav-group ul li a:hover {
    color: #00A393;
}

.footer-col-newsletter {
    flex-basis: 30%;
    min-width: 280px;
}

.footer-col-newsletter h4 {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 200;
    font-size: 20px;
    margin-bottom: 30px;
    color: #f9f9f9;
}

.newsletter-input {
    width: 100%;
    padding: 16px;
    background-color: transparent;
    border: 1px solid #f9f9f9;
    border-radius: 8px;
    font-size: 12px;
    margin-bottom: 15px;
    color: #f9f9f9;
}

.newsletter-input::placeholder {
    color: #f9f9f956;
}

.newsletter-description {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 200;
    font-size: 10px;
    color: #f9f9f9;
    margin-bottom: 20px;
}

.subscribe-button {
    width: 100%;
    background: linear-gradient(to bottom, #f9f9f9, #4FB1A8);
    color: #005F56;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.6s ease, transform 0.6s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.subscribe-button:hover {
    background: linear-gradient(to bottom, #4FB1A8, #f9f9f9);
    transform: translateY(-3px);
}

.footer-bottom {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 200;
    font-size: 10px;
    color: #f9f9f9;
    border-top: 1px solid #00A393;
    text-align: center;
    padding-top: 20px;
    margin: 40px 100px 0;
}


/* ==========================================================================
   11. RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */

/* Tablet & Mobile Styles */
@media (max-width: 992px) {
    /* Header */
    header {
        padding: 15px 5%;
    }

    .navigation,
    .nav-btns {
        display: none;
    }

    .burger-menu {
        display: block;
        z-index: 1002;
    }

    .burger-menu div {
        width: 25px;
        height: 3px;
        background-color: #f9f9f9;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: radial-gradient(circle, rgba(0, 120, 110, 1) 0%, rgba(0, 0, 0, 1) 100%);
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        z-index: 1001;
    }

    .mobile-nav.open {
        transform: translateX(0);
    }

    .mobile-nav a {
        font-family: 'LEMON MILK', sans-serif;
        font-size: 1.5rem;
        color: #f9f9f9;
    }

    /* Home Hero */
    .hero-section {
        height: 100vh;
        background-position: top center;
    }

    .hero-section h1 {
        font-size: 4em;
    }

    .hero-points {
        font-size: 1.5rem;
    }

    .twb_button,
    .view_cart,
    .watch_launch {
        display: none;
    }

    /* Why Morph Section */
    .why-top-section {
        height: auto;
        padding: 50px 20px;
        flex-direction: column;
        justify-content: center;
    }

    .why-mascot-img {
        position: relative;
        transform: none;
        height: 300px;
        left: 0;
        bottom: 0;
        margin-bottom: 20px;
    }

    .slider-container {
        width: 90%;
        text-align: center;
    }

    .slider-main-title {
        font-size: 3rem;
    }

    .slider-dots {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 90%;
    }

    .why-benefits-section {
        height: auto;
        padding: 40px 20px;
        margin-top: 0;
    }

    /* Email Block */
    .email-block-section {
        padding: 80px 20px;
        text-align: center;
    }

    .email-block-title {
        font-size: 2.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .input-group {
        width: 100%;
        max-width: 400px;
    }

    .form-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .get-access-button,
    .newsletter-button {
        width: 100%;
        max-width: 400px;
    }

    /* Social Proof */
    .social-proof {
        flex-direction: column;
        gap: 40px;
        margin: 50px 20px;
        align-items: center;
    }

    .proof h1 {
        font-size: 3rem;
    }

    .proof h4 {
        font-size: 1rem;
    }

    /* Flavor/Shop */
    .flavor-product-hero {
        height: 60vh;
    }

    .product-description-grid {
        grid-template-columns: 1fr;
    }

    .flavor-cards-container {
        gap: 40px;
    }

    /* Story Page */
    .founders-section {
        padding: 60px 20px;
        gap: 40px;
    }

    .mission-text-block {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        bottom: 0;
        padding: 20px;
    }

    .claw-pattern-img {
        display: none;
    }

    .mission-benefits-bar {
        margin-top: 0;
    }

    .our-story-section {
        flex-direction: column;
        padding: 60px 20px;
    }

    .story-timeline {
        margin-left: 0;
        margin-bottom: 40px;
        align-items: center;
    }

    .story-image-container {
        width: 90%;
        margin-left: 0;
        transform: rotate(0);
    }

    /* Media Page */
    .media-hero {
        padding: 100px 20px;
        text-align: center;
        justify-content: center;
    }

    .media-hero-buttons {
        justify-content: center;
    }

    .media-news,
    .upcoming-events {
        padding: 60px 20px;
    }

    .news-grid,
    .news-grid-two,
    .events-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .news-card.large,
    .news-card-two.large,
    .events-card.large {
        grid-row: auto;
        grid-column: auto;
    }

    .media-campaign {
        padding: 80px 20px;
        text-align: center;
    }

    .news-overlay h3,
    .events-overlay h3 {
        font-size: 1.8rem;
    }

    .news-sub,
    .events-sub {
        font-size: 1rem;
    }

    /* 404 Page */
    .morph-404-container {
        height: 100vh;
        justify-content: flex-start;
        padding-top: 100px;
    }

    .morph-404-numbers {
        margin-top: 0;
        flex-direction: column;
    }

    .morph-404-number-left,
    .morph-404-number-right {
        width: 150px;
    }

    .morph-404-can-wrapper {
        width: 180px;
        height: 180px;
        margin: 20px 0;
    }

    .morph-404-main-message {
        font-size: 1.5rem;
    }

    .morph-404-sub-message {
        font-size: 1rem;
    }

    .morph-404-actions {
        flex-direction: column;
        gap: 15px;
    }

    .morph-404-button {
        width: 220px;
    }

    .morph-404-hero-overlay {
        top: -100px;
        height: 60%;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 50px 20px;
    }

    .footer-col {
        min-width: 100%;
        margin-bottom: 40px;
    }

    .footer-logo {
        margin: 0 auto 20px auto;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        margin: 40px 20px 0;
    }
}

/* Small Mobile Styles */
@media (max-width: 600px) {
    .section-title,
    .news-title,
    .events-title,
    .campaign-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-section h1 {
        font-size: 3em;
    }

    .hero-points {
        font-size: 1rem;
    }

    .home_hero_image {
        max-width: 90%;
    }

    .shop_the_drop {
        bottom: 100px;
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-description {
        font-size: 0.9rem;
    }

    .btn {
        padding: 15px 40px;
        width: 100%;
        max-width: 300px;
    }

    .product-actions {
        flex-direction: column;
        align-items: center;
    }

    .founders-title {
        font-size: 2rem;
    }

    .founders-subtitle,
    .founders-story {
        font-size: 0.9rem;
    }

    .mission-title {
        font-size: 2.5rem;
    }

    .mission-subtitle {
        font-size: 1.2rem;
    }
}