/* HCMA Portal styles */
:root {
    --jaune: #e2a523;
    --red: #810f00;
    --bg: #091b33;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: Inter, sans-serif;
    background: var(--bg);
    color: #fff;
}
body:before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        url("../img/morzine-2025.jpg") center/cover;
    z-index: -1;
}
.wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.panel {
    width: min(1000px, 100%);
    background: #fff;
    color: #1d2939;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
header {
    background: linear-gradient(135deg, #810f00, #530e00);
    padding: 48px;
    color: #fff;
	text-align: center;
}
header small {
    letter-spacing: 2px;
    font-weight: 700;
}
header h1 {
    margin: 15px 0 15px 0;
    font-size: 36px;
	line-height: 0.8em;
	font-weight: 900;
}
main {
    padding: 48px;
}
.screen {
    display: none;
}
.screen.active {
    display: block;
    animation: fade 0.35s;
}
@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
    }
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}
.card {
    border: 1px solid #e6ebf2;
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    transition: 0.2s;
    background: #fff;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    margin-top: 16px;
}
.blue {
    background: var(--jaune);
}
.red {
    background: var(--red);
}
.step {
    border-left: 5px solid var(--jaune);
    padding: 20px;
    margin: 22px 0;
    background: #f8fbff;
    border-radius: 12px;
}
.progress {
    height: 8px;
    background: #e5e7eb;
}
.bar {
    height: 100%;
    width: 25%;
    background: var(--jaune);
    transition: 0.3s;
}
.back {
    display: inline-block;
    margin-top: 20px;
    color: #667085;
    text-decoration: none;
}
strong{
	font-weight: 900;
}
footer {
    padding: 24px 48px;
    background: #f8fafc;
    color: #667085;
	text-align: center;
}
#home h2{
	text-align: center;
	font-weight:900;
}
#home p,
#renew p.intro,
#new p.intro{
	text-transform: uppercase;
	line-height: 1.5em;
	font-weight: 100;
	letter-spacing: 1px;
	text-align: center;
	margin-bottom:20px;
}
a {
	text-decoration: none;
	font-weight: 900;
	color:var(--red);
}
#renew h2{
	text-align: center;
	font-weight:900;
	color:var(--red);
}
/* ===========================
   FAQ
=========================== */

.faq{
    margin-top:0px;
    border-top:1px solid #ececec;
   	padding:20px 48px;
}

.faq h2{
    text-align:center;
    margin-bottom:35px;
    color:#810f00;
    font-size:2rem;
	font-weight: 900;
}

.faq-item{
    border-bottom:1px solid #e8e8e8;
}

.faq-question{
    width:100%;
    padding:22px 0;
    border:none;
    background:none;
    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:18px;
    font-weight:700;
    text-align:left;

    color:#222;
}

.faq-question:hover{
    color:#810f00;
}

.faq-question .icon{
    color:#e2a523;
    font-size:30px;
    transition:.25s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-answer p,
.faq-answer ol{
    margin:0 0 20px;
    color:#666;
    line-height:1.8;
}

.faq-answer ol{
    padding-left:20px;
}

.faq-item.active .faq-answer{
    max-height:800px;
}

.faq-item.active .icon{
    transform:rotate(45deg);
}
