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

body {
    font-family: 'Inter', sans-serif;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navigation Bar */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: transparent;

    z-index: 1000;
    margin: 0;
    padding: 0;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;

}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #5D4037;
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-size: 16px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8D6E63;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #333333;
    transition: all 0.3s ease;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 10px;
    margin-right: 30px;
}

.lang-btn {
    background: none;
    border: 1px solid #8D6E63;
    color: #8D6E63;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: #8D6E63;
    color: white;
}

.lang-btn.active {
    background-color: #8D6E63;
    color: white;
}

/* Mobile Responsiveness for Language Toggle */
@media (max-width: 768px) {
    .language-toggle {
        margin-right: 20px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 12px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 80vh;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-top: 80px;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out forwards;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 0 0 rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    color: #ffffff;
    animation: fadeInUp 1.5s ease-out forwards;
    opacity: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.hero-content h1:hover {
    transform: translateY(-15px);
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(-10px);
    }
}

/* Core Values */
.core-values {
    padding: 15px 0 30px 0;
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.value-item {
    text-align: left;
}

.value-icon {
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 500;
    color: #5D4037;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    font-weight: 400;
    color: #757575;
    line-height: 1.8;
}

/* Featured Collections */
.featured {
    padding: 30px 0;
    background-color: white;
}

.section-header {
    text-align: left;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #5D4037;
    margin-bottom: 10px;
}

.divider {
    width: 10px;
    height: 2px;
    background-color: #8D6E63;
    margin: 0 0 20px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 70%;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: left;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 500;
    color: #5D4037;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 16px;
    font-weight: 300;
    color: #757575;
}

.featured-footer {
    text-align: left;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #8D6E63;
    color: #8D6E63;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #5D4037;
}

/* Footer Preview */
.footer-preview {
    padding: 40px 0;
    border-top: 1px solid #F5F0E8;
    background-color: white;
}

.footer-preview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-preview-content p {
    font-size: 14px;
    font-weight: 300;
    color: #9E9E9E;
}

/* Tablet Responsiveness */
@media (max-width: 1199px) {
    /* Header */
    .logo {
        font-size: 20px;
    }

    .nav-list {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    /* Hero Section */
    .hero {
        min-height: 70vh;
        background-size: 100% auto;
    }
    
    .hero-content h1 {
        font-size: 56px;
    }

    .hero-content p {
        font-size: 20px;
    }

    /* Core Values */
    .core-values {
        padding: 15px 0 30px 0;
    }

    .values-grid {
        gap: 60px;
    }

    .value-item h3 {
        font-size: 18px;
    }

    .value-item p {
        font-size: 14px;
    }

    /* Featured Collections */
    .section-header h2 {
        font-size: 32px;
    }

    .product-info h3 {
        font-size: 18px;
    }

    .product-info p {
        font-size: 14px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Header */
    .header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background-color: transparent;
        z-index: 1000;
        margin: 0;
        padding: 0;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: left;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Hero Section */
    .hero {
        min-height: 60vh;
        background-size: 100% auto;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 18px;
    }

    /* Core Values */
    .core-values {
        padding: 15px 0 30px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .value-item h3 {
        font-size: 16px;
    }

    .value-item p {
        font-size: 14px;
    }

    /* Featured Collections */
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .product-info h3 {
        font-size: 16px;
    }

    .product-info p {
        font-size: 14px;
    }
}

/* Small Mobile Responsiveness */
@media (max-width: 480px) {
    /* Header */
    .logo {
        font-size: 18px;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* Core Values */
    .value-item h3 {
        font-size: 14px;
    }

    .value-item p {
        font-size: 12px;
    }

    /* Featured Collections */
    .section-header h2 {
        font-size: 24px;
    }

    .product-info h3 {
        font-size: 14px;
    }

    .product-info p {
        font-size: 12px;
    }

    .btn-outline {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Footer Styles */
.footer {
    padding: 40px 0;
    background-color: #5D4037;
    display: flex;
    align-items: flex-start;
}

.footer-content {
    width: 100%;
    padding: 0 20px;
    text-align: left;
}

.footer-logo {
    font-size: 20px;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    margin-right: 30px;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-nav a:hover {
    color: #F5F0E8;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 300;
    color: white;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
}

/* Animation for scroll effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}