@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root {
    --bs-primary: #216477;
    --primary: #216477;
    --primary-light: #5A9BAB;
    --bs-secondary: #C5A253;
    --secondary: #C5A253;
    --background: #F9F5EF;
    --dark: #1E1E1E;
    --bs-primary: #216477;
    --bs-secondary: #C5A253;
    --bs-success: #4CAF50;
    --bs-danger: #E53935;
    --bs-warning: #FFC107;
    --bs-info: #03A9F4;
    --bs-light: #F8F9FA;
    --bs-dark: #1E1E1E;
}




/* Option flex sur mobile */
@media (max-width: 576px) {
    .btn-quiz {
        flex: 1 1 100%;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background);
    color: var(--dark);
    font-weight: 400;
    font-size: 1rem;
    word-break: break-word;
}

.navbar {
    background: var(--background);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary);
}
.navbar-brand:hover {
    color: var(--primary) !important;
}
.navbar-toggler {
    border: none;
    background: transparent;
    font-size: 2rem;
    color: var(--primary);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.btn-secondary-axel,
.btn-outline-secondary-axel,
.btn-primary,
.btn-outline-primary {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem; /* plus petit */
    font-size: 1rem; /* plus petit */
    border-radius: 0.375rem;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.btn-secondary-axel, .btn-secondary-axel:hover, .btn-secondary-axel:focus {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    width: fit-content;
}

.btn-outline-secondary-axel {
    color: var(--primary);
    background-color: #fff;
}

.btn-primary, .btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-outline-primary, .btn-outline-primary:hover, .btn-outline-primary:focus {
    color: var(--primary);
    background-color: #fff;
    border-color: var(--primary);
}

.card {
    border-radius: 1.5rem;
    border: 1px solid var(--secondary);
    background: #fff;
}

.hero-section {
    background: var(--primary);
    color: #fff;
    padding-top: 3rem;
    padding-bottom: 3rem;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section .container {
    /* Pour garder le contenu centré et paddé */
}

.card {
    width: 26rem;
    max-width: 90vw;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--secondary);
}

.card-header-axel {
    background: var(--secondary);
    color: #fff;
    padding: 1.2rem 0 0.5rem 0;
    text-align: center;
}
.card-header-axel h5 {
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 0rem;
}
.card-header-axel .card-header-sub {
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.pricing-row {
    gap: 0.5rem;
    min-height: 3.5rem;
    margin-top: 1rem;
}
.pricing-main {
    font-size: 3rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1;
    display: flex;
    align-items: flex-end;
}

.pricing-old {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--secondary);
    text-decoration: line-through;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0.3rem;
}

.pricing-separator {
    border-top: 2px solid var(--secondary);
    width: 60%;
    margin: 1.5rem auto;
    opacity: 1;
}

.advantages-list {
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
    font-size: 0.8rem;
}
.advantages-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}
.advantages-list .bi-check2-circle {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-right: 0.4rem;
}

.pill-guide {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 999px;
    padding: 0.18em 0.9em;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    width:fit-content;
}

.titre-hero{
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.text-hero {
    font-size: 20px;
    font-weight: 400;
}

.obtenir-button {
    margin: 1rem auto 1rem auto;
}

.guide-avatar-circle {
    width: 100%;
    aspect-ratio: 1 / 1; /* pour garder le cercle */
    max-width: 500px;
    max-height: 500px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}
.guide-avatar-img {
    width: 80%;
    height: auto;
    object-fit: contain;
    display: block;
}

.guide-title {
    font-size: 2.5rem; /* 54px */
    color: var(--primary);
    margin-bottom: 2rem !important;
    font-weight:600 !important;
}

.guide-quote {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-left-width: 5px;
    border-radius: 1.5rem;
    padding: 3.2rem 2.5rem 3.2rem 2.5rem; /* plus de padding haut/bas pour les guillemets */
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: none;
    line-height: 1.25;
    display: block;
    /* flex supprimé pour permettre le positionnement absolu des guillemets */
}
.guide-quote .bi-quote-left {
    position: absolute;
    top: 0.7rem;
    left: 1.2rem;
    font-size: 3.2rem;
    color: var(--primary);
    line-height: 1;
    z-index: 2;
    margin: 0;
    pointer-events: none;
}
.guide-quote .bi-quote-right {
    position: absolute;
    bottom: 0.7rem !important;
    right: 1.2rem !important;
    font-size: 3.2rem;
    color: var(--primary);
    line-height: 1;
    z-index: 2;
    margin: 0;
    pointer-events: none;
}
.guide-quote-text {
   font-weight:  300 !important;
}

.guide-desc {
    font-size: 1.2rem;
    margin-bottom: 2.2rem !important;
    color: var(--primary);
}

.section-guide-pour-vous {
    min-height: 120vh;
    display: flex;
    align-items: center;
    background: var(--background);
}

.section-guide-pour-vous .col-md-7 {
    padding-right: 2.5rem;
    padding-left: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.guide-quote {
    margin-bottom: 1.5rem !important;
}

.section-why-etf {
    background: var(--primary);
    color: #fff;
    padding-top: 15rem;
    padding-bottom: 15rem;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.why-etf-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.why-etf-subtitle {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0 ;
    max-width: 70%;
    margin: auto;

}
.why-etf-card {
    background: #fff;
    color: var(--primary);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px 0 rgba(33,100,119,0.08);
    padding: 2rem 1rem;
    min-height: 180px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.15s, box-shadow 0.15s;
}
.why-etf-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(33,100,119,0.13);
}
.why-etf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--background);
    margin-bottom: 1.2rem;
}
.why-etf-icon i {
    font-size: 2rem;
    color: var(--primary);
}
.why-etf-card-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.why-etf-card-desc {
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary);
    opacity: 0.85;
}

.section-modules {
    background: #FFF;
    padding-top: 5rem;
    padding-bottom: 5rem;
    min-height: 130vh;
    display: flex;
    align-items: center;
}
.modules-title {
    color: var(--primary);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.modules-subtitle {
    color: var(--primary-light);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.85;
}
.module-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px 0 rgba(33,100,119,0.18), 0 2px 8px 0 rgba(33,100,119,0.10);
    padding: 2rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 300px;
    max-width: 350px;
    height: 300px;
    transition: box-shadow 0.15s, transform 0.15s;
    border: none;
}
.module-card:hover {
    box-shadow: 0 16px 48px 0 rgba(33,100,119,0.28), 0 4px 16px 0 rgba(33,100,119,0.16);
    transform: translateY(-4px) scale(1.02);
}
.module-pill {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 400;
    border-radius: 20px;
    padding: 0.25em 1em;
    margin-bottom: 1.1rem;
    letter-spacing: 0.02em;
}
.module-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 26px;
}
.module-card-desc {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 300;
}

.section-modules .row.g-4.justify-content-center {
    justify-content: center !important;
}
.section-modules .module-card {
    margin-left: auto;
    margin-right: auto;
}

/* Section Action Guide */
.section-action-guide {
    background: #faf6ef;
    padding-top: 6rem;
    padding-bottom: 6rem;
    min-height: 130vh;
    display: flex;
    align-items: center;
}
.action-guide-title {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 600;
}
.action-guide-subtitle {
    color: #c8a24d;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.95;
}
.action-offer-card {
    border-radius: 1.2rem;
    min-width: 340px;
    max-width: 400px;
    margin: auto;
}
.btn-action-offer {
    background: #c8a24d;
    color: #fff;
    border: none;
    border-radius: 0.7rem;
    padding: 0.9rem 2.2rem;
    font-weight: 600;
    font-size: 1.15rem;
    margin-top: 1.2rem;
    transition: background 0.18s;
    display: inline-block;
}
.btn-action-offer:hover {
    background: #b18c36;
    color: #fff;
}
.icones-action {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--background);
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.action-feature-title {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}
.action-feature-desc {
    color: var(--primary-light);
    font-size: 1rem;
    font-weight: 300;
}

.section-faq {
    background: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
    min-height: 110vh;
    display: flex;
    align-items: center;
}
.faq-title {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.faq-subtitle {
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.faq-list {
    width: 100%;
}
.faq-item {
    border-bottom: 3px solid var(--secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    transition: background 0.2s;
}
.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary);
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
    transition: color 0.2s;
}
.faq-toggle {
    margin-left: 1rem;
    color: var(--primary);
    font-size: 1.3rem;
    transition: transform 0.2s;
}
.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}
.faq-answer {
    display: none;
    margin-top: 1.1rem;
    color: var(--primary-light);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}
.faq-item.open .faq-answer {
    display: block;
}

.footer-axel {
    background: var(--primary);
    color: #fff;
    font-size: 1rem;
    margin-top: 0;
}
.footer-logo {
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.03em;
}
.footer-link {
    color: #fff;
    text-decoration: underline;
    margin: 0 0.3rem;
    font-size: 1rem;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-sep {
    color: #FFF;
    margin: 0 0.2rem;
}
/* ---- BASE RESPONSIVE BREAKPOINTS ---- */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 2rem 0;
    min-height: 50vh;
  }
  .navbar-nav {
    background: var(--background);
    padding: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .titre-hero { font-size: 2.2rem; }
  .text-hero { font-size: 1rem; }
  .hero-section .card {
    width: 100%;
    margin-top: 2rem;
  }
  .guide-title { font-size: 2rem; }
  .guide-quote {
    font-size: 1.3rem;
    padding: 2.2rem 1rem 2.2rem 1.5rem;
    border-radius: 0.8rem;
  }
  .guide-quote .bi-quote,
  .guide-quote .bi-quote-right {
    font-size: 1.4rem;
    top: 0.5rem; left: 0.7rem; right: 0.7rem; bottom: 0.5rem;
  }
  .guide-desc { font-size: 1rem; }
  .section-guide-pour-vous .col-md-7 {
    padding: 0 1rem;
  }
  .why-etf-card {
    min-height: 120px;
    padding: 1rem 0.5rem;
    max-width: 100%;
  }
  .why-etf-icon {
    width: 48px;
    height: 48px;
  }
  .why-etf-icon i { font-size: 1.7rem; }
  .section-modules {
    padding: 2.5rem 0;
  }
  .module-card {
    min-height: 220px;
    min-width: 160px;
    max-width: 100%;
    aspect-ratio: 1/1;
    padding: 1.5rem 0.7rem;
  }
  .modules-title { font-size: 1.5rem; }
}

/* ---- TABLET (767.98px) ---- */
@media (max-width: 767.98px) {
  .navbar-brand { font-size: 1.1rem; }
  .navbar {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .navbar-collapse .btn-secondary-axel{
    width: 100%;
  }
 
  .hero-section {
    flex-direction: column;
    padding: 1.5rem 0;
  }
  .titre-hero {
    font-size: 2.1rem;
    text-align: left;
  }
  .text-hero {
    font-size: 1.2rem;
    text-align: left;
  }
  .hero-section .card {
    width: 80vw;
    margin-top: 1.5rem;
  }
  .advantages-list { font-size: 0.7rem; }

  .guide-title {
    font-size: 2rem;
    text-align: left;
  }
  .guide-quote {
    font-size: 1rem;
    padding: 1.3rem 0.7rem 1.3rem 1.1rem;
    border-radius: 0.6rem;
  }
  .guide-quote .bi-quote,
  .guide-quote .bi-quote-right {
    font-size: 1.1rem;
    top: 0.3rem; left: 0.5rem; right: 0.5rem; bottom: 0.3rem;
  }
  .guide-desc {
    font-size: 1rem;
    text-align: left;
  }
  .section-guide-pour-vous {
    flex-direction: column;
    padding: 2rem 0;
    min-height: 70vh;
  }
  .guide-avatar-circle {
    max-width: 280px;
    max-height: 280px;
    margin: 0 auto 1.2rem auto;
  }
  .col-md-7 {
    padding: 0 0.5rem !important;
    gap: 0.7rem !important;
  }

  .why-etf-title { font-size: 1.8rem; }
  .why-etf-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }
  .why-etf-card {
    padding: 1rem 0.3rem;
    min-height: unset;
  }
  .why-etf-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 0.7rem;
  }
  .why-etf-icon i { font-size: 1.3rem; }
  .why-etf-card-title { font-size: 1rem; }
  .why-etf-card-desc { font-size: 0.95rem; }

  .section-modules {
    padding: 1.2rem 0;
    min-height: unset;
  }
  .modules-title { font-size: 1.5rem; }
  .modules-subtitle { font-size: 1rem; }
  .module-card {
    width: 100%;
    min-width: 90vw;
    max-width: 100vw;
    padding: 1rem 0.4rem;
    margin-bottom: 1.2rem;
  }
  .module-card-title { font-size: 1.3rem; }
  .module-card-desc { font-size: 0.95rem; }
  .module-pill {
    font-size: 0.7rem;
    padding: 0.12em 0.7em;
  }
  .row.g-4.justify-content-center {
    padding: 0 !important;
  }

  .section-action-guide {
    padding: 2rem 0;
  }
  .action-guide-title { font-size: 1.5rem; }
  .action-guide-subtitle { font-size: 0.95rem; }
  .action-offer-card {
    width: 100%;
    margin-bottom: 2rem;
  }
  .action-feature-title { font-size: 1rem; }
  .action-feature-desc { font-size: 0.95rem; }
  .action-feature-icon-colored,
  .icones-action {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .section-faq {
    padding: 2rem 0;
    min-height: unset;
  }
  .faq-title { font-size: 1.8rem; }
  .faq-subtitle { font-size: 1.5rem; }
  .faq-question { font-size: 1.2rem; }
  .faq-answer { font-size: 1rem; }
  .faq-list {
    max-width: 100vw !important;
    padding: 0 0.5rem;
  }

  .footer-axel .row {
    flex-direction: column;
    gap: 0.7rem;
    text-align: center;
  }
  .footer-logo {
    display: block;
    margin-bottom: 0.3rem;
  }
  .footer-link { font-size: 0.95rem; }
}

/* ---- MOBILE SMALL (575.98px) ---- */
@media (max-width: 575.98px) {
  .hero-section, .section-guide-pour-vous, .section-why-etf, .section-modules, .section-faq {
    padding: 3rem 0.5rem;
  }
  .titre-hero { font-size: 2rem; }
  .text-hero { font-size: 1.05rem; }
  .hero-section .card {
    width: 90vw;
    margin-top: 1rem;
  }
  .pill-guide {
    font-size: 0.65rem;
    padding: 0.12em 0.7em;
  }
  .card-header-axel{
     padding: 1rem 0 0 0;
  }
  .card-header-axel h5{
    font-size: 1.2em;
  }
  .card-header-sub{
    font-size: 1em;
  }
  .pricing-row{
    margin: 0.5rem;
  }
  .pricing-main {
    font-size: 3rem;
   }
  .pricing-old {
    font-size: 1.1rem;
   }
   .advantages-list {
    text-align: left;
    max-width: 280px;
    margin: 0 auto;
    font-size: 0.9rem;
    }
    .obtenir-button{
        margin: 0.75rem auto 0.75rem auto;
    }
    .avatar-div{
        min-height: 400px;
        align-items: end;
        padding-bottom: 30px;
    }
    .action-guide-subtitle{
        margin-bottom: 1.5rem !important;
    }
    .section-action-guide .row {
        margin-left: unset !important;
        margin-right: unset !important;
        margin: auto !important;
    }
}

/* Responsive pour les cards modules */
@media (max-width: 991.98px) {
  .section-modules .row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1.5rem;
  }
  .module-card {
    min-width: 220px;
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 1.2rem 0.7rem;
    margin-bottom: 1rem;
    aspect-ratio: unset;
  }
}

@media (max-width: 767.98px) {
  .section-modules .row.g-4 {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 1rem;
  }
  .module-card {
    min-width: 80vw;
    max-width: 90vw;
    width: 100%;
    height: auto;
    padding: 1.5rem 0.8rem;
    margin-bottom: 1rem;
    aspect-ratio: unset;
  }
  .modules-title { font-size: 1.6rem; }
}

/* Ajout des styles pour le bug de chevauchement des colonnes dans la section Action Guide sur mobile */
@media (max-width: 767.98px) {
  .section-action-guide .row {
    margin: auto !important;
    width: 100vw;
    max-width: 100vw;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .section-action-guide .col-lg-7,
  .section-action-guide .col-lg-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100vw;
    max-width: 100vw;
  }
  .section-action-guide .action-feature-desc,
  .section-action-guide .action-feature-title {
    word-break: break-word;
    white-space: normal;
  }
  /* Centrer les features dans la section action sur mobile */
  .section-action-guide .action-feature {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
}


/* Conteneur global */
.guide-content {
    padding: 2rem;
  
}

/* Titres */
.guide-content h1 {
    font-size: 2.3rem;
    color: var(--primary); /* utilise la couleur principale du site */
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.guide-content h2 {
    font-size: 1.7rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary); /* couleur secondaire du site */
    font-weight: 600;
}

.guide-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}
.guide-content h4 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Paragraphes */
.guide-content p, .guide-content li{
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-color, #333); /* prend la couleur par défaut du site */
}
.guide-content li{
  margin-bottom: 0.5rem;
}

.guide-content .green{
  color: green !important;
}
.guide-content .red{
  color: red !important;
}
.guide-content .bold{
  font-weight: 600 !important;
}

.guide-content th{
  text-align: left;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

/* Navigation (précédent / suivant) */
.guide-content .navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.guide-content .navigation a {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
}

.guide-content .navigation .prev {
    background: var(--secondary);
    color: #fff;
}

.guide-content .navigation .next {
    background: var(--primary);
    color: #fff;
}

.guide-content img{
  max-height: 500px;
  max-width: 80%;
  margin: 1rem auto;
}

.guide-content ol li{
  margin-bottom: 1rem;
}


.photos-wrapper {
    position: relative;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-module {
    width: 380px; /* largeur paysage */
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: absolute;
}

/* Chevauchement organique desktop */
.photo-1 {
    top: 0;
    left: 20%;
    transform: rotate(-6deg);
    z-index: 1;
}
.photo-2 {
    top: 40px;
    left: 35%;
    transform: rotate(4deg);
    z-index: 2;
}
.photo-3 {
    top: 20px;
    left: 50%;
    transform: rotate(-3deg);
    z-index: 3;
}

/* Petit effet hover sympa */
.photo-module:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Responsive : en-dessous de 768px, on empile les images */
@media (max-width: 768px) {
    .photos-wrapper {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        min-height: auto;
    }

    .photo-module {
        position: static;
        transform: none !important;
        width: 100%;
    }

    
}

