/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #5a4a3a;
    background-color: #faf8f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #f5f1eb, #e8ddd4);
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(139, 115, 85, 0.1);
}

.logo {
    font-size: 3.5rem;
    font-weight: bold;
    color: #8b7355;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(139, 115, 85, 0.1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.tagline {
    font-size: 1.2rem;
    color: #a0896b;
    font-style: italic;
    margin-top: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #f9f6f1, #f2ebe1);
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 2.8rem;
    color: #6b5b4f;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #7a6a5a;
    line-height: 1.8;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #6b5b4f;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #d4c4a8, #8b7355);
    border-radius: 2px;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #fefcfa;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0e6d6;
}

.product-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.2);
}

.product-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8ddd4, #d4c4a8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-item:hover .product-image {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, #d4c4a8, #c4b49a);
}

.placeholder-image {
    font-size: 0.9rem;
    color: #8b7355;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

.product-name {
    font-size: 1.4rem;
    color: #6b5b4f;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-desc {
    color: #8a7a6a;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f7f3ee, #f1e8db);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.about-item {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #d4c4a8;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(139, 115, 85, 0.15);
    border-left-color: #8b7355;
}

.about-item h3 {
    font-size: 1.3rem;
    color: #6b5b4f;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-item p {
    color: #7a6a5a;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact/Footer Section */
.contact {
    background: linear-gradient(135deg, #6b5b4f, #8b7355);
    color: #f5f1eb;
    padding: 60px 0 40px;
    text-align: center;
}

.contact .section-title {
    color: #f5f1eb;
    margin-bottom: 30px;
}

.contact .section-title::after {
    background: linear-gradient(to right, #d4c4a8, #f5f1eb);
}

.contact-email {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.contact-email a {
    color: #f5f1eb;
    text-decoration: none;
    padding: 12px 30px;
    border: 2px solid #d4c4a8;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-email a:hover {
    background-color: #d4c4a8;
    color: #6b5b4f;
    transform: scale(1.05);
}

.copyright {
    font-size: 0.9rem;
    color: #d4c4a8;
    margin-top: 20px;
    opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b7355, #6b5b4f);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .logo {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-item,
    .about-item {
        padding: 25px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .products,
    .about {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 2.2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-description,
.section-title {
    animation: fadeInUp 0.8s ease-out;
}

.product-item {
    animation: fadeInUp 0.6s ease-out;
}

.about-item {
    animation: fadeInUp 0.7s ease-out;
}