/* Banner Styles */
.banner-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 300px;
    overflow: hidden;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

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

.banner-container:hover img {
    transform: scale(1.05);
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    color: #fff;
    text-align: center;
    transition: transform 0.5s ease-in-out;
}

.banner-content h1 {
    font-size: 60px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
    font-family: 'Kaushan Script', cursive;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    line-height: 1.5;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.banner-container:hover .banner-content h1 {
    transform: translateY(-5px);
}

.banner-container:hover .banner-content p {
    transform: translateY(-3px);
}

/* Default Banner Style */
.default-banner {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.default-banner-text {
    text-align: center;
    color: white;
    padding: 20px;
}

@media (max-width: 992px) {
    .banner-container {
        height: 300px;
        max-width: 100%;
        border-radius: 0px;
    }
    
    .banner-content h1 {
        font-size: 40px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .banner-container {
        height: 300px;
        border-radius: 0px;
    }
    
    .banner-content {
        padding: 30px;
    }
    
    .banner-content h1 {
        font-size: 30px;
    }
    
    .banner-content p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .banner-container {
        height: 200px;
        border-radius: 0px;
        margin-top: 15px;
    }
    
    .banner-content {
        padding: 20px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 14px;
    }
}
