/* Banner-style section headings */
.section-banner {
    width: 100%;
    background-color: #0d6efd;
    padding: 25px 0;
    margin: 20px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: bannerEntrance 1s ease-out;
}

@keyframes bannerEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    pointer-events: none;
}

.section-banner h1 {
    color: white;
    margin: 0;
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.section-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-banner .badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: inline-block;
}

/* Add extra spacing between document and reservation sections */
.reservations-section {
    margin-top: 80px;
    padding-top: 20px;
}

/* Ensure proper container layout */
.section-banner + .row {
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .section-banner h1 {
        font-size: 1.8rem;
    }
    
    .section-banner p {
        font-size: 0.9rem;
    }
}