/* Boutique Page Specific Styles */

/* Hero Section */
.boutique-hero {
    padding: 8rem 2rem 4rem;
    background-color: #f8f8f8;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('media/boutique-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.boutique-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.boutique-hero-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Boutique Introduction Section */
.boutique-intro {
    padding: 4rem 2rem;
    background-color: white;
    text-align: center;
}

.boutique-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.boutique-intro > p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.boutique-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature {
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #D4AF37; /* Mustard gold */
    margin-bottom: 1rem;
}

.feature p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Collection Section */
.collection {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
    text-align: center;
}

.collection h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.collection > p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-5px);
}

.collection-image {
    height: 250px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-item:hover .collection-image img {
    transform: scale(1.05);
}

.collection-details {
    padding: 1.5rem;
}

.collection-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.collection-details p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Testimonial Section */
.boutique-testimonial {
    padding: 4rem 2rem;
    background-color: white;
    text-align: center;
}

.boutique-testimonial blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #333;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    padding: 0 2rem;
    position: relative;
}

.boutique-testimonial blockquote::before,
.boutique-testimonial blockquote::after {
    content: '"';
    font-size: 3rem;
    color: #D4AF37; /* Mustard gold */
    position: absolute;
}

.boutique-testimonial blockquote::before {
    top: -1rem;
    left: 0;
}

.boutique-testimonial blockquote::after {
    bottom: -2rem;
    right: 0;
}

.testimonial-author {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

/* CTA Section */
.boutique-cta {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
    text-align: center;
}

.boutique-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.boutique-cta p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .boutique-hero {
        padding: 6rem 1rem 3rem;
    }
    
    .boutique-hero-content h1 {
        font-size: 2rem;
    }
    
    .boutique-intro h2,
    .collection h2,
    .boutique-cta h2 {
        font-size: 1.8rem;
    }
    
    .boutique-features {
        grid-template-columns: 1fr;
    }
    
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .boutique-testimonial blockquote {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .boutique-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .boutique-intro,
    .collection,
    .boutique-testimonial,
    .boutique-cta {
        padding: 3rem 1rem;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .boutique-testimonial blockquote {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
}