/* Home Page specific styles appended to public/css/style.css */

/* Add these to style.css */
.hero-section {
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1602052793312-b99c2a92b5c7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.hero-content {
    max-width: 800px;
    padding: 0 var(--space-lg);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-size: 4rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: var(--space-lg);
    font-family: var(--font-body);
}

.hero-btn {
    border-color: var(--color-white);
    background: transparent;
}
.hero-btn:hover {
    background: var(--color-white);
    color: var(--color-text);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    font-style: italic;
    font-family: var(--font-heading);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: var(--color-white);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.product-img-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #f9f9f9;
}

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

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

.product-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-text);
    padding-bottom: 4px;
}

.product-info {
    padding: var(--space-md) 0;
    text-align: center;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.product-price {
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.story-teaser-section {
    background: var(--color-white);
    padding: var(--space-xxl) 0;
}

.teasers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (max-width: 900px) {
    .teasers-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
