
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F5F5DC; /* Cream */
    color: #5A3E1B; /* Darker Brown */
    background-image: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=1350&q=80');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    line-height: 1.6;
}
header {
    background-color: #6F4E37; /* Softer Brown */
    color: #F5F5DC;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #F5F5DC;
    font-size: 1.8rem;
    cursor: pointer;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}
nav a {
    color: #F5F5DC;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #D2B48C; /* Tan */
}
.nav-active ul {
    transform: translateX(0);
}
.hero {
    background-image: linear-gradient(rgba(111, 78, 55, 0.7), rgba(245, 245, 220, 0.7)), url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #F5F5DC;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}
.hero h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}
.hero p {
    font-size: 1.3rem;
    margin: 1rem 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}
.btn {
    background-color: #6F4E37;
    color: #F5F5DC;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(111, 78, 55, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover {
    background-color: #8B5E3C;
    box-shadow: 0 6px 12px rgba(139, 94, 60, 0.6);
}
section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 248, 220, 0.85);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
#catalog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.product {
    background-color: #FFF8DC;
    border: 1px solid #8B4513;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.15);
    transition: transform 0.3s ease;
}
.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}
.product h3 {
    margin: 0.75rem 0;
    font-weight: 700;
    color: #8B4513;
}
.product p {
    margin: 0.5rem 0;
    color: #8B4513;
}
.about {
    background-color: #FFF8DC;
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #5A3E1B;
    font-size: 1.1rem;
    line-height: 1.7;
}
footer {
    background-color: #6F4E37;
    color: #F5F5DC;
    padding: 3rem 2rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.footer-section h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #FFFFFF;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: #F5F5DC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: #D2B48C;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #F5F5DC;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background-color: rgba(245, 245, 220, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background-color: #D2B48C;
    color: #6F4E37;
    transform: translateY(-2px);
}

.copyright {
    background-color: #3E2723;
    color: #F5F5DC;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    margin: 0;
    border-top: 2px solid #D2B48C;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #FFF8DC;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.modal-content h2 {
    margin-top: 0;
    color: #5A3E1B;
}
.modal-content form {
    display: flex;
    flex-direction: column;
}
.modal-content label {
    margin: 0.5rem 0 0.2rem;
    color: #5A3E1B;
}
.modal-content input, .modal-content textarea, .modal-content select {
    padding: 0.5rem;
    border: 1px solid #8B4513;
    border-radius: 8px;
    font-size: 1rem;
    color: #5A3E1B;
}
.modal-content button {
    margin-top: 1rem;
    background-color: #6F4E37;
    color: #F5F5DC;
    padding: 0.75rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(111, 78, 55, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.modal-content button:hover {
    background-color: #8B5E3C;
    box-shadow: 0 6px 12px rgba(139, 94, 60, 0.6);
}
@media (max-width: 768px) {
    header {
        position: relative;
    }
    .hamburger {
        display: block;
    }
    nav ul {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 250px;
        background-color: #6F4E37;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 4rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        display: flex;
    }
    nav a {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid #F5F5DC;
    }
    .nav-active ul {
        transform: translateX(0);
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero {
        height: 300px;
    }
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1.1rem;
    }
    section {
        padding: 1rem;
    }
    .about {
        padding: 1rem;
    }
    .modal-content {
        padding: 1rem;
    }
    #catalog {
        grid-template-columns: 1fr;
    }
}

/* Modal fade-in animation */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

/* Success message styles */
#successMessage {
    display: none;
    background-color: #6F4E37;
    color: #F5F5DC;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin: 1rem auto;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(111, 78, 55, 0.5);
}

/* Show success message */
#successMessage.show {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}
