/* Centre Aéré - Styles CSS */

/* Variables CSS */
:root {
    --primary-color: #1a5490;
    --secondary-color: #f39c12;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s ease;
}

/* Reset et base */
.centre-aere-main {
    overflow-x: unset;
    overflow-y: unset;
    height: auto;
    min-height: unset;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: unset;
    height: auto;
    min-height: unset;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2980b9 50%, #3498db 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
}

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

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem 0;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    transform: translateY(30px);
    opacity: 0;
    animation: slideInUp 1s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0.97;
    animation: fadeIn 1s ease 0.8s forwards;
    margin-top: 5.5rem;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.badge i {
    color: var(--secondary-color);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    animation: slideInFromBottom 0.8s ease-out;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: expandLine 1.2s ease-out 0.5s forwards;
}

@keyframes expandLine {
    0% {
        width: 0;
    }
    100% {
        width: 60px;
    }
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    animation: slideInFromBottom 0.8s ease-out 0.3s both;
}

/* Présentation Section */
.presentation-section {
    padding: 3rem 0 2.5rem 0;
    background: var(--bg-light);
}

.presentation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.presentation-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.presentation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.presentation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: white;
}

.presentation-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.presentation-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Bouton d'inscription CTA */
.inscription-cta {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    animation: slideInFromBottom 0.8s ease-out 0.6s both;
}

.inscription-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2980b9 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(26, 84, 144, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inscription-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
    transition: left 0.5s ease;
}

.inscription-btn:hover::before {
    left: 100%;
}

.inscription-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(26, 84, 144, 0.4);
    background: linear-gradient(135deg, #2980b9 0%, var(--primary-color) 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-arrow {
    font-size: 1.1em;
    transition: transform 0.3s ease;
    animation: arrowBounce 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.inscription-btn:hover .btn-arrow {
    transform: translateY(3px);
    animation-play-state: paused;
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .inscription-cta {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .inscription-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        gap: 0.8rem;
    }
}

/* Programme Section */
.programme-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.programme-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    max-width: 950px;
    margin: 0 auto 2.5rem auto;
}

.programme-col {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    min-width: 320px;
}

.programme-item {
    display: flex;
    align-items: flex-start;
    gap: 1.3rem;
    background: rgba(255,255,255,0.92);
    border-radius: 22px;
    box-shadow: 0 4px 18px rgba(26,84,144,0.09);
    padding: 1.3rem 1.7rem;
    transition: box-shadow 0.2s;
    position: relative;
    min-height: 90px;
}

.programme-item:hover {
    box-shadow: 0 8px 32px rgba(26,84,144,0.13);
}

.programme-badge {
    min-width: 84px;
    min-height: 84px;
    background: linear-gradient(135deg,#1a5490 60%,#f39c12 100%);
    color: #fff;
    font-size: 1.45rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(26,84,144,0.10);
    margin-top: 0.1em;
    letter-spacing: 1px;
    border: 3px solid #fff;
}

.programme-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.programme-title {
    font-size: 1.22rem;
    font-weight: 900;
    color: #1a5490;
    margin-bottom: 0.2rem;
}

.programme-desc {
    font-size: 1.07rem;
    color: #2c3e50;
    line-height: 1.6;
}

.programme-activites {
    background: linear-gradient(90deg,#fffbe6 60%,#ffe0b2 100%);
    border-left: 6px solid #f39c12;
    box-shadow: 0 6px 32px rgba(243,156,18,0.10);
}

.programme-activites .programme-badge {
    background: linear-gradient(135deg,#f39c12 60%,#ffe0b2 100%);
    color: #fff;
    border: 3px solid #fffbe6;
    min-width: 100px;
    min-height: 100px;
    font-size: 1.18rem;
    line-height: 1.2;
    padding: 0.2em 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.programme-activites .programme-title {
    color: #b36b00;
}

.programme-activites .programme-desc {
    color: #b36b00;
}

.programme-activites .programme-extra {
    color: #1a5490;
    font-weight: 700;
    margin-top: 0.3em;
}

.programme-activites .programme-sortie {
    color: #e67e22;
    font-size: 0.99em;
    margin-top: 0.2em;
    display: flex;
    align-items: center;
    gap: 0.4em;
}

.programme-activites .programme-sortie i {
    color: #f39c12;
    font-size: 1.1em;
}

.programme-niveau {
    display: block;
    font-size: 0.98em;
    color: #7f8c8d;
    font-weight: 600;
    margin-top: 0.1em;
}

@media (max-width: 900px) {
    .programme-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    .programme-col {
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .programme-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
        padding: 1.1rem 1rem;
    }
    .programme-badge {
        min-width: 60px;
        min-height: 60px;
        font-size: 1.08rem;
    }
    .programme-activites .programme-badge {
        min-width: 70px;
        min-height: 70px;
        font-size: 1rem;
    }
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.info-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0.5rem 0;
}

.info-card .reduction {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Formulaire d'inscription */
.inscription-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2980b9 100%);
    color: white;
}

.inscription-section .section-header h2,
.inscription-section .section-subtitle {
    color: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.inscription-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
    color: var(--text-dark);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.form-section-title i {
    color: var(--secondary-color);
}

.form-row {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.form-group {
    margin-bottom: 0.7rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 84, 144, 0.1);
}

/* Parent Card */
.parent-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    box-shadow: 0 12px 48px rgba(26,84,144,0.13);
    border: 1px solid rgba(26,84,144,0.08);
    transition: box-shadow 0.4s, border 0.4s, transform 0.3s;
    margin-bottom: 2.8rem;
    padding: 2.8rem 2.8rem 2.2rem 2.8rem;
}

.parent-card:hover {
    box-shadow: 0 24px 64px rgba(26,84,144,0.18);
    transform: translateY(-4px) scale(1.018);
    border-color: rgba(26,84,144,0.2);
}

.parent-card:focus {
    outline: none !important;
}

/* Enfants Card - même style que parent-card */
.enfants-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    box-shadow: 0 12px 48px rgba(26,84,144,0.13);
    border: 1px solid rgba(26,84,144,0.08);
    transition: box-shadow 0.4s, border 0.4s, transform 0.3s;
    margin-bottom: 2.8rem;
    padding: 2.8rem 2.8rem 2.2rem 2.8rem;
}

.enfants-card:hover {
    box-shadow: 0 24px 64px rgba(26,84,144,0.18);
    transform: translateY(-4px) scale(1.018);
    border-color: rgba(26,84,144,0.2);
}

.enfants-card:focus {
    outline: none !important;
}

/* Sections enfant optimisées */
.enfant-prenom-section {
    margin-bottom: 1.5rem;
}

.enfant-prenom-section .form-group {
    margin-bottom: 0;
}

.enfant-prenom-section .form-group input {
    font-size: 1.1rem;
    padding: 1.2rem;
    border: 2px solid rgba(26,84,144,0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
    width: 100%;
}

.enfant-prenom-section .form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26,84,144,0.1);
}

.enfant-classe-section {
    margin-bottom: 1rem;
}

.enfant-classe-section .form-group {
    margin-bottom: 0;
}

.parent-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.parent-fields .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.parent-fields .form-group label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.parent-fields .form-group input {
    padding: 1.2rem;
    font-size: 1.1rem;
    border: 2px solid rgba(26,84,144,0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.parent-fields .form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26,84,144,0.1);
}

.parent-contact-label {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-preferences-box {
    background: white;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(26,84,144,0.05);
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.2rem;
    flex-wrap: nowrap;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(26,84,144,0.05);
    border: 2px solid rgba(26,84,144,0.1);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-dark);
}

.checkbox-option:hover {
    background: rgba(26,84,144,0.1);
    border-color: rgba(26,84,144,0.2);
    transform: translateY(-2px);
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-option i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.checkbox-option.selected {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.checkbox-option.selected i {
    color: white;
}

.checkbox-option:active {
    transform: translateY(0);
}

.form-help {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

/* Enfant Block */
.enfant-block {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    box-shadow: 0 12px 48px rgba(26,84,144,0.13);
    border: 1px solid rgba(26,84,144,0.08);
    transition: box-shadow 0.4s, border 0.4s, transform 0.3s;
    animation: enfantAppear 0.8s cubic-bezier(.23,1.01,.32,1) both;
    margin-bottom: 2.8rem;
    padding: 2.8rem 2.8rem 2.2rem 2.8rem;
}

.enfant-block:hover {
    box-shadow: 0 24px 64px rgba(26,84,144,0.18);
    transform: translateY(-4px) scale(1.018);
    border-color: rgba(26,84,144,0.2);
}

.enfant-block:focus {
    outline: none !important;
}

/* Suppression de tous les contours de focus indésirables dans le formulaire */
.inscription-section *:focus,
.parent-card *:focus,
.enfants-card *:focus,
.enfant-block *:focus {
    outline: none !important;
}

@keyframes enfantAppear {
    from { opacity:0; transform: translateY(30px) scale(0.98);}
    to { opacity:1; transform: none; }
}

.enfant-header {
    font-size: 1.18rem;
    font-weight:700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid #e1e8ed;
    position: relative;
}

.enfant-header h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.supprimer-enfant {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    background: linear-gradient(135deg,#e74c3c,#f39c12);
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    z-index: 3;
    transition: all 0.2s;
    cursor: pointer;
    padding: 0;
}

.supprimer-enfant:hover {
    transform: scale(1.10);
}

/* Classe Selector */
.classe-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    justify-items: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 420px;
}

.classe-option {
    width: 100%;
    min-width: 100px;
    max-width: 130px;
    margin: 0;
    padding: 0;
}

.classe-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.classe-custom {
    width: 100%;
    min-width: 100px;
    max-width: 130px;
    min-height: 48px;
    height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(26,84,144,0.07);
    background: #fff;
    transition: all 0.2s;
}

.classe-option:hover .classe-custom {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26,84,144,0.15);
    border-color: var(--primary-color);
}

.classe-option input[type="radio"]:checked + .classe-custom {
    background: linear-gradient(135deg, var(--primary-color) 70%, var(--secondary-color) 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(26,84,144,0.13);
}

.classe-custom i {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    text-align: center;
}

.classe-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    text-align: center;
}

/* Ajouter Enfant */
.ajouter-enfant {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    border: 2px dashed #e1e8ed;
    border-radius: var(--border-radius);
    background: rgba(26, 84, 144, 0.02);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.ajouter-enfant:hover {
    border-color: var(--primary-color);
    background: rgba(26, 84, 144, 0.05);
}

.ajouter-btn {
    background: linear-gradient(135deg, var(--secondary-color), #e67e22);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-light);
}

.ajouter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.ajouter-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ajouter-btn i {
    font-size: 1.1rem;
}

.ajouter-enfant .form-help {
    color: #7f8c8d;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
    padding: 0.5rem 1rem;
    background: rgba(127, 140, 141, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(127, 140, 141, 0.2);
}

/* Payment Card */
.payment-card {
    background: linear-gradient(135deg, #fffbe6 0%, #ffe0b2 100%);
    border: 2.5px solid #f9d29d;
    border-radius: 28px;
    padding: 2.8rem 2.8rem 2.2rem 2.8rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 2.5rem 0;
    position: relative;
    overflow: visible;
    box-shadow: 0 12px 48px rgba(243,156,18,0.10);
    transition: box-shadow 0.3s, border 0.3s;
}
.payment-card:hover {
    box-shadow: 0 24px 64px rgba(243,156,18,0.18);
    border-color: #f39c12;
}
.payment-badge {
    background: linear-gradient(135deg, #f39c12, #ffe0b2);
    color: white;
    padding: 0.7rem 2.2rem;
    border-radius: 50px 50px 0 0;
    font-weight: 900;
    font-size: 1.1rem;
    position: absolute;
    top: -2.1rem;
    right: 2.5rem;
    box-shadow: 0 4px 18px rgba(243,156,18,0.13);
    z-index: 2;
    letter-spacing: 1px;
}
@media (max-width: 700px) {
    .payment-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1rem 1.5rem 1rem;
    }
    .payment-badge {
        right: 1rem;
        top: -2.1rem;
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}
.payment-details h4 {
    font-size: 1.2rem;
    color: #1a5490;
    margin-bottom: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.payment-details .price {
    font-size: 2.2rem;
    color: #e74c3c;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.payment-details .price-detail {
    font-size: 1.1rem;
    color: #f39c12;
    margin-bottom: 1rem;
    font-style: italic;
}
.payment-details .reduction {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}
.payment-icon {
    background: linear-gradient(135deg, #f9d29d, #f39c12);
    color: #fffbe6;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 18px rgba(243,156,18,0.13);
    border: 3px solid #fffbe6;
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 3rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn::after {
    content: "↑";
    font-size: 1.2rem;
    font-weight: 900;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 70%, #fffbe6 100%);
    position: relative;
    overflow: visible;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><text x="50%" y="50%" text-anchor="middle" fill="%23f9d29d" font-size="120" font-family="serif" opacity="0.07">"</text></svg>') center 30%/60% no-repeat;
    z-index: 0;
    pointer-events: none;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.testimonial-card {
    background: linear-gradient(135deg, #fff 80%, #f9d29d 100%);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(26,84,144,0.10), 0 2px 8px #ffe0b2;
    padding: 2.8rem 2.2rem 2.2rem 2.2rem;
    position: relative;
    overflow: visible;
    border: 2.5px solid #f9d29d;
    transition: box-shadow 0.3s, border 0.3s, transform 0.3s;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) both;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -1.2rem;
    left: 1.2rem;
    font-size: 5rem;
    color: #f9d29d;
    opacity: 0.25;
    font-family: serif;
    line-height: 1;
    z-index: 0;
}
.testimonial-card::after {
    content: '"';
    position: absolute;
    bottom: -1.2rem;
    right: 1.2rem;
    font-size: 4.5rem;
    color: #f9d29d;
    opacity: 0.18;
    font-family: serif;
    line-height: 1;
    z-index: 0;
}
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 16px 48px rgba(26,84,144,0.13), 0 4px 16px #ffe0b2;
    border-color: #f39c12;
}
.testimonial-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.testimonial-content p {
    font-size: 1.22rem;
    line-height: 1.7;
    color: #1a5490;
    margin: 0;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 8px #fffbe6;
}
@media (max-width: 700px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 2rem 1.2rem 1.2rem 1.2rem;
    }
}

/* Album Photo */
.album-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.album-card {
    background: linear-gradient(135deg, rgba(26,84,144,0.05) 0%, rgba(243,156,18,0.05) 100%);
    border: 2px solid rgba(26,84,144,0.1);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    position: relative;
}

.album-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(26,84,144,0.2);
}

.album-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.album-content {
    flex: 1;
}

.album-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.album-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.album-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.album-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.album-btn i {
    font-size: 0.9rem;
}

.album-badge {
    display: inline-block;
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(90deg, #f39c12 0%, #ffd700 100%);
    color: #1a5490;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.35em 1.1em;
    border-radius: 2em;
    box-shadow: 0 2px 8px rgba(243,156,18,0.12);
    letter-spacing: 1px;
    z-index: 2;
    border: 2px solid #fffbe6;
    text-shadow: 0 1px 0 #fffbe6;
}

@media (max-width: 768px) {
    .album-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .album-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .album-content h3 {
        font-size: 1.5rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.contact-info {
    text-align: center;
}

.contact-label {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-value {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-cta-card {
    background: linear-gradient(135deg, rgba(26,84,144,0.1) 0%, rgba(243,156,18,0.1) 100%);
    border: 2px solid rgba(26,84,144,0.2);
}

.contact-cta-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.cta-btn i {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .programme-grid {
        grid-template-columns: 1fr;
    }
    
    .programme-col {
        gap: 1rem;
    }
    
    .inscription-form {
        padding: 2rem;
    }
    
    .parent-fields {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .classe-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checkbox-group {
        gap: 1rem;
    }
    
    .album-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .album-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .album-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        flex-direction: column;
    }
    
    .contact-content {
        text-align: center;
    }
    
    .programme-grid {
        grid-template-columns: 1fr;
    }
    
    .programme-col {
        gap: 1rem;
    }
    
    .inscription-form {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .presentation-card,
    .info-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .presentation-card,
    .info-card,
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .inscription-form {
        padding: 1rem;
    }
    
    .classe-selector {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .checkbox-option {
        width: 100%;
        justify-content: center;
    }
    
    .submit-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .payment-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .payment-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .payment-details .price {
        font-size: 1.5rem;
    }
}

/* Animations d'apparition */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Améliorations pour l'accessibilité */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible pour l'accessibilité */
button:focus,
input:focus,
select:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Amélioration du contraste pour les textes */
.testimonial-content p {
    color: #2c3e50;
    font-weight: 500;
}

.contact-value {
    color: #1a5490;
    font-weight: 700;
}

/* Effet de hover amélioré pour les cartes */
.presentation-card:hover,
.info-card:hover,
.testimonial-card:hover,
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Animation du bouton submit */
.submit-btn {
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

/* Amélioration des badges d'enfants */
.enfant-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-light);
}

.enfant-badge::before {
    content: "👶";
    font-size: 1.2rem;
}

/* Amélioration des messages d'erreur */
.field-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.field-error::before {
    content: "⚠️";
    font-size: 1rem;
}

/* Amélioration du loading state */
.submit-btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Amélioration des transitions */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animations discrètes pour l'apparition des éléments */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(26,84,144,0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(26,84,144,0.6);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Application des animations aux éléments */
.presentation-card {
    animation: slideInFromBottom 0.8s ease-out;
}

.presentation-card:nth-child(2) {
    animation-delay: 0.2s;
}

.presentation-card:nth-child(3) {
    animation-delay: 0.4s;
}

.programme-item {
    animation: slideInFromLeft 0.6s ease-out;
}

.programme-col:nth-child(2) .programme-item {
    animation: slideInFromRight 0.6s ease-out;
}

.info-card {
    animation: slideInFromBottom 0.7s ease-out;
}

.info-card:nth-child(2) {
    animation-delay: 0.1s;
}

.info-card:nth-child(3) {
    animation-delay: 0.2s;
}

.info-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Animation subtile pour les icônes */
.card-icon i,
.info-icon i,
.contact-icon i {
    animation: floatIcon 3s ease-in-out infinite;
}

.card-icon:hover i,
.info-icon:hover i,
.contact-icon:hover i {
    animation: pulseGlow 1s ease-in-out;
}

/* Animation douce pour les boutons */
.submit-btn,
.cta-btn,
.album-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-btn:hover,
.cta-btn:hover,
.album-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

/* Animation des témoignages */
.testimonial-card {
    animation: slideInFromBottom 0.8s ease-out;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.4s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 0.6s;
}

/* Animation du formulaire d'inscription */
.form-section {
    animation: slideInFromBottom 0.6s ease-out;
}

/* Animation des options de contact */
.checkbox-option {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox-option:hover {
    transform: translateY(-1px) scale(1.02);
}

/* Animation de breathing pour les éléments importants */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero-badges .badge:hover {
    animation: breathe 2s ease-in-out infinite;
}

/* Animation pour les cartes de contact */
.contact-card {
    animation: slideInFromBottom 0.7s ease-out;
}

.contact-cta-card {
    animation: slideInFromBottom 0.8s ease-out 0.2s both;
}

.album-card {
    animation: slideInFromBottom 0.6s ease-out;
}

/* Optimisation des performances */
.presentation-card,
.info-card,
.testimonial-card,
.contact-card,
.album-card {
    will-change: transform;
}

/* Amélioration du contraste pour les icônes */
.card-icon i,
.info-icon i,
.contact-icon i,
.album-icon i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.hero-section.hero-image-bg {
    background: url('/images/centre_aere/plumy.webp') center center/cover no-repeat;
    position: relative;
}

.hero-section.hero-image-bg .hero-background {
    background: none !important;
    animation: none !important;
}

.hero-section.hero-image-bg .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(26,84,144,0.4) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-section.hero-image-bg .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-section.hero-image-bg .hero-title {
    color: #fff;
    text-shadow: 0 3px 25px rgba(0,0,0,0.6);
}

.hero-section.hero-image-bg .badge {
    background: rgba(0,0,0,0.38);
    border: 2.5px solid rgba(255,255,255,0.55);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
}

.hero-section.hero-image-bg .badge i {
    color: #f39c12;
}

@media (max-width: 768px) {
    .hero-section.hero-image-bg {
        background-position: center 30%;
    }
}

/* Sublime toute la box enfant, le champ prénom, et le message CE1 */
.enfant-block {
    background: linear-gradient(135deg,#f8f9fa 80%,#eaf1fa 100%);
    border: 1.5px solid #b3c6e0;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(26,84,144,0.07);
    padding: 2.2rem 2.2rem 1.7rem 2.2rem;
    margin-bottom: 2.2rem;
}
.enfant-header {
    font-size: 1.18rem;
    font-weight:700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid #e1e8ed;
    position: relative;
}
.form-row {
    gap: 2.2rem;
    align-items: flex-start;
}
.form-group label {
    font-size: 1.08rem;
    color: var(--primary-color);
    font-weight: 700;
}
.form-group input[type=text] {
    font-size: 1.15rem;
    height: 54px;
    border-radius: 12px;
    border: 2px solid #b3c6e0;
    padding: 0 1.2rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(26,84,144,0.04);
    transition: border 0.2s, box-shadow 0.2s;
}
.form-group input[type=text]:focus {
    border:2px solid var(--primary-color);
    box-shadow:0 0 0 3px rgba(26,84,144,0.08);
}
.classe-selector {
    margin-top: 0.2rem;
}
.classe-option {
    min-width: 110px;
    max-width: 150px;
}
.classe-custom {
    min-width: 110px;
    max-width: 150px;
    height: 58px;
    font-size: 1.08rem;
}
.classe-option input[type="radio"]:checked + .classe-custom {
    box-shadow: 0 6px 24px rgba(26,84,144,0.16);
}
.ce1-alert {
    width: 100%;
    max-width: 100%;
    margin-top: 1.5rem;
    justify-content: flex-start;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    background: linear-gradient(90deg,#fffbe6 60%,#ffe0b2 100%);
    color: #b36b00;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(243,156,18,0.08);
    font-size: 1.08rem;
    font-weight: 700;
    padding: 0.7rem 1.2rem;
    border-left: 5px solid #f39c12;
}
.ce1-alert i {
    color: #f39c12;
    font-size: 1.3rem;
}
.supprimer-enfant {
    top: 12px;
    right: 12px;
}

/* Section parents */
.parent-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(26,84,144,0.10);
    border: 2px solid #eaf1fa;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.parent-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 800px) {
    .parent-fields { grid-template-columns: 1fr; }
}
.parent-fields .form-group label {
    font-size: 1.12rem;
    color: #1a5490;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.parent-fields .form-group input {
    font-size: 1.15rem;
    height: 54px;
    border-radius: 12px;
    border: 2px solid #b3c6e0;
    padding: 0 1.2rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(26,84,144,0.04);
    transition: border 0.2s, box-shadow 0.2s;
}
.parent-fields .form-group input:focus {
    border:2px solid var(--primary-color);
    box-shadow:0 0 0 3px rgba(26,84,144,0.08);
}
.parent-contact-label {
    font-size: 1.08rem;
    color: #1a5490;
    font-weight: 700;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.checkbox-group {
    justify-content: flex-start;
    gap: 1.2rem;
}
.checkbox-option {
    min-width: 140px;
    font-size: 1.08rem;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(26,84,144,0.07);
    border: 2px solid #eaf1fa;
    background: linear-gradient(135deg,#fff,#f8f9fa 80%);
    transition: all 0.2s;
}
.checkbox-option.selected {
    border-color: #f39c12;
    background: linear-gradient(135deg,#fffbe6 60%,#ffe0b2 100%);
    color: #b36b00;
    box-shadow: 0 4px 20px rgba(243,156,18,0.13);
}
.checkbox-option.selected i {
    color: #f39c12;
}

/* Section paiement */
.payment-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(26,84,144,0.10);
    border: 2px solid #ffe0b2;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 2.2rem;
}
.payment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,#f39c12 60%,#ffe0b2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 2px 12px rgba(243,156,18,0.13);
}
.payment-details h4 {
    color: #1a5490;
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.payment-details .price {
    font-size: 2rem;
    color: #e74c3c;
    font-weight: 900;
    margin-bottom: 0.2rem;
}
.payment-details .price-detail {
    font-size: 1.15rem;
    color: #f39c12;
    margin-bottom: 1rem;
    font-style: italic;
}
.payment-details .reduction {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}
.payment-badge {
    position: absolute;
    top: -18px;
    right: 24px;
    background: linear-gradient(135deg,#f39c12 60%,#ffe0b2 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 0.5rem 1.3rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(243,156,18,0.13);
    letter-spacing: 1px;
    z-index: 2;
}

.programme-sortie-global { background: linear-gradient(90deg,#fffbe6 60%,#ffe0b2 100%); border-radius: 18px; box-shadow: 0 2px 12px rgba(243,156,18,0.08); padding: 1.3rem 2rem; margin: 2.5rem auto 0 auto; max-width: 900px; font-size: 1.18rem; color: #b36b00; font-weight: 700; display: flex; align-items: center; gap: 0.7em; justify-content: center; border-left: 7px solid #f39c12; }
.programme-sortie-global i { color: #f39c12; font-size: 1.4em; margin-right: 0.5em; }

.contact-preferences-box { background: #fff; border-radius: 20px; box-shadow: 0 4px 24px rgba(26,84,144,0.07); padding: 2.2rem 1.5rem 1.2rem 1.5rem; max-width: 600px; margin: 0 auto 2.2rem auto; display: flex; flex-direction: column; align-items: center; }
.parent-contact-label { text-align: center; font-size: 1.18rem; margin-bottom: 1.2rem; }
.checkbox-group { justify-content: center; gap: 2.5rem; margin-bottom: 1.2rem; }
.form-help { text-align: center; font-size: 1.08rem; margin-top: 0.7rem; }

@media (max-width: 600px) {
    .checkbox-group {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 2.5rem;
}
@media (max-width: 900px) {
    .albums-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Section commentaires - Design sublime */
.commentaires-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.95) 100%);
    border-radius: 32px;
    padding: 3.5rem 3rem;
    margin: 3rem 0;
    border: 3px solid transparent;
    background-clip: padding-box;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 80px rgba(26, 84, 144, 0.12),
        0 15px 40px rgba(0, 0, 0, 0.06),
        inset 0 2px 0 rgba(255, 255, 255, 0.8),
        inset 0 -2px 0 rgba(26, 84, 144, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.commentaires-section:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 35px 100px rgba(26, 84, 144, 0.15),
        0 20px 50px rgba(0, 0, 0, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 0 rgba(26, 84, 144, 0.08);
}

.commentaires-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a5490 0%, #f39c12 30%, #ff6b35 50%, #f39c12 70%, #1a5490 100%);
    background-size: 300% 100%;
    animation: shimmerGradient 4s ease-in-out infinite;
    border-radius: 32px 32px 0 0;
}

.commentaires-section::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.02) 0%, rgba(243, 156, 18, 0.02) 100%);
    pointer-events: none;
}

@keyframes shimmerGradient {
    0%, 100% { background-position: 300% 0; }
    50% { background-position: -300% 0; }
}

.commentaires-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.commentaires-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #1a5490, #f39c12);
    border-radius: 2px;
}

.commentaires-header .form-section-title {
    color: #1a5490 !important;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-shadow: 0 2px 4px rgba(26, 84, 144, 0.1);
    position: relative;
}

.commentaires-header .form-section-title i {
    background: linear-gradient(135deg, #f39c12 0%, #ff6b35 50%, #ff9500 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    box-shadow: 
        0 12px 30px rgba(243, 156, 18, 0.4),
        0 6px 15px rgba(243, 156, 18, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: iconPulse 3s ease-in-out infinite;
    position: relative;
}

.commentaires-header .form-section-title i::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #f39c12, #ff6b35, #ff9500);
    border-radius: 23px;
    z-index: -1;
    opacity: 0.3;
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.commentaires-header .section-subtitle {
    color: #64748b;
    font-size: 1.2rem;
    margin-top: 0.8rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.commentaire-form {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

.commentaire-form .form-group {
    margin-bottom: 0;
    position: relative;
}

.commentaire-form label {
    color: #1a5490 !important;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 2px rgba(26, 84, 144, 0.1);
}

.commentaire-form label::before {
    content: '✉️';
    font-size: 1.1em;
    margin-right: 0.3rem;
}

.commentaire-form textarea {
    width: 100%;
    min-height: 160px;
    resize: vertical;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    border: 3px solid #e2e8f0;
    border-radius: 24px;
    padding: 2rem;
    font-size: 1.1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #2d3748;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.06),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.commentaire-form textarea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.commentaire-form textarea:hover {
    border-color: #cbd5e0;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.commentaire-form textarea:focus {
    border-color: #1a5490;
    box-shadow: 
        0 0 0 6px rgba(26, 84, 144, 0.15),
        0 15px 45px rgba(26, 84, 144, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.95),
        inset 0 -2px 0 rgba(26, 84, 144, 0.05);
    outline: none;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 50%, #ffffff 100%);
    transform: translateY(-5px) scale(1.01);
}

.commentaire-form textarea:focus::before {
    transform: translateX(100%);
}

.commentaire-form textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
    font-weight: 400;
}

/* Effet de caractères restants */
.commentaire-form .form-group::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.commentaire-form textarea:focus + .form-group::after {
    background: linear-gradient(90deg, transparent 0%, #1a5490 50%, transparent 100%);
}

@media (max-width: 768px) {
    .commentaires-section {
        padding: 2.5rem 1.8rem;
        margin: 2rem 0;
        border-radius: 24px;
    }
    
    .commentaires-header .form-section-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .commentaires-header .form-section-title i {
        width: 45px;
        height: 45px;
        font-size: 1.2em;
    }
    
    .commentaires-header .section-subtitle {
        font-size: 1.1rem;
    }
    
    .commentaire-form textarea {
        min-height: 120px;
        padding: 1.2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .commentaires-section {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .commentaires-header .form-section-title {
        font-size: 1.4rem;
    }
    
    .commentaires-header .section-subtitle {
        font-size: 1rem;
    }
}

/* ==============================================
   SECTION COMMENTAIRES PUBLICS
   ============================================== */

.public-comments-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    margin: 3rem 0;
}

.public-comment-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.comment-form-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 84, 144, 0.1);
    position: relative;
    overflow: hidden;
}

.comment-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1a5490 0%, #f39c12 50%, #1a5490 100%);
    background-size: 200% 100%;
    animation: shimmerGradient 4s ease-in-out infinite;
}

@keyframes shimmerGradient {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

.comment-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(26, 84, 144, 0.1);
}

.comment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5490 0%, #f39c12 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 12px 30px rgba(26, 84, 144, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.9);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.comment-icon:hover {
    transform: translateY(-8px);
}

.comment-icon i {
    font-size: 32px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.comment-form-header h3 {
    font-size: 2rem;
    color: #1a5490;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.comment-form-header p {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.public-comment-form {
    margin-top: 2rem;
}

.public-comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.public-comment-form .form-group {
    display: flex;
    flex-direction: column;
}

.public-comment-form label {
    color: #1a5490;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.public-comment-form input,
.public-comment-form textarea {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #2c3e50;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.public-comment-form input:focus,
.public-comment-form textarea:focus {
    outline: none;
    border-color: #1a5490;
    box-shadow: 0 0 0 4px rgba(26, 84, 144, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    background: #ffffff;
}

.public-comment-form textarea {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.submit-comment-btn {
    background: linear-gradient(135deg, #1a5490 0%, #f39c12 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(26, 84, 144, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 2rem auto 0 auto;
    border: 2px solid transparent;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.submit-comment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 84, 144, 0.4);
    background: linear-gradient(135deg, #1e5ba6 0%, #f4a726 100%);
}

.submit-comment-btn:active {
    transform: translateY(-1px);
}

.submit-comment-btn i {
    font-size: 1.2rem;
}

.comment-result {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.comment-result.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.comment-result.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

/* Animation de chargement */
.submit-comment-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.submit-comment-btn.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive pour la section commentaires publics */
@media (max-width: 768px) {
    .public-comments-section {
        padding: 3rem 0;
        margin: 2rem 0;
    }
    
    .comment-form-card {
        padding: 2rem;
        border-radius: 24px;
    }
    
    .comment-icon {
        width: 60px;
        height: 60px;
    }
    
    .comment-icon i {
        font-size: 24px;
    }
    
    .comment-form-header h3 {
        font-size: 1.6rem;
    }
    
    .public-comment-form .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .submit-comment-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .comment-form-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .comment-form-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .comment-form-header h3 {
        font-size: 1.4rem;
    }
    
    .comment-form-header p {
        font-size: 1rem;
    }
    
    .public-comment-form .form-row {
        gap: 1rem;
    }
} 