/* Festival Section Styles */
.festival-section {
    height: 90vh !important;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    padding-top: calc(2rem + 80px);
    box-sizing: border-box;
    margin: 0;
    scroll-margin-top: 80px;
    overflow: hidden;
}

.festival-section .container-fluid {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    max-height: 90vh;
    box-sizing: border-box;
}

.festival-section .row {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    max-height: 90vh;
}

.festival-section .col-12 {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    max-height: 90vh;
    box-sizing: border-box;
}

.festival-section .section-title {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.festival-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: calc(90vh - 15rem);
    min-height: 0;
    overflow: hidden;
}

.festival-image {
    max-width: 90%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border: none;
    box-shadow: none;
}

.festival-entry-text {
    flex-shrink: 0;
    margin-top: 1.5rem;
    text-align: center;
}

.festival-entry-text span {
    background-color: #798937;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .festival-section {
        height: 90vh !important;
        padding: 1rem;
        padding-top: calc(1rem + 70px);
    }
    
    .festival-section .section-title {
        margin-bottom: 1rem;
        font-size: 1.6rem;
    }
    
    .festival-image-container {
        max-height: calc(90vh - 10rem);
    }
    
    .festival-image {
        max-width: 95%;
    }
    
    .festival-entry-text {
        margin-top: 1rem;
    }
    
    .festival-entry-text span {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .festival-section {
        padding: 0.5rem;
        padding-top: calc(0.5rem + 60px);
    }
    
    .festival-section .section-title {
        margin-bottom: 0.5rem;
        font-size: 1.4rem;
    }
    
    .festival-image-container {
        max-height: calc(90vh - 8rem);
    }
    
    .festival-image {
        max-width: 98%;
    }
    
    .festival-entry-text {
        margin-top: 0.8rem;
    }
    
    .festival-entry-text span {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
}