@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');


/* FONTS */

p {
    font-size:1.3rem;
}

h1 {
    font-size:4rem;
}

h2 {
    font-size:3.2rem;
}

li {
    font-size:1.3rem;
}

:root {
    --primary-color: #db592e;
    --secondary-color: #096773;
    --light-color: #f5f5f5;
}

body {
    font-family: "Raleway", sans-serif;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

.site-header {
    background-color: var(--light-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 100px;
}

.main-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: bold;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.main-nav a::before,
.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a::before {
    left: 50%;
    transform: translateX(-50%);
}

.main-nav a::after {
    right: 50%;
    transform: translateX(50%);
}

.main-nav a:hover::before,
.main-nav a:hover::after {
    width: 70%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav.active {
        display: block;
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        background-color: var(--light-color);
        padding: 20px;
    }

    .main-nav.active ul {
        flex-direction: column;
    }

    .main-nav.active li {
        margin: 10px 0;
    }
}

/* Hero */

.hero {
    height: 70vh;
    background-image: url('./images/bg.png');
    background-size: cover;
    background-position: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero2 {
    height:40vh;
    background:#3bb6ba;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    color: #db592e;
}

.hero2 h1 {
    margin:10px 0;
    font-size:4rem;
}

.hero2 h2 {
    font-size:2.7rem;
}

.hero h2 {
    font-size: 2rem;
    margin:0 auto 20px auto;
    width:80%;
    color: #f5f5f5;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

@media screen and (max-width:720px) {
    .hero {
        height:90vh;
    }
    
    .hero2 {
        height:50vh;
    }

    .hero-content {
        padding:0;
    }
    .hero h1 {
        font-size:2.5rem;
    }

    .hero h2 {
        width:90%;
        font-size:1.5rem;
    }

    .mission-image img {
        width:90%;
    }

    .forma-pro {
        font-size:2rem;
    }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-primary, .cta-secondary {
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #db592e;
    color: #ffffff;
}

.cta-secondary {
    background-color: #0b8596;
    color: #ffffff;
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Notre mission */

.our-mission {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.our-mission .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.our-mission h3, .about-celine h3 {
    text-align: center;
    color:#065e6b;
    margin:100px 0 50px 0;
    font-size:2.3rem;
}

@media screen and (max-width:950px) {
    .our-mission h3, .about-celine h3 {
        font-size:1.5rem;
        width:90%;
        margin:100px auto 50px auto;
    }
}

.our-mission .btn-cta {
    display:flex;
    justify-content: center;
}

.our-mission .btn-cta a {
    text-align: center;
    background:#db592e;
    padding:15px 65px;
    color:#FFF;
    text-decoration:none;
    border-radius:20px;
}

.our-mission .btn-cta a:hover {
    background:#d73c1c;
    cursor:pointer;
}

.our-mission .section-title {
    text-align: center;
    color: #096773;
    font-size: 2.7rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.our-mission .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #096773, #db592e);
    border-radius: 2px;
}

.our-mission .section-title::before {
    content: "✦";
    display: block;
    color: #db592e;
    font-size: 3rem;
    margin-bottom: 10px;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mission-text {
    flex: 1;
}

.mission-text h3 {
    color: #db592e;
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-text p {
    color: #333;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mission-text ul {
    list-style-type: none;
    padding: 0;
}

.mission-text li {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.mission-text li::before {
    content: "✓";
    color: #db592e;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.mission-image {
    flex: 1;
    text-align: center;
}

.mission-image img {
    height: auto;
    display:inline;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .mission-content {
        flex-direction: column;
    }

    .mission-image {
        order: -1;
        margin-bottom: 30px;
    }
}

/* Notre vision */

.our-vision {
    background-color: #53b9c0;
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


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

.our-vision .container {
    position: relative;
    z-index: 1;
}

.our-vision .section-title {
    text-align: center;
    color: #db592e;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.our-vision .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FFF, #db592e);
    border-radius: 2px;
}

.our-vision .section-title::before {
    content: "✦";
    display: block;
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 10px;
}

.vision-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.vision-card {
    background-color: #ffffffe1;
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.vision-card .icon {
    font-size: 3rem;
    color: #db592e;
    margin-bottom: 20px;
}

.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #db592e;
}

.vision-card p {
    font-size: 1.3rem;
    line-height: 1.6;
    color:#000;
}

.vision-cta {
    text-align: center;
}

.our-vision .cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #db592e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.our-vision .cta-button:hover {
    background-color: #ffffff;
    color: #db592e;
    box-shadow: 0 5px 15px rgba(232, 78, 27, 0.3);
}

@media (max-width: 768px) {
    .vision-content {
        flex-direction: column;
    }
    
    .vision-card {
        margin-bottom: 20px;
    }
}

/* Nos Formations */

.our-formations {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.our-formations .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.our-formations .section-title {
    text-align: center;
    color: #096773;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.our-formations .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #096773, #db592e);
    border-radius: 2px;
}

.our-formations .section-title::before {
    content: "✦";
    display: block;
    color: #db592e;
    font-size: 3rem;
    margin-bottom: 10px;
}

.formations-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.formation-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.formation-card:hover {
    transform: translateY(-10px);
}

.card-content {
    padding: 30px;
}

.formation-card h3 {
    color: #096773;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.formation-card p {
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.formation-card ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.formation-card li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.formation-card li::before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #db592e;
    position: absolute;
    left: 0;
}

.learn-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #db592e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.learn-more:hover {
    background-color: #096773;
}

.personal {
    border-top: 5px solid #096773;
}

.professional {
    border-top: 5px solid #db592e;
}

@media (max-width: 768px) {
    .formations-container {
        flex-direction: column;
    }
    
    .formation-card {
        margin-bottom: 30px;
    }
}

/* Pourquoi Reiwa */

.why-choose-us {
    background: linear-gradient(135deg, #53b9c0, #db592e);
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('path-to-your-pattern-image.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.why-choose-us .section-title {
    text-align: center;
    color: #FFF;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why-choose-us .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FFF, #db592e);
    border-radius: 2px;
}

.why-choose-us .section-title::before {
    content: "✦";
    display: block;
    color: #FFF;
    font-size: 3rem;
    margin-bottom: 10px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.reason-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
    background-color: #db592e;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
}

.reason-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 20px;
    color: rgba(255, 255, 255, 0.3);
}

blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

cite {
    font-style: normal;
    font-weight: bold;
}

.cta-wrapper {
    text-align: center;
}

.why-choose-us .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #db592e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.why-choose-us .cta-button:hover {
    background-color: #ffffff;
    color: #db592e;
    box-shadow: 0 5px 15px rgba(232, 78, 27, 0.3);
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA */

.cta-section {
    background-color: #f5f5f5;
    color: #333;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #096773;
    font-weight: bold;
    text-transform: uppercase;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button, .cta-secondary-button {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button {
    background-color: #db592e; /* Couleur principale */
    color: #ffffff; /* Texte blanc */
}

.cta-button:hover {
    background-color: #d73c1c; /* Couleur légèrement plus foncée au survol */
}

.cta-secondary-button {
    background-color: #096773; /* Couleur secondaire */
    color: #ffffff; /* Texte blanc */
}

.cta-secondary-button:hover {
    background-color: #065e6b; /* Couleur légèrement plus foncée au survol */
}

/* Ajout d'une ombre subtile pour les boutons */
.cta-button, .cta-secondary-button {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column; /* Empile les boutons sur les petits écrans */
        align-items: center; /* Centre les boutons */
    }
}

/* Contact */

.contact-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.contact-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    color: #096773;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #096773;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 90%;
    margin:auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    resize: vertical;
}

.radio-group {
    margin-bottom: 10px;
}

.radio-group label {
    display: inline;
    margin-left: 5px;
    font-weight: normal;
}

select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23096773" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.submit-btn {
    background-color: #db592e;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #d73c1c;
}

.guide-download {
    text-align: center;
    margin-top: 40px;
}

.guide-download h3 {
    color: #096773;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-block;
    background-color: #096773;
    color: #ffffff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #065e6b;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }
}

/* Footer */

.site-footer {
    background-color: #53b9c0;
    color: #ffffff;
    padding: 60px 0 30px;
    font-family: Arial, sans-serif;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    margin-right: 40px;
    min-width: 200px;
}

.footer-section:last-child {
    margin-right: 0;
}

.footer-section h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #db592e;
}

.footer-links {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #db592e;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.footer-links a:hover::after {
    visibility: visible;
    transform: scaleX(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-right: 0;
        margin-bottom: 30px;
    }
}
/* Formations */

.formations {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: #096773;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

.formations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.formation-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.formation-card ul {
    text-align: justify;
}

.formation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.formation-icon {
    font-size: 3rem;
    color: #db592e;
    margin-bottom: 20px;
}

.formation-card h3 {
    color: #096773;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.formation-card p {
    color: #555;
    margin-bottom: 20px;
}

.btn-details {
    display: inline-block;
    padding: 10px 20px;
    background-color: #db592e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-details:hover {
    background-color: #096773;
}

.formation-card.pro {
    border: 2px solid #db592e;
}

.formation-card.pro .formation-icon {
    color: #096773;
}

@media (max-width: 768px) {
    .formations-grid {
        grid-template-columns: 1fr;
    }
}
/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    width: 70%;
    max-width: 800px;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
    color: #db592e;
    text-decoration: none;
    cursor: pointer;
}

.modal h2 {
    color: #096773;
    margin-bottom: 20px;
    font-size: 2rem;
}

.modal-body {
    color: #333;
    line-height: 1.6;
}

.modal-body h3 {
    color: #db592e;
    margin: 20px 0 10px;
}

.modal-body ul {
    padding-left: 20px;
    margin-bottom: 20px;
    list-style-type: none; /* Supprime les puces par défaut */
}

.modal-body li {
    margin-bottom: 10px;
    position: relative; /* Pour positionner l'icône */
    padding-left: 25px; /* Espace pour l'icône */
}

.modal-body li::before {
    content: '\2714'; /* Code Unicode pour une coche */
    position: absolute;
    left: 0;
    color: #4CAF50; /* Couleur verte pour la coche */
    font-weight: bold;
}

.modal-cta {
    font-weight: bold;
    color: #096773;
    margin: 20px 0;
}

.btn-inscription {
    display: inline-block;
    padding: 12px 24px;
    background-color: #db592e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.btn-inscription:hover {
    background-color: #096773;
}

@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        padding: 20px;
    }
}

.modal-highlight {
    background-color: #555;
    color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}

.modal-questions {
    background-color: #f0f8ff;
    border-left: 4px solid #096773;
    padding: 15px;
    margin: 20px 0;
}

.modal-questions p {
    margin-bottom: 10px;
    font-style: italic;
}

.modal-questions p:last-child {
    margin-bottom: 0;
}

.modal-tagline {
    background-color: #db592e;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
}

.modal-questions {
    background-color: #f0f8ff;
    border-left: 4px solid #096773;
    padding: 15px;
    margin-bottom: 20px;
}

.modal-questions p {
    margin-bottom: 10px;
    font-style: italic;
    color: #096773;
}

.modal-highlight {
    background-color: #f0f8ff;
    border: 2px solid #096773;
    padding: 15px;
    margin: 20px 0;
    font-weight: bold;
    color: #096773;
}

.modal-cta {
    font-size: 1.2em;
    color: #db592e;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

/* Celine */

.about-celine {
    background-color: #f8f9fa;
    padding: 80px 0 20px 0;
  }
  
  .about-celine .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .celine-content {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .celine-image {
    flex: 1;
  }
  
  .portrait {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .celine-text {
    flex: 2;
  }
  
  .about-celine h2 {
    color: #096773;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .about-celine .tagline {
    color: #db592e;
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
  }
  
  .about-celine p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .celine-qualifications {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
  }
  
  .celine-qualifications li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
  }
  
  .celine-qualifications li::before {
    content: "✓";
    color: #db592e;
    position: absolute;
    left: 0;
  }
  
  .about-celine .cta-button {
    display: inline-block;
    background-color: #db592e;
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .about-celine .cta-button:hover {
    background-color: #096773;
  }
  
  @media (max-width: 768px) {
    .celine-content {
      flex-direction: column;
      text-align: center;
    }
    
    .celine-qualifications li {
      padding-left: 0;
    }
    
    .celine-qualifications li::before {
      position: static;
      margin-right: 5px;
    }
  }

  /* Certifications */

  .certifications {
    background-color: #f8f9fa;
    padding: 80px 0 0 0;
}

.certifications .section-title {
    text-align: center;
    color: #096773;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.certifications .section-subtitle {
    text-align: center;
    color: #db592e;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.certifications .certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.certifications .certification-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.certifications .certification-card:hover {
    transform: translateY(-10px);
}

.certifications .certification-icon {
    font-size: 3rem;
    color: #db592e;
    margin-bottom: 20px;
}

.certifications .certification-card h3 {
    color: #096773;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.certifications .certification-card p {
    color: #555;
    font-size: 0.9rem;
}

.certifications .certification-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 130px;
    flex-wrap: wrap;
}

.profile-photo {
    width: 250px;
    height: auto;
    border-radius: 40%;
    margin-right: 30px;
    margin-bottom: 20px;
}

.profile-description {
    flex: 1;
    min-width: 300px;
}

.profile-description h3 {
    color: #096773;
    font-size: 2rem;
    margin-bottom: 5px;
}

.profile-description > p {
    color: #db592e;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.profile-text p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #db592e;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #096773;
}

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        align-items: center;
    }

    .profile-photo {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.certifications .certification-footer p {
    margin-bottom: 30px;
    color: #333;
}

.certification-footer {
    padding-bottom:120px;
}

.certifications .cta-button {
    display: inline-block;
    background-color: #db592e;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.certifications .cta-button:hover {
    background-color: #096773;
}

@media (max-width: 768px) {
    .certifications .certification-grid {
        grid-template-columns: 1fr; /* Une seule colonne sur petits écrans */
    }
}

/* Nos chiffres */

.key-figures {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.key-figures .section-title {
    text-align: center;
    color: #096773;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.key-figures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.key-figure-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.key-figure-card:hover {
    transform: translateY(-10px);
}

.key-figure-icon {
    font-size: 3rem;
    color: #db592e;
    margin-bottom: 20px;
}

.key-figure-number {
    color: #096773;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.key-figure-card p {
    color: #555;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .key-figures-grid {
        grid-template-columns: 1fr;
    }
}

/* Mentions Légales */

.legal-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    color: #333;
}

.legal-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-section h2 {
    color: #096773;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.legal-section h3 {
    color: #db592e;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-section p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.legal-section a {
    color: #096773;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #db592e;
}

.legal-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 10px;
}

.legal-section strong {
    font-weight: bold;
}

@media (max-width: 768px) {
    .legal-section h2 {
        font-size: 2rem;
    }

    .legal-section h3 {
        font-size: 1.3rem;
    }

    .legal-section p, .legal-section li {
        font-size: 0.9rem;
    }
}


/* Retouches */

#celine {
    font-family:"Dancing Script";
}

.hero h3 {
    margin-top:3rem;
}

.cta-contact {
    display:flex;
    justify-content: center;
    margin:50px 0;
}

.cta-contact a {
    text-align: center;
    background:#db592e;
    padding:15px 65px;
    color:#FFF;
    text-decoration:none;
    font-weight:bold;
    border-radius:20px;
}

.cta-contact a:hover {
    background:#d73c1c;
    cursor:pointer;
}

/* MODAL FLASH */

.flash-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
  }
  
  .flash-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  .flash {
    text-align: center;
    color: #db592e;
  }



/*************/

hr {
    margin:40px 0;
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
} 

.forma-pro {
    margin:40px 0;
    text-align: center;
    color:#d73c1c;
}

/* Avis */

.testimonials {
    background-color: #f9f9f9;
    padding: 10px 0 80px 0;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials .section-title {
    text-align: center;
    color: #096773;
    font-size: 2.7rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonials .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #096773, #db592e);
    border-radius: 2px;
}

.testimonials .section-title::before {
    content: "✦";
    display: block;
    color: #db592e;
    font-size: 3rem;
    margin-bottom: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: #db592e;
    font-weight: bold;
    text-align: right;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials .section-title {
        font-size: 2rem;
    }
}