/**
 * Gordon Nvan - Entry Page Styles
 * File: crystal/entry-glow.css
 * Homepage specific styles
 */

/* Hero Grid Section */
.hero-grid-section-a3k7 {
    padding: 60px 0;
}

.hero-grid-container-m9p2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.hero-grid-item-b5n8 {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.hero-grid-item-b5n8 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-grid-item-b5n8:hover img {
    transform: scale(1.05);
}

.hero-grid-overlay-r2t6 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(25, 25, 112, 0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.hero-grid-overlay-r2t6 h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hero-grid-overlay-r2t6 p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Stats Section */
.stats-section-k4m7 {
    background: var(--midnight-blue);
    padding: 80px 0;
    margin: 60px 0;
}

.stats-grid-p9w3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item-n6b2 {
    color: var(--pearl-white);
}

.stat-number-x8v4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--rose-gold-light);
    margin-bottom: 10px;
}

.stat-label-m3k9 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Section Headers */
.section-header-q7n4 {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-q7n4 h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header-q7n4 p {
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Products */
.featured-section-r8j2 {
    padding: 60px 0;
}

.products-grid-m5p9 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card-k2w7 {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.product-card-k2w7:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.product-image-wrapper-n4b8 {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image-wrapper-n4b8 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-k2w7:hover .product-image-wrapper-n4b8 img {
    transform: scale(1.08);
}

.product-info-s6t3 {
    padding: 20px;
}

.product-name-p9m4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--midnight-blue);
    margin-bottom: 8px;
}

.product-price-r7k2 {
    font-size: 1.1rem;
    color: var(--rose-gold);
    font-weight: 500;
}

.product-price-r7k2 .original {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Brand Story Section */
.brand-story-section-b3n9 {
    padding: 80px 0;
    background: linear-gradient(to right, var(--pearl-cream) 50%, var(--champagne) 50%);
}

.brand-story-grid-x7m4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-story-image-p8k2 {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.brand-story-image-p8k2 img {
    width: 100%;
    height: auto;
}

.brand-story-content-n5r7 h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.brand-story-content-n5r7 p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.brand-signature-m3w8 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--rose-gold);
    font-style: italic;
}

/* Style Guide Section */
.style-guide-section-t6j4 {
    padding: 80px 0;
}

.style-grid-q9p2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.style-card-m7n5 {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.style-card-m7n5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.style-card-m7n5:hover img {
    transform: scale(1.05);
}

.style-overlay-k3w8 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(25, 25, 112, 0.8), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
}

.style-overlay-k3w8 h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.style-overlay-k3w8 p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section-r4m9 {
    padding: 80px 0;
    background: var(--soft-blush);
}

.testimonials-grid-p7k3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card-n8w2 {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.testimonial-stars-m4p9 {
    color: var(--rose-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text-b6k3 {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author-r9n7 {
    font-weight: 500;
    color: var(--midnight-blue);
}

.testimonial-location-k2m8 {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter-section-x5p7 {
    padding: 80px 0;
    text-align: center;
}

.newsletter-form-m9k4 {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

.newsletter-input-b3n8 {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.newsletter-input-b3n8:focus {
    outline: none;
    border-color: var(--rose-gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid-m5p9 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid-p9w3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .style-grid-q9p2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid-p7k3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-grid-container-m9p2 {
        grid-template-columns: 1fr;
    }
    
    .products-grid-m5p9 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-story-grid-x7m4 {
        grid-template-columns: 1fr;
    }
    
    .brand-story-section-b3n9 {
        background: var(--pearl-cream);
    }
    
    .style-grid-q9p2 {
        grid-template-columns: 1fr;
    }
    
    .stat-number-x8v4 {
        font-size: 2.5rem;
    }
    
    .section-header-q7n4 h2 {
        font-size: 2rem;
    }
}
