/*  ExtraCSS for phpBB design
    ---------------------------------------------------------------------------------
	Allows you to easily modify the Prosilver style without touching the base files.
    Also eliminates the need to create a custom style.
    ---------------------------------------------------------------------------------
*/

html, body {
  background-color: hsl(38,6%,65%);
  color: #536482;
  margin: 0;
  /*background: url("https://rimbertweb.fr/cloud/uploads/fbbfe0aa969a538c6f4f2360d3e15a27.jpg");*/
  background: url("https://rimbertweb.fr/cloud/uploads/cb59515a10d63566dc34470db1d1a588.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: 50% 0%;
  background-repeat: no-repeat;
}

.headerbar {
    /*background-image: url("https://rimbertweb.fr/cloud/uploads/41d3f153959823a55e4667a3f2f52b2c.png");*/
    background-image: url("https://rimbertweb.fr/cloud/uploads/22bc61a6d625c68757aca8c06bea7e2b.png");
    background-size: 100% 110%;
    background-position: 50% 25%;
    border-radius: 7px;
    height: 110px
}

@media (max-width: 760px) {
    .headerbar { height: 90px } 
}

/* with ST background */
.site-description h1 { color: #3a4959; text-shadow: 1px 1px 2px orange }

/* ===============================
   MODERN ACCORDION FAQ
================================ */

.faq-wrapper {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-main-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.faq-section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.faq-item {
    margin-bottom: 18px;
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #f3f5f8;
    border: none;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #2c3440;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: all .25s ease;
}

.faq-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.faq-chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid #7b8794;
    border-bottom: 2px solid #7b8794;
    transform: rotate(-45deg);
    transition: transform .3s ease;
}

.faq-toggle.active .faq-chevron {
    transform: rotate(135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .35s ease;
    background: #ffffff;
    font-size: 12px;
    border-radius: 14px;
    margin-top: 10px;
    padding: 0 24px;
}

.faq-answer.open {
    max-height: 500px;
    opacity: 1;
    padding: 20px 24px;
}


