/* Texte */

.superTitle {
    font-size: 26px;
    font-weight: 600;
    color: black;
}

.title {
    font-size: 20px;
    font-weight: 600;
    color: black;
}

.textForm {
    font-size: 16px;
    font-weight: 400;
    color: black;
    /* margin-bottom: 16px; */
}

.text {
    font-size: 13px;
    font-weight: 400;
    color: black;
    /* margin-bottom: 16px; */
}

.soustext {
    font-size: 13px;
    font-weight: 400;
    color: rgb(146, 146, 146);
}

.sectionTitle {
    font-size: 16px;
    font-weight: 500;
    color: black;
    margin-top: 12px;
}

/* Mise en page */

.content-margin{
    margin: 0px 16px 0px 16px;
}

.marginTop{
    margin-top: 15px !important;
}

.marginBot2 {
    margin-bottom: 2px;

}

.center {
    text-align: center;
}

.inLine {
    display: flex;
    gap: 5px;
}


/* Option/service  */

.services-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 15px;
}


.service-cell {
    display: flex;
    flex-direction: row;
    background-color: whitesmoke;
    padding: 5px 8px;
    border-radius: 5px;
    margin: 0 6px 10px 6px;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 4px 2px rgb(0 0 0 / 38%);
}

.service-label {
    color: gray;
    margin-left: 8px;
}

.optionsGoupe{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: -20px;
    margin-top: 10px;
}


/* Boutton  */
.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #243E60; /* Couleur de fond bleue (modifiable) */
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
}

.button-link:hover {
    background-color: #2e4e79; /* Couleur au survol */
    transform: translateY(-2px);
}

.button-link:active {
    transform: translateY(0);
}

.back-button {
    position: fixed;
    top: 15px;
    left: 10px;
    z-index: 1000;
    background-color: white;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    box-shadow: 5px 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-button:hover {
    transform: scale(1.1);
}

.back-button svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

.btnRed{
    background-color: rgb(255, 51, 51);
}

.btnGrey{
    background-color: rgb(180, 180, 180);
}

.btnLightBlue{
    background-color: #00AFBD;
}


/* Card/Carte */
.containerCard {
    background-color: white;
    padding: 8px;
    border-radius: 12px;
    margin: 6px 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    max-width: 350px;
}

.imageCard {
    width: 100%;
    height: 200px;
    border-radius: 12px; 
    object-fit: cover;
}

.containerCardReserve {
    height: 140px;
    background-color: white;
    display: flex;
    flex-direction: row;
    padding: 8px;
    border-radius: 12px;
    margin: 6px 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    align-items: center;
}

.textContainerReserve {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 8px;
    flex-direction: column;
}

.abonnement-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Form */

.styled-form label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: black;
}

.styled-form input[type="text"],
.styled-form input[type="email"],
.styled-form input[type="password"],
.styled-form input[type="date"],
.styled-form input[type="tel"],
.styled-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s;
}

label.required::after {
    content: " *";
    color: red;
    font-weight: bold;
}

.capitaine-radio-list {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.capitaine-radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}



/* TOGGLE PREMIUM ABONNEMENTS */

.subscription-toggle {
    position: relative;
    width: 280px;
    height: 48px;
    background-color: #e8e8e8;
    border-radius: 40px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    padding: 4px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.15);
}

.toggle-option {
    flex: 1;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
    color: rgb(100, 100, 100);
    user-select: none;
    transition: color 0.25s ease;
}

.subscription-toggle .toggle-option.active {
    color: #243E60 !important;
}

.toggle-circle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: 40px;
    background-color: #ffffff;
    border-radius: 40px;
    transition: transform 0.25s ease;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
}

.subscription-content {
    display: none;
}

.subscription-content.active {
    display: block;
}

