
/* Styles for ecole-ici.html, moved from inline styles */

.page-content {
    background: #f4f7f5;
    color: #10241c;
}

.page-content section {
    padding: 4rem 0;
}

.simple-hero {
    background: linear-gradient(135deg, #1a3a2e 0%, #2c5530 100%);
    color: #fff;
    text-align: center;
    padding: 6rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.hero-centered .accent-eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-centered h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.hero-lead {
    font-size: 1.3rem;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
    color: #ffffff;
}

.founder-message {
    background: #ffffff;
}

.founder-container {
    display: grid;
    grid-template-columns: minmax(260px, 320px) 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.founder-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-content {
    background: #f8fbf9;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.founder-content h2 {
    margin-top: 0;
    font-size: 2rem;
    color: #1a3a2e;
}

.founder-quote {
    margin: 1.5rem 0;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #2f302f;
}

.founder-signature {
    font-weight: 600;
    color: #1a3a2e;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
    color: #1a3a2e;
}

.section-header p {
    max-width: 760px;
    margin: 0 auto;
    color: #51645d;
    line-height: 1.6;
}

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

.highlight-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 18px 45px rgba(19, 40, 33, 0.08);
    border: 1px solid rgba(26, 58, 46, 0.08);
    display: grid;
    gap: 0.6rem;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(26, 58, 46, 0.12);
    color: #1a3a2e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.program-structure {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.program-structure::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/img/escaliers.png") center/cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.program-structure > * {
  position: relative;
  z-index: 1;
}


.module-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(26, 58, 46, 0.1);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.06);
}

.module-header {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.module-number {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #1a3a2e;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-info h3 {
    margin: 0 0 0.35rem;
    font-size: 1.4rem;
}

.module-duration {
    margin: 0;
    color: #5b6c64;
    font-style: italic;
}

.module-content ul {
    margin: 0;
    padding-left: 1.2rem;
    color: #36443d;
    line-height: 1.6;
}

.module-content h4 {
    margin-top: 0;
    color: #1a3a2e;
}

.admission-section {
    background: linear-gradient(135deg, rgba(26, 58, 46, 0.05), rgba(44, 85, 48, 0.08));
}

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

.admission-box {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(21, 33, 26, 0.08);
    border: 1px solid rgba(26, 58, 46, 0.08);
}

.requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.25rem;
}

.requirement-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    align-items: flex-start;
}

.requirement-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(26, 58, 46, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a3a2e;
    font-size: 1.4rem;
}

.requirement-text strong {
    display: block;
    color: #1a3a2e;
    margin-bottom: 0.2rem;
}

.practical-info {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.practical-info::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/img/chemine.png") center/cover no-repeat;
  opacity: 0.25; /* très transparent */
  pointer-events: none;
  z-index: 0;
}

.practical-info > * {
  position: relative;
  z-index: 1;
}


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

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid rgba(26, 58, 46, 0.08);
    box-shadow: 0 15px 40px rgba(14, 23, 35, 0.08);
}

.info-card h3 {
    margin-top: 0;
    color: #1a3a2e;
}

.info-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #46554f;
    line-height: 1.6;
}

.price-highlight {
    margin-top: 3rem;
    background: #1a3a2e;
    color: #fff;
    text-align: center;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(8, 15, 10, 0.35);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
}

.price-details {
    margin: 1rem auto 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    background: #ffffff;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.75rem 0;
}

.cta-button {
    background: #1a3a2e;
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(26, 58, 46, 0.2);
}

.cta-button-secondary {
    background: transparent;
    color: #1a3a2e;
    border: 1px solid rgba(26, 58, 46, 0.3);
}

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.module-card--seminar {
    border: 2px solid #2c5530;
}

.module-number--seminar {
    background: #2c5530;
}

.module-content .sub-list {
    list-style: none;
    padding-left: 2rem;
    margin-top: 0.5rem;
}

.module-content .sub-list li {
    padding: 0.5rem 0 0.5rem 2rem;
}

.module-content .sub-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

.public-cible-container {
    max-width: 800px;
    margin: 4rem auto;
    text-align: center;
}

.public-cible-title {
    color: #1a3a2e;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.public-cible-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.public-cible-list {
    list-style: none;
    padding: 0;
    text-align: left;
    color: #4a4a4a;
    line-height: 2;
}

.cta-sub-text {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.85;
}

/* Utility classes */
.u-mt-1 {
    margin-top: 1rem !important;
}

.u-mb-0-5 {
    margin-bottom: 0.5rem !important;
}

.calendar-block {
    margin-bottom: 1.25rem;
}

.calendar-block ul {
    margin: 0;
    padding-left: 1.25rem;
}

.event-label {
    font-weight: 600;
    display: block;
}

.event-meta {
    display: block;
    font-size: 0.9rem;
    color: #4a4a4a;
}

.event-note {
    font-size: 0.9rem;
    color: #6b7280;
}

@media (max-width: 992px) {
    .founder-container {
        grid-template-columns: 1fr;
    }
    .module-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .simple-hero h1 {
        font-size: 2.2rem;
    }
    .program-highlights {
        grid-template-columns: 1fr;
    }
    .admission-grid {
        grid-template-columns: 1fr;
    }
    .practical-info .info-grid {
        grid-template-columns: 1fr;
    }
}
