﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

/* Header Styles */
header {
    background-color: #4b2c20;
    color: white;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

    .logo span {
        color: #d4a762;
    }

nav ul {
    display: flex;
    list-style: none;
}

    nav ul li {
        margin-right: 1.5rem;
    }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem;
        }

            nav ul li a:hover {
                color: #d4a762;
            }

/* Hero Section */
.hero {
    height: 85vh;
    background-image: linear-gradient(rgba(75, 44, 32, 0.7), rgba(75, 44, 32, 0.7)), url('https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/6f72e98a-e4e5-4a7c-9dec-8da379014ddf.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d4a762;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background-color: #d4a762;
    color: #4b2c20;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid #d4a762;
}

    .btn:hover {
        background-color: transparent;
        color: #d4a762;
    }

/* Products Section */
.products {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #4b2c20;
    font-size: 2.2rem;
    position: relative;
}

    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background-color: #d4a762;
        margin: 1rem auto;
    }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .product-card:hover {
        transform: translateY(-10px);
    }

.product-image {
    height: 200px;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #4b2c20;
}

.product-desc {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d4a762;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    background-color: #4b2c20;
    color: white;
    padding: 4rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #d4a762;
    position: relative;
}

    .about-content h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: #d4a762;
        margin: 1rem 0;
    }

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: #2a1a12;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: right;
}

.footer-col h3 {
    color: #d4a762;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 0.8rem;
    }

        .footer-col ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

            .footer-col ul li a:hover {
                color: #d4a762;
            }

.social-links a {
    display: inline-block;
    margin-left: 1rem;
    color: white;
    font-size: 1.3rem;
    transition: color 0.3s;
}

    .social-links a:hover {
        color: #d4a762;
    }

.copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

        nav ul li {
            margin-right: 0;
            margin-bottom: 0.5rem;
        }

    .hero h1 {
        font-size: 1.8rem;
    }
}

