/* Wrapper pour toutes les pages internes - Style uniforme comme voyages */
.page-wrapper {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section pour pages internes - Style uniforme comme voyages */
.page-hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    color: white;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hockey-pattern" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hockey-pattern)"/></svg>');
    opacity: 0.3;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

/* Background image for Camps page hero */
.page-hero.camps-hero {
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
                url('../images/optimized/camps/defenseurs-1200.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.page-hero.camps-hero::before { display: none; }

/* Background image for Coaches page hero */
.page-hero.coachs-hero {
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
                url('../images/optimized/camps/coach-1200.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.page-hero.coachs-hero::before { display: none; }

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
}

/* Parallax effect spécifique pour la page voyages */
.page-hero.voyages-hero {
    background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(18, 57, 90, 0.7)), 
                url('../images/camps/canada6.jpg');
    background-size: cover;
    background-position: center -200px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.page-hero.voyages-hero::before {
    display: none; /* Disable the pattern overlay for voyages */
}

@media (max-width: 768px) {
    .page-hero.voyages-hero {
        background-attachment: scroll; /* Disable parallax on mobile for performance */
        padding: 40px 0; /* Même responsive que les autres pages */
    }
}
