
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #2c1810;
            background: linear-gradient(135deg, #faf7f2 0%, #f5f0e8 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #d3a686 0%, #a0522d 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgb(239, 227, 219), rgba(160, 82, 45, 0.7)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect width="1200" height="600" fill="%23f4e4bc"/><circle cx="200" cy="150" r="80" fill="%23deb887" opacity="0.3"/><circle cx="800" cy="400" r="120" fill="%23cd853f" opacity="0.2"/><circle cx="1000" cy="200" r="60" fill="%23d2691e" opacity="0.4"/></svg>');
            min-height: 100vh;
            padding-top: 8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background-size: cover;
            background-position: center;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient( #bd7a5c  );
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            box-shadow: 0 8px 25px rgba(147, 92, 72, 0.4);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(152, 99, 80, 0.6);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* About Section */
        .about {
            padding: 5rem 0;
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: #8b4513;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-image {
            text-align: center;
            position: relative;
        }

        .about-image img {
            width: 400px; 
            height: 400px;
            object-fit: cover;
            border-radius: 50%; 
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.55);

        }

    @media (max-width: 768px) {
        .about-image img {
            width: 250px;
            height: 250px;}
        }

        .about-image::before {
            content: '';
            font-size: 15rem;
            opacity: 0.1;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Products Section */
        .products {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f8f4f0 0%, #f0e6d8 100%);
        }

        .products h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #8b4513;
            margin-bottom: 3rem;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(#bd7a5c);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .product-icon {
            font-size: 4rem;
            text-align: center;
            margin-bottom: 1rem;
        }

        .product-card h3 {
            font-size: 1.5rem;
            color: #8b4513;
            margin-bottom: 1rem;
            text-align: center;
        }

        .product-card p {
            color: #666;
            text-align: center;
            line-height: 1.6;
        }

        /* Gallery Section */
        .gallery {
            padding: 5rem 0;
            background: white;
        }

        .gallery h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #8b4513;
            margin-bottom: 3rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            width: 250px;
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            background: #fdf6ef;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            justify-items: center;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .gallery-item::before {
            content: attr(data-emoji);
            font-size: 4rem;
            opacity: 0.6;
            display: none; 
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(44, 24, 16, 0.75);
            backdrop-filter: blur(5px);
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.4s ease;
            text-align: center;
        }

        .gallery-overlay h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
            letter-spacing: 0.5px;
        }

        .gallery-overlay p {
            font-size: 0.95rem;
            line-height: 1.4;
            font-style: italic;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }


        /* Contact Section */
        .contact {
            padding: 5rem 0;
            background: linear-gradient(rgba(160, 82, 45, 0.7), rgb(239, 227, 219));
            color: white;
        }
        .contact-content {
            text-align: center;
        }

        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .contact-item h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: rgba(147, 92, 72);
        }

        /* Footer */
        footer {
            background: linear-gradient( rgb(239, 227, 219), rgba(160, 82, 45, 0.7));
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .floating-images {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
        }

        @media (max-width: 768px) {
        .floating-images {
            display: none;
    }
}

        .floating-img {
            position: absolute;
            width: 150px;
            height: auto;
            opacity: 0.9;
            animation: float 8s ease-in-out infinite;
        }

        .floating-img2 {
            position: absolute;
            width: 200px;
            height: auto;
            opacity: 0.9;
            animation: float 8s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .burger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    }

    @media (max-width: 768px) {
        .burger {
            display: block;
        }

        .nav-links {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: #bd7a5c;
            position: absolute;
            top: 100%;
            left: 0;
            text-align: center;
        }

        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            padding: 1rem 0;
        }
    }

    img {
        max-width: 100%;
        height: auto;
    }

    @media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }

    .gallery-item {
        width: 100%;
        height: auto;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    footer {
        font-size: 0.9rem;
        padding: 1.5rem 0;
    }
}
