/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    color: #1C1C1C;
    background-color: #FAFAFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-weight: 400;
}

.light-text {
    font-weight: 300;
}

/* Navigation */
.navbar {
    --nav-bg: transparent;
    --nav-text: #1C1C1C;
    --nav-accent: #1C1C1C;
    --nav-overlay-bg: rgba(250, 250, 255, 0.98);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background-color: var(--nav-bg);
    color: var(--nav-text);
}

.navbar.scrolled {
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar.light-theme {
    --nav-bg: rgba(0, 0, 0, 0.4);
    --nav-text: #FAFAFF;
    --nav-accent: #FAFAFF;
    --nav-overlay-bg: rgba(0, 0, 0, 0.85);
}

.navbar.dark-theme {
    --nav-bg: rgba(250, 250, 255, 0.95);
    --nav-text: #1C1C1C;
    --nav-accent: #1C1C1C;
    --nav-overlay-bg: rgba(250, 250, 255, 0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--nav-text);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--nav-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--nav-text);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-fallback {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero-fallback_3.png');
    background-size: cover;
    background-position: center;
    background-color: #ECEBE4;
    display: none;
    z-index: -1;
}

.hero-fallback.show {
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 0 2rem;
    text-align: center;
    color: #FAFAFF;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #FAFAFF;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1C1C1C;
    color: #FAFAFF;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    border: 1px solid #1C1C1C;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: #FAFAFF;
    border-color: #FAFAFF;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Value Propositions Section */
.value-props {
    padding: 8rem 0;
    background-color: #FAFAFF;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
}
.mission-statement {
    background-color: #FFFFFF;
    padding: 4rem 0;
}

.mission-text {
    font-size: 2.25rem;
    line-height: 1.8;
    color: #1C1C1C;
    text-align: center;
}


.value-card {
    padding: 2.5rem;
    background-color: #ECEBE4;
    border: 1px solid #DADDD8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1C1C1C;
}

.value-text {
    font-size: 1rem;
    font-weight: 400;
    color: #1C1C1C;
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 8rem 0;
    background-color: #EEF0F2;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1C1C1C;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    padding: 3rem 2.5rem;
    background-color: #FAFAFF;
    border: 1px solid #DADDD8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-small {
    min-height: 250px;
}

.product-medium {
    min-height: 280px;
}

.product-large {
    min-height: 300px;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1C1C1C;
}

.product-text {
    font-size: 1rem;
    font-weight: 400;
    color: #1C1C1C;
    line-height: 1.7;
}

/* Packaging Section */
.packaging {
    padding: 8rem 0;
    background-color: #FAFAFF;
}

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.packaging-heading {
    margin-bottom: 3rem;
}

.packaging-card {
    padding: 3.5rem;
    background-color: #ECEBE4;
    border: 1px solid #DADDD8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.packaging-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.packaging-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1C1C1C;
}

.packaging-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: #1C1C1C;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background-color: #1C1C1C;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #FAFAFF;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 400;
    color: #EEF0F2;
    margin-bottom: 2.5rem;
}

.cta-section .cta-button {
    background-color: #FAFAFF;
    color: #1C1C1C;
    border-color: #FAFAFF;
}

.cta-section .cta-button:hover {
    background-color: transparent;
    color: #FAFAFF;
    border-color: #FAFAFF;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background-color: #1C1C1C;
    color: #FAFAFF;
    text-align: center;
}

.footer-text {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #DADDD8;
}

.footer-link {
    color: #DADDD8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FAFAFF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--nav-overlay-bg);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .value-props,
    .products,
    .packaging,
    .cta-section {
        padding: 5rem 0;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .packaging-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-card,
    .product-card,
    .packaging-card {
        padding: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .logo img {
        height: 32px;
    }

    .navbar.scrolled .logo img {
        height: 28px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

