/* Page Header - Unified Styles */

/* Base Page Header Styles */
.page-header {
    background-color: #043266;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}


.page-header:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: linear-gradient(135deg, rgba(200, 200, 180, 0.3), transparent);
    transform: rotate(-15deg);
}





.page-header:after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 40%;
    height: 150%;
    background: linear-gradient(135deg, rgba(180, 180, 160, 0.3), transparent);
    transform: rotate(-15deg);
}

.page-header .container {
    padding: 0 150px;
    position: relative;
    z-index: 1;
}

/* Breadcrumb Navigation */
.page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 14px;
    opacity: 0.9;
}

.page-header .breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.page-header .breadcrumb a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.page-header .breadcrumb span {
    opacity: 0.6;
}

/* Title Styles */
.page-header__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Subtitle Styles */
.page-header__subtitle {
    font-size: 18px;
    opacity: 0.95;
    color: white;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Actions (Buttons) */
.page-header__actions {
    margin-top: 30px;
}

.page-header__actions .cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1E90FF;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-header__actions .cta-btn:hover {
    background-color: #0070e0;
    transform: translateY(-2px);
}

/* Page-Specific Variations */

/* Vision Page */
.page-header--vision {
    /* text-align: center; */
}

.page-header--vision .container {
    /* text-align: center; */
}

/* Projets Page */
.page-header--projets {
    text-align: left;
}

.page-header--projets .container {
    text-align: left;
}

/* Partenaires Page */
.page-header--partenaires {
    text-align: left;
}

.page-header--partenaires .container {
    text-align: left;
}

/* All Posts Page */
.page-header--all-posts {
    text-align: left;
}

.page-header--all-posts .container {
    text-align: left;
}

.page-header--all-posts .page-header__title {
    font-size: 56px;
    margin-bottom: 0;
}

/* Comment Adhérer Page */
.page-header--comment-adherer {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header--comment-adherer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: linear-gradient(135deg, rgba(200, 200, 180, 0.3), transparent);
    transform: rotate(-15deg);
}

.page-header--comment-adherer::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 40%;
    height: 150%;
    background: linear-gradient(135deg, rgba(180, 180, 160, 0.3), transparent);
    transform: rotate(-15deg);
}

.page-header--comment-adherer .container {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-header {
        padding: 80px 30px;
    }

    .page-header .container {
        padding: 0 80px;
    }

    .page-header__title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 20px;
    }

    .page-header .container {
        padding: 0 20px;
    }

    .page-header__title {
        font-size: 32px;
    }

    .page-header__subtitle {
        font-size: 16px;
    }

    .page-header .breadcrumb {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .page-header--all-posts .page-header__title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 50px 15px;
    }

    .page-header .container {
        padding: 0 15px;
    }

    .page-header__title {
        font-size: 28px;
    }

    .page-header__subtitle {
        font-size: 14px;
    }

    .page-header--all-posts .page-header__title {
        font-size: 32px;
    }
}

