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

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.5;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #4F46E5;
    font-size: 2.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #4F46E5;
    color: white;
}

.btn-primary:hover {
    background-color: #4338CA;
}

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

.btn-secondary:hover {
    background-color: #4F46E5;
    color: white;
}

/* Header */
.header {
    background-color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.brand-name {
    font-size: 2rem;
    color: #4F46E5;
    margin: 0;
}

.brand-tagline {
    color: #059669;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.hero-title {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-image {
    text-align: center;
}

.placeholder-image {
    background: linear-gradient(45deg, #059669, #4F46E5);
    color: white;
    padding: 4rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background-color: #f8fafc;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: #059669;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    color: #4F46E5;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image .placeholder-image {
    min-height: 200px;
    background: linear-gradient(45deg, #A16207, #059669);
}

.product-image svg {
    width: 100%;
    height: 200px;
    border-radius: 12px 12px 0 0;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    color: #4F46E5;
    margin-bottom: 1rem;
}

.product-info p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* About Preview Section */
.about-preview {
    padding: 5rem 0;
    background-color: white;
}

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

.about-text h2 {
    color: #4F46E5;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #4F46E5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #4F46E5;
    margin-bottom: 1rem;
}

.step p {
    color: #6b7280;
}

/* Workshops Section */
.workshops {
    padding: 5rem 0;
    background-color: white;
}

.workshop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.workshop-text h3 {
    color: #4F46E5;
    margin-bottom: 1.5rem;
}

.workshop-text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.workshop-list {
    list-style: none;
    color: #4F46E5;
}

.workshop-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.workshop-list li:before {
    content: "•";
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.about-image img,
.workshop-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Seasonal Care Section */
.seasonal-care {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.seasonal-card {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.seasonal-card h3 {
    color: #4F46E5;
    margin-bottom: 1rem;
}

.seasonal-card p {
    color: #6b7280;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: white;
}

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

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 16px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item h3 {
    color: #4F46E5;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6b7280;
    margin: 0;
}

.contact-item a {
    color: #4F46E5;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #059669;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
}

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

.footer .logo {
    width: 40px;
    height: 40px;
}

.footer .brand-name {
    color: white;
    font-size: 1.2rem;
}

.footer .brand-tagline {
    color: #059669;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Centered Sections */
.centered-section {
    text-align: center;
}

.centered-section .container > * {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .workshop-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text,
    .about-text,
    .workshop-text {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seasonal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .products-grid,
    .process-steps,
    .seasonal-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}