/* Base Styles */
:root {
    --primary-color: #d4c1a8; /* Soft beige */
    --secondary-color: #8c7a64; /* Warm brown */
    --accent-color: #5c4d3c; /* Dark brown */
    --text-color: #333333;
    --light-color: #f9f5f0;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1rem;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(249, 245, 240, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(249, 245, 240, 0.98);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--accent-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.cta-button-small .btn {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Intro Section */
.intro {
    padding: 100px 0;
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 0 auto;
}

.section-header h2 {
    margin-bottom: 1.5rem;
}

.section-header .btn {
    margin-top: 1rem;
}

/* Feature Sections */
.about-feature,
.products {
    padding: 80px 0;
}

.feature-content,
.product-feature {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-text,
.product-text {
    flex: 1;
}

.feature-image,
.product-image {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
}

.product-feature.reverse {
    flex-direction: row-reverse;
}

.product-text h3 {
    font-size: 1.8rem;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

/* Product Banner */
.product-banner {
    padding: 100px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Product Categories */
.product-categories {
    padding: 100px 0;
    text-align: center;
}

.product-categories h2 {
    margin-bottom: 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.category-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Product Features */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--light-color);
    padding: 12px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Banner Highlights */
.banner-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.highlight-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 1.8rem;
    color: var(--white);
}

.highlight-item span {
    font-weight: 500;
    color: var(--white);
}

/* Section Divider */
.section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    position: relative;
}

.section-divider:before, .section-divider:after {
    content: '';
    height: 1px;
    background-color: var(--primary-color);
    flex: 1;
}

.section-divider span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    margin: 0 15px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background-color: var(--primary-color);
}

.cta-section .container {
    max-width: 900px;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section .btn {
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1 1 300px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

.footer-links {
    flex: 2 1 600px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.link-column {
    flex: 1 1 150px;
    margin-bottom: 30px;
}

.link-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.link-column h4:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.link-column ul li {
    margin-bottom: 10px;
}

.link-column ul li a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .feature-content,
    .product-feature,
    .product-feature.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .feature-text,
    .product-text,
    .feature-image,
    .product-image {
        width: 100%;
    }
    
    .product-features {
        justify-content: center;
    }
    
    .banner-highlights {
        gap: 15px;
    }
    
    .highlight-item {
        padding: 15px;
        flex: 1 1 150px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin: 20px 0;
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    nav ul {
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
}