/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Open Sans', sans-serif;
}

.btn-primary {
    background-color: #8a6d3b;
    color: white;
}

.btn-primary:hover {
    background-color: #6b522c;
    transform: translateY(-2px);
}

.btn-buy {
    background-color: #2c3e50;
    color: white;
}

.btn-buy:hover {
    background-color: #1a252f;
}

.btn-learn {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-learn:hover {
    background-color: #2c3e50;
    color: white;
}

.btn-collection {
    background-color: #8a6d3b;
    color: white;
}

.btn-collection:hover {
    background-color: #6b522c;
}

.btn-subscribe {
    background-color: #2c3e50;
    color: white;
    padding: 12px 24px;
}

/* Header */
.main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.site-tagline {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8a6d3b;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f5f0 0%, #e8e4dd 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Featured Section */
.featured-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.product-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8a6d3b;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

/* Collections Section */
.collections-section {
    padding: 80px 0;
    background-color: #f8f5f0;
}

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

.collection-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.collection-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.collection-info {
    padding: 25px;
}

.collection-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.collection-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-description {
    color: #555;
    margin-bottom: 20px;
}

.credentials {
    margin-top: 30px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.credential i {
    color: #8a6d3b;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f5f0;
}

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

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    color: #8a6d3b;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #555;
}

.contact-item i {
    color: #8a6d3b;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    color: #2c3e50;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #8a6d3b;
}

.newsletter-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.newsletter-description {
    color: #555;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.form-note {
    font-size: 0.85rem;
    color: #7f8c8d;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #bdc3c7;
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.copyright {
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-note {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .products-grid,
    .collections-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
}