/* 
 * Banner Responsive Fix CSS
 * For Yemen Union in Turkey - Kayseri Branch Website
 * This file improves banner responsiveness on small screens
 */

/* Ensure text stays in the white section on small screens */
@media (max-width: 768px) {
    /* Adjust banner height to give more space for content */
    .page-banner {
        padding: 5rem 0 !important;
        min-height: 200px !important;
    }
    
    /* Adjust the colored sections to ensure text stays visible */
    .page-banner::before {
        height: 25% !important; /* Reduce red section */
    }
    
    .page-banner .white-section {
        top: 25% !important;
        height: 50% !important; /* Increase white section */
    }
    
    .page-banner::after {
        height: 25% !important; /* Reduce black section */
    }
    
    /* Center the content vertically in the white section */
    .page-banner .container {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        padding: 0 15px !important;
    }
    
    /* Ensure text is visible with proper contrast */
    .page-banner h2 {
        font-size: 1.6rem !important;
        margin-bottom: 0.3rem !important;
        color: var(--black) !important;
        background-color: rgba(255, 255, 255, 0.7) !important;
        padding: 5px 10px !important;
        border-radius: 4px !important;
        display: inline-block !important;
    }
    
    .page-banner p {
        font-size: 0.9rem !important;
        background-color: rgba(255, 255, 255, 0.7) !important;
        padding: 5px 10px !important;
        border-radius: 4px !important;
        display: inline-block !important;
        margin-top: 0.3rem !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .page-banner {
        padding: 4rem 0 !important;
    }
    
    .page-banner h2 {
        font-size: 1.4rem !important;
    }
    
    .page-banner p {
        font-size: 0.8rem !important;
    }
}
