/* Site-wide styles for all pages */

/* Import modern styles */
@import url('/assets/css/modern-style.css');

/* Ensure container styles are available */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Make sure page-hero styles are applied globally */
.page-hero {
    position: relative !important;
    height: 650px !important;
    overflow: hidden !important;
    width: 100% !important;
    display: block !important;
}

.page-hero-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 1 !important;
}

.page-hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6)) !important;
    z-index: 2 !important;
}

.page-hero-content {
    position: relative !important;
    z-index: 3 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100% !important;
    color: white !important;
    text-align: center !important;
    padding: 60px 40px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.page-hero-content h1 {
    font-size: 3em !important;
    margin-bottom: 20px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7) !important;
    color: white !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.page-hero-content p {
    font-size: 1.3em !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
    max-width: 800px !important;
    color: white !important;
    line-height: 1.4 !important;
}

@media (max-width: 768px) {
    .page-hero {
        height: 400px !important;
    }
    .page-hero-content h1 {
        font-size: 2em !important;
    }
    .page-hero-content p {
        font-size: 1em !important;
    }
}
