/* HOMEPAGE BANNER STYLES */
.homepage-banner {
    position: relative;
    max-width: 1200px;
    height: 500px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
    animation: slideIn 1s ease forwards;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.shop-button {
    background-color: #ff6b81;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.shop-button:hover {
    background-color: #ff4757;
    transform: translateY(-2px);
}

/* Animation keyframes */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(-50%);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .homepage-banner {
        height: 350px;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .shop-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .homepage-banner {
        height: 280px;
    }
    
    .banner-content {
        left: 5%;
    }
    
    .banner-content h2 {
        font-size: 1.5rem;
    }
    
    .shop-button {
        font-size: 0.8rem;
    }
}