/* Lifestyle Hero Section */
.lifestyle-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 2rem;
    margin-top: 60px;
}

.lifestyle-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: white;
}

.lifestyle-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.lifestyle-hero p {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1px, transparent 0);
    background-size: 40px 40px;
    animation: patternFade 1s ease-in forwards;
}

/* Collection Showcase Section */
.collection-showcase {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collection-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.collection-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.collection-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.collection-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Design Inspiration Section */
.design-inspiration {
    padding: 5rem 2rem;
    background-color: white;
}

.inspiration-slider {
    position: relative;
    margin-top: 3rem;
    padding: 0 4rem;
}

.inspiration-slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.inspiration-slide.active {
    opacity: 1;
}

.inspiration-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.inspiration-item:hover {
    transform: translateY(-5px);
}

.inspiration-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.inspiration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.inspiration-item:hover .inspiration-image img {
    transform: scale(1.1);
}

.inspiration-content {
    padding: 1.5rem;
    background: white;
}

.inspiration-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.inspiration-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: var(--primary-color);
    color: white;
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes patternFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.5;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .collection-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .inspiration-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lifestyle-hero {
        height: 50vh;
    }

    .lifestyle-hero h1 {
        font-size: 2.5rem;
    }

    .lifestyle-hero p {
        font-size: 1rem;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .inspiration-slide {
        grid-template-columns: 1fr;
    }

    .inspiration-slider {
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    .lifestyle-hero {
        height: 40vh;
        min-height: 300px;
    }

    .lifestyle-hero h1 {
        font-size: 2rem;
    }

    .collection-image {
        height: 250px;
    }

    .collection-content {
        padding: 1.5rem;
    }

    .collection-content h3 {
        font-size: 1.2rem;
    }

    .inspiration-image {
        height: 200px;
    }
}

/* High-Performance Animations */
.hardware-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .lifestyle-hero h1,
    .lifestyle-hero p {
        animation: none;
        transform: none;
        opacity: 1;
    }

    .hero-pattern {
        animation: none;
    }

    .collection-card:hover,
    .inspiration-item:hover {
        transform: none;
    }

    .collection-image img,
    .inspiration-image img {
        transition: none;
    }
} 