@media (max-width: 900px) and (orientation: landscape) {
  .mobile-landscape-blocker {
    display: flex !important;
    position: fixed;
    z-index: 99999;
    font-family: "Montserrat", sans-serif;
    color: #faebd7;
    top: 0; left: 0; right: 0; bottom: 0;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    text-align: center;
    padding: 2em;
  }
  body *:not(.mobile-landscape-blocker) {
    display: none !important;
  }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Animation fade-in pour le scroll */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

body {
    background-color: #310439;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #2c2c3a;
    line-height: 1.6;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;
}

/* Header exactement comme blog.css */
.faq-header {
    background-color: #dfcfec00;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    height: 150px;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 2px 12px #a97bcf8e;
    z-index: 100;
}

.faq-header::before {
    display: none;
}



.header-content {
    position: relative;
    z-index: 1;

}

.faq-header h1 {
    font-family: 'Pinyon Script', cursive;
    color: #dfcfec;
    font-weight: 500;
    font-size: 75px;
    text-align: center;
    margin-top: 10px;
  

}
.subtitle {
    position: static; /* ou retire la propriété position */
    margin-top: -35px; /* ajuste selon le rendu souhaité */
    margin-right: 70px;
    display: block;
    font-family: 'Cormorant Garamond', sans-serif!important;
    color: #ffffff88;
    font-size: 20px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 400;
}

/* Container principal */
.faq-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    padding-top: 130px;
}

.faq-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.faq-intro h2 {
    font-family: 'Pinyon Script', cursive;
    font-size: 2.5rem;
    color: #dfcfec;
    margin-bottom: 15px;
    font-weight: 400;
}

.faq-intro p {
    font-size: 1.05rem;
    color: #ffffffbd;
}

/* Liste FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.891);
    border-radius: 3em;
    border: 1px solid #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.05);
}

.faq-question .icon {
    font-size: 1.5rem;
    color: #310439;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-question[aria-expanded="true"] .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 20px 25px 25px;
}

.faq-answer p {
    margin-bottom: 15px;
    color: #000000;
    line-height: 1.8;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 10px;
    color: #000000;
}

.faq-answer strong {
    color: #310439;
}

.faq-link {
    color: #310439;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: #dfcfec;
}

/* Section CTA */
.faq-cta {
    text-align: center;
    margin-top: 80px;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffffbd;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.faq-cta h2 {
    font-family: 'Pinyon Script', cursive;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #dfcfec;
        font-weight: 400;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ffffffbd;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.891);
    color: #310439;
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffffbd;
    border: 2px solid #ffffffbd;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Footer */
.faq-footer {
    background: transparent;
    color: #ffffffc5;
    text-align: center;
    padding: 30px 20px;

    font-family: 'Pinyon Script', serif;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 1px;
}

.faq-footer p {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
    .faq-header {
        height: 111px !important;
        min-height: 111px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center !important;
    }

    .faq-header h1 {
        font-size: 48px !important;
        margin: 0 !important;
        text-align: center !important;
        width: 100%;
        display: block;
    }


    .subtitle {
        font-size: 16px !important;
     margin-top: -22px!important; /* ajuste selon le rendu souhaité */
    margin-right: 10px!important;
    }

    .faq-container {
        padding-top: 90px !important;
    }

    .faq-intro h2 {
        font-size: 2rem;
    }

   .faq-question {
        font-size: 1rem!important;
        padding: 20px 20px!important;
    }
   .icon {
        font-size: 1rem!important;

    }
   .faq-answer, .faq-answer p, .faq-answer ul, .faq-answer li {
        font-size: 0.9rem!important;
    }

    .faq-cta h2 {
        font-size: 2rem!important;
    }

    .cta-buttons {
        flex-direction: column!important;
        align-items: center!important;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%!important;
        max-width: 300px!important;
    }

    .faq-footer p {
        font-size: 15px !important;
    }
}

@media (min-width: 1300px) and (max-width: 2000px) {
    .faq-header {
        height: 180px !important;
        min-height: 180px !important;
    }

    .faq-header h1 {
        font-size: 100px !important;
    }

    .subtitle {
        font-size: 27px !important;
        margin-right: 120px !important;
        margin-top: -47px !important;

    }

    .faq-container {
        padding-top: 160px !important;
    }

    .faq-footer p {
        font-size: 22px !important;
    }
}
