/* Hero Section Styles */
.anime-card-status {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    padding: 4px 8px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-transform: capitalize;
    z-index: 2;
}
.anime-card-status.finished { background-color: green; }
.anime-card-status.ongoing { background-color: maroon; }
.anime-card-status.upcoming { background-color: deeppink; }

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    max-height: 800px;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    height: 100%;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 20px;
    max-width: 600px;
    color: #fff;
    animation: fadeIn 1.5s ease-out;
}

.hero-logo {
    margin-bottom: 30px;
    max-width: 180px;
    transform: translateY(-20px);
    opacity: 0;
    animation: slideDown 0.6s ease-out forwards;
}

.hero-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    max-width: 100%;
    object-fit: contain;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 700;
    transform: translateY(-15px);
    opacity: 0;
    animation: slideDown 0.6s ease-out 0.2s forwards;
}

.hero-content p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(-10px);
    animation: slideDown 0.6s ease-out 0.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(-5px);
    animation: slideDown 0.6s ease-out 0.6s forwards;
}

/* Animation Keyframes */
@keyframes heroZoom {
    0% {transform: scale(1);}
    100% {transform: scale(1.1);}
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-section {
        height: 90vh; 
    }
    
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.9) 100%);
        align-items: flex-end;
        padding-bottom: 30px;
    }
    
    .hero-content {
        padding: 15px;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-logo {
        margin: 0 auto 20px;
        max-width: 140px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 12px 24px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 80vh;
        min-height: 400px;
    }
    
    .hero-logo {
        max-width: 120px;
        margin: 0 auto 15px;
        display: flex;
        justify-content: center;
    }
    
    .hero-logo img {
        width: 100%;
        max-height: 60px;
        object-fit: contain;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
} 