/* Home Page Sections */
.hero {
    background: var(--primary-sage);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--primary-sage);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--soft-shadow);
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
    background: var(--cream);
}

/* Collections Section */
.collections-section {
    padding: 5rem 0;
    background: var(--primary-sage);
}

.collections-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.collections-section .subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

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

.collection-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: all 0.4s ease;
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.collection-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.collection-info {
    padding: 2rem;
}

.collection-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.collection-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.shop-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--primary-sage);
    color: var(--white);
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background: var(--dark-sage);
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter {
    background: var(--primary-sage);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--white);
}

.newsletter-form button {
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-sage);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--soft-shadow);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }
}
