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

body {
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #2D3436;
    background-color: #F4F1E8;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2D3436;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2D5934;
    color: #F4F1E8;
}

.btn-primary:hover {
    background-color: #1E3A24;
}

.btn-secondary {
    background-color: transparent;
    color: #2D5934;
    border: 2px solid #2D5934;
}

.btn-secondary:hover {
    background-color: #2D5934;
    color: #F4F1E8;
}

/* Header */
.header {
    background-color: #F4F1E8;
    padding: 20px 0;
    border-bottom: 1px solid #E5DFD0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2D5934;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #F4F1E8;
}

.contact h2 {
    text-align: center;
    color: #2D5934;
    margin-bottom: 50px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #2D5934;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-details h3 {
    color: #2D5934;
    margin-bottom: 5px;
}

.contact-details p {
    color: #636E72;
    margin: 0;
}

.contact-form {
    background-color: #FEFFFE;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #2D5934;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #2D5934;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E5DFD0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #FEFFFE;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2D5934;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F4F1E8 0%, #E8E2D5 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    color: #2D5934;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: #636E72;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(45, 89, 52, 0.1);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #FEFFFE;
    text-align: center;
}

.about-content h2 {
    color: #2D5934;
    margin-bottom: 30px;
}

.about-content p {
    color: #636E72;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: #F4F1E8;
    border-radius: 12px;
}

.feature-item h3 {
    color: #2D5934;
    margin-bottom: 15px;
}

.feature-item p {
    color: #636E72;
    line-height: 1.5;
}

/* Featured Collections */
.collections {
    padding: 80px 0;
    background-color: #F4F1E8;
    text-align: center;
}

.collections h2 {
    color: #2D5934;
    margin-bottom: 30px;
}

.collections p {
    color: #636E72;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.collection-item {
    background-color: #FEFFFE;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-5px);
}

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

.collection-item h3 {
    color: #2D5934;
    margin-bottom: 15px;
    padding: 0 20px;
}

.collection-item p {
    color: #636E72;
    line-height: 1.5;
    padding: 0 20px 20px;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #FEFFFE;
    text-align: center;
}

.products h2 {
    color: #2D5934;
    margin-bottom: 30px;
}

.products p {
    color: #636E72;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.product-card {
    background-color: #FEFFFE;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-card h3 {
    color: #2D5934;
    margin-bottom: 15px;
}

.product-card p {
    color: #636E72;
    margin-bottom: 20px;
    line-height: 1.5;
}

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

/* Process Section */
.process {
    padding: 80px 0;
    background-color: #F4F1E8;
    text-align: center;
}

.process h2 {
    color: #2D5934;
    margin-bottom: 30px;
}

.process p {
    color: #636E72;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background-color: #FEFFFE;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-step h3 {
    color: #2D5934;
    margin-bottom: 15px;
}

.process-step p {
    color: #636E72;
    line-height: 1.5;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background-color: #FEFFFE;
    text-align: center;
}

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

.why-content {
    text-align: left;
}

.why-content h2 {
    color: #2D5934;
    margin-bottom: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.why-item h3 {
    color: #2D5934;
    margin-bottom: 10px;
}

.why-item p {
    color: #636E72;
    line-height: 1.5;
}

.why-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(45, 89, 52, 0.1);
}

/* Seasonal Offerings */
.seasonal {
    padding: 80px 0;
    background-color: #F4F1E8;
    text-align: center;
}

.seasonal h2 {
    color: #2D5934;
    margin-bottom: 30px;
}

.seasonal p {
    color: #636E72;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.seasonal-item {
    background-color: #FEFFFE;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.seasonal-item:hover {
    transform: translateY(-5px);
}

.seasonal-item h3 {
    color: #2D5934;
    margin-bottom: 15px;
}

.seasonal-item p {
    color: #636E72;
    line-height: 1.5;
}

/* Corporate Gifting */
.corporate {
    padding: 80px 0;
    background-color: #FEFFFE;
    text-align: center;
}

.corporate h2 {
    color: #2D5934;
    margin-bottom: 30px;
}

.corporate p {
    color: #636E72;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.corporate-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.corporate-feature {
    text-align: center;
    padding: 30px;
    background-color: #F4F1E8;
    border-radius: 12px;
}

.corporate-feature h3 {
    color: #2D5934;
    margin-bottom: 15px;
}

.corporate-feature p {
    color: #636E72;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #2D5934;
    color: #F4F1E8;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand {
    display: block;
}

.footer-brand .logo {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.footer-brand .brand-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #F4F1E8;
    margin-bottom: 10px;
}

.footer-description {
    color: #B2BEC3;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.footer-column h4 {
    color: #C5A572;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-column ul li a {
    color: #E8E2D5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #F4F1E8;
}

.footer-bottom {
    border-top: 1px solid #1E3A24;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #B2BEC3;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image img {
        height: 250px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .why-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-content {
        text-align: center;
    }
    
    .why-image img {
        height: 250px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .corporate-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}