/* Asian Minimal Design Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C3DCF0;
    --secondary-color: #91B9C1;
    --accent-color: #D8DDE1;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --white: #ffffff;
    --gray-placeholder: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--secondary-color);
}

/* Navigation */
.nav {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--secondary-color);
}

/* Banner - Split Screen Hero (50/50 vertical) */
.banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-image-section {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--gray-placeholder);
    display: block;
}

.banner-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.banner-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 2px;
    line-height: 1.6;
}

/* Sections */
.intro-section,
.products-section,
.story-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--secondary-color);
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
}

.narrative-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
    font-weight: 300;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background-color: var(--white);
    border: 1px solid var(--accent-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--gray-placeholder);
    display: block;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.product-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    flex-grow: 1;
}

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.story-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: var(--gray-placeholder);
    display: block;
}

.story-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: var(--accent-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Sustainability Section */
.sustainability-section {
    padding: 4rem 0;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.sustainability-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sustainability-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.sustainability-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: var(--gray-placeholder);
    display: block;
    border-radius: 8px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav li a:hover {
    color: var(--secondary-color);
}

.footer-map {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-color);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Form Styles */
.contact-section {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: var(--text-dark);
}

.success-message {
    text-align: center;
    padding: 4rem 2rem;
}

.success-message h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.success-message p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.success-message a {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
}

.success-message a:hover {
    background-color: var(--text-dark);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        display: block;
        border-bottom: 1px solid var(--accent-color);
    }

    .banner {
        height: auto;
        margin-bottom: 2rem;
    }

    .banner-content {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .banner-image-section {
        height: 300px;
    }

    .banner-text-section {
        padding: 2rem;
        align-items: center;
        text-align: center;
    }

    .banner-title {
        font-size: 2rem;
        text-align: center;
    }

    .banner-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .intro-section,
    .products-section,
    .story-section {
        padding: 2rem 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image {
        height: 250px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sustainability-image {
        height: 250px;
    }

    .sustainability-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        padding: 1rem 0;
    }

    .logo a {
        font-size: 1.2rem;
    }

    .banner-image-section {
        height: 250px;
    }

    .banner-text-section {
        padding: 1.5rem;
    }

    .banner-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .banner-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .narrative-text {
        font-size: 1rem;
    }

    .product-card {
        margin: 0 -15px;
    }

    .contact-form {
        padding: 1rem;
    }
}

/* Icon Styles - Linear Icons */
.icon {
    stroke: var(--secondary-color);
    stroke-width: 2;
    fill: none;
    width: 24px;
    height: 24px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 2px solid var(--secondary-color);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: var(--text-dark);
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: var(--secondary-color);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background-color: var(--text-dark);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--accent-color);
}

.cookie-btn-decline:hover {
    background-color: var(--accent-color);
}

.cookie-btn-settings {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.cookie-btn-settings:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

