:root {
    --dark-blue: #001f3f;
    --light-blue: #003366;
    --white: #ffffff;
    --semi-transparent-white: rgba(255, 255, 255, 0.6);
    --semi-transparent-dark-blue: rgba(0, 31, 63, 0.7);
    --primary-font: 'Verdana', sans-serif;
    --secondary-font: 'Georgia', serif;
    --hover-bg-color: rgba(0, 31, 63, 0.8);
    --border-color: rgba(255, 255, 255, 0.3);
    --menu-bg-color: rgba(0, 31, 63, 1);
    --text-color: #333;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --highlight-color: #caa255;
}

.grecaptcha-badge { 
    visibility: hidden !important;
}

p {
    font-size: 18px;
    line-height: 1.5; /* Ajustez la hauteur de ligne pour une meilleure lisibilité */
}

body, html {
    margin: 0;
    padding: 0;
    font-family: var(--primary-font);
    background-color: var(--dark-blue);
    color: var(--white);
    overflow-x: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

header, main, footer {
    flex-shrink: 0;
}

main {
    flex-grow: 1;
}

a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--semi-transparent-white);
}

h1, h2 {
    font-family: var(--secondary-font);
}

header {
    background-color: var(--dark-blue);
    padding: 10px 20px;
}







/* Ajoutez ce style dans votre fichier CSS */
.grayed-out {
    color: gray;
    opacity: 0.98;
}

.grayed-out:hover {
    opacity: 1;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.label-email {
    margin-bottom: 20px; /* Ajustez cette valeur selon vos besoins */
}

.logo {
    margin-right: auto;
	
}

.logo img {
    height: 120px;
    margin-left: 20%;
    margin-top: 2px;
    padding-bottom: 0px;
    z-index: 1001; /* Ensure logo is above the image */
    position: relative;
}

#nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-grow: 1;
    text-align: center;
    z-index: 1000; /* Ensure menu is above the image */
}

#nav-links li {
    display: inline-block;
}

#nav-links li a {
    font-size: 18px;
    padding: 4px 20px;
    transition: background 0.3s, color 0.3s;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    position: relative;
}

#nav-links li a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--highlight-color);
    transition: width 0.3s ease, left 0.3s ease;
}

#nav-links li a:hover::before {
    width: 100%;
    left: 0;
}

#nav-links li a:hover {
    background-color: var(--hover-bg-color);
    color: var(--white);
    transform: scale(1.03);
}

#nav-links li a.active::before {
    width: 100%;
    left: 0;
    transition: width 0.3s ease, left 0.3s ease;
    animation: expand-line 0.5s forwards;
}

@keyframes expand-line {
    0% {
        width: 0;
        left: 50%;
    }
    100% {
        width: 100%;
        left: 0;
    }
}

#language-button-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
	margin-right: 5px;
}

.language-button {
    background: none;
    border: 1px solid var(--border-color);
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    color: var(--white);
    transition: background 0.3s, color 0.3s, border 0.3s;
}

.language-button:hover {
    background-color: var(--hover-bg-color);
    border-color: var(--semi-transparent-white);
}

.language-options {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-blue);
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    white-space: nowrap;
    opacity: 0.9;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: 0 4px 8px var(--shadow-color);
}

.language-options.show {
    display: flex;
}

.language-option {
    cursor: pointer;
    font-family: 'Verdana', sans-serif;
    font-size: 16px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    display: block;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.language-option:hover {
    background-color: var(--semi-transparent-white);
    border-radius: 5px;
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

footer {
    background-color: var(--dark-blue);
    text-align: center;
    padding: 40px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: auto;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: var(--white);
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}





.hero {
    position: relative;
    text-align: center;
    color: var(--white);
    align-items: center; /* Centrage vertical */
    justify-content: center; /* Centrage horizontal */
    overflow: hidden; /* Assurez-vous que les parties de l'image qui dépassent sont cachées */
}








.area-section {
    background-color: var(--light-blue);
    padding: 40px 20px;
    text-align: center;
/*    box-shadow: 0 4px 8px var(--shadow-color);*/
    margin-top: px;
    border-top: 0px solid var(--white);
    border-bottom: 0px solid var(--white);
    position: relative;
}

.login-section {
    background-color: var(--light-blue);
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 8px var(--shadow-color);
    margin-top: -4px;
    border-top: 0px solid var(--white);
    border-bottom: 0px solid var(--white);
    position: relative;
}

.login-section h2,
.login-section p {
    margin: 0 0 20px;
    font-family: var(--primary-font);
    color: var(--white);
}

.login-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.login-section form input {
    padding-left: 10px;
    height: 30px;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    max-width: 350px;
    margin-bottom: 10px;
}

.login-section form button {
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    max-width: 350px;
    margin-bottom: 30px; /* Add extra space below the button */
    margin-top: 0px;
}

.login-section form input {
    border: 1px solid var(--border-color);
}

.login-section form button {
    background-color: var(--highlight-color);
    border: none;
    color: var(--white);
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.login-section form button:hover {
    transform: scale(1.05);
}

.login-form-container {
    max-width: 300px;
    margin: 0 auto;
    text-align: left;
}

.login-form-container label,
.login-form-container input,
.login-form-container .password-toggle {
    display: block;
    width: 100%;
    margin-bottom: 5px; /* Réduire la marge sous les labels */
}

.login-form-container label {
    margin-bottom: 3px; /* Réduire la marge sous les labels */
}

.login-form-container .password-toggle {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.login-form-container .password-toggle input[type="checkbox"] {
    margin-right: 15px;
}

.login-form-container button {
    margin-top: 0px;
    width: 100%;
}

.forgot-password-centered {
    text-align: center;
    margin-top: 15px; /* Ajouter une marge pour séparer du bouton du dessus */
}

.forgot-password-link {
    display: inline-block;
}

.password-toggle {
    display: flex;
    align-items: center;
    margin-top: -20px;
    margin-bottom: 0px; /* Reduce space below the password toggle */
}

.password-toggle input[type="checkbox"] {
    margin-right: 5px;
    margin-top: 22px;
}

.password-toggle label {
    margin: 0;
    white-space: nowrap;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.form-container form {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-container label {
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
}

.form-container input {
    width: 100%;
    margin-bottom: 15px;
}

.password-toggle {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.password-toggle input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
}

.password-toggle label {
    margin: 0;
    white-space: nowrap;
}

.error {
    color: #caa255; /* Gold color */
    font-size: 1.2em; /* Larger font size */
    margin: 0;
    margin-bottom: 15px;
}

.password-error {
    color: red;
    font-size: 14px;
    margin: 0;
    margin-bottom: 15px;
}


.agreement-text {
    display: flex;
    align-items: center;
    margin: 20px 0;
    font-size: 14px;
}

.agreement-text input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

.agreement-text label {
    margin: 0;
}

.agreement-text a {
    color: #007bff; /* Couleur des liens */
    text-decoration: none;
}

.agreement-text a:hover {
    text-decoration: underline;
}


.underline-link {
    text-decoration: underline;
}

.subscription-plan-button span {
    display: inline;
    white-space: nowrap;
}

.subscription-options {
    margin-top: -10px;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between the two buttons */
    margin-bottom: 20px;
}

.subscription-plan-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    border: 2px solid var(--light-blue);
    border-radius: 5px;
    background-color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    font-size: 16px;
    color: var(--light-blue);
    margin-top: 0; /* Remove margin top */
    margin-bottom: 0; /* Remove margin bottom */
}

.subscription-plan-button input[type="radio"] {
    display: none;
}

.subscription-plan-button input[type="radio"]:checked + span {
    font-size: 18px;
    font-weight: bold;
}

.subscription-plan-button:hover {
    transform: scale(1.03);
    background-color: var(--semi-transparent-dark-blue);
    border-color: var(--light-blue);
    color: #ffffff;
}

.password-toggle {
    display: flex;
    align-items: center;
}

.password-toggle input[type="checkbox"] {
    margin-right: 5px; /* Espace entre le checkbox et le texte */
	margin-top: 8px;
}

.password-toggle label {
    margin-bottom: 0px; /* Assurez-vous que le texte du label est aligné verticalement */
	margin-top: 8px;
}

input[type="text"], input[type="email"], input[type="password"], select, .subscription-plan-button {
    width: 100%;
    max-width: 350px; /* Adjust the width according to your design */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    margin-bottom: 10px;
}

.password-toggle input[type="checkbox"] {
    margin-right: 5px;
}

.currency-select {
    margin-top: 6px;
    width: auto; /* Adjust the width as needed */
    max-width: 150px; /* Set a maximum width */
    padding: 5px; /* Adjust padding for better appearance */
    font-size: 14px; /* Adjust font size */
    border: 2px solid var(--light-blue); /* Match the border color with the buttons */
    border-radius: 5px; /* Rounded borders */
    background-color: #ffffff; /* White background */
    color: var(--text-color); /* Text color */
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.currency-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
	margin-left: 0px;
}

.input-container {
    position: relative;
}

.input-container input {
    width: calc(100% - 30px); /* Adjust according to the icon size */
    padding-right: 30px; /* Adjust according to the icon size */
}

.input-container .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    cursor: pointer;
}

/* Taille de police et style par défaut pour les champs de saisie */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select {
    font-size: 16px !important;
    width: 100%;
    max-width: 350px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

/* Augmente la taille de police et ajuste la largeur pour les petits écrans */
@media (max-width: 480px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    select,
    textarea.form-input { /* Ajoutez textarea ici */
        font-size: 20px !important;
        max-width: 330px; /* Largeur maximale pour s'adapter aux petits écrans */
        width: 100%; /* S'assure que le textarea s'adapte à la largeur de son conteneur */
    }
	
	
  .currency-select-custom {
        font-size: 14px !important; /* Taille réduite pour les petits écrans */
    }
	
}




.reset-button-space {
    margin-top: 20px; /* Ajustez cette valeur selon vos besoins */
}

.spacer {
    margin-bottom: 5px;
}

@keyframes curtainOpen {
    0% {
        max-height: 0;
    }
    100% {
        max-height: 500px; /* Ajustez cette valeur selon vos besoins */
    }
}

.curtain-open {
    animation: curtainOpen 2s ease-in-out forwards; /* Durée et type d'animation */
}


.bouton-text-overlay {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



.rectangle-text {
   width: 100px; /* Taille par défaut */
}

.rectangle-text p {
   margin-left: 5px; /* Taille par défaut */
}


@media (max-width: 1024px) {
    .rectangle-text {
        max-width: 100%; /* Réduire la taille maximale sur les écrans plus petits */
    }
}

@media (max-width: 768px) {
    .rectangle-text {
        max-width: 100%; /* Réduire encore plus la taille maximale sur les écrans encore plus petits */
    }
}

@media (max-width: 480px) {
    .rectangle-text {
        max-width: 100%; /* Prendre toute la largeur disponible sur les très petits écrans */
        padding: 0 0px; /* Réduire le padding pour maximiser l'espace de texte */
    }
}





.rectangle {
    width: 450px; /* Taille par défaut */
    height: auto; /* Taille par défaut */
    background-color: var(--light-blue);
    border: 1px solid var(--white);
    border-radius: 10px;
    margin-left: 40px; /* Ajoutez cette ligne pour aligner les images avec les titres et les textes */
	margin-top: 50px;
}

.rectangle img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}


.rectangle-membre {
    max-width: 700px; /* Taille par défaut */
    height: auto; /* Taille par défaut */
    background-color: var(--light-blue);
    border: 1px solid var(--white);
    border-radius: 10px;
    margin-left: 40px; /* Ajoutez cette ligne pour aligner les images avec les titres et les textes */
	margin-top: 40px;
}

.rectangle-membre img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}



.formules-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.formule {
    flex: 1 1 calc(50% - 10px); /* Prendre 50% de la largeur disponible moins l'espace entre les éléments */
    max-width: 350px;
    text-align: center;
}

.formule img {
    width: 100%;
    border-radius: 10px;
}

.formule p {
    margin-top: 10px;
    font-size: 16px;
    color: var(--white);
}

/* Adaptation pour les petits écrans */
@media (max-width: 768px) {
    .formule {
        flex: 1 1 100%; /* Prendre toute la largeur disponible sur les petits écrans */
    }
}


@media (max-width: 1100px) {
	#nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-grow: 1;
    text-align: center;
    z-index: 1000; /* Ensure menu is above the image */
}
	
  }



@media (max-width: 1024px) {
  .logo img {
        height: 120px;
        margin-left: 0;
        padding-top: 0;
        padding-bottom: 0;
        z-index: 1001; /* Assurez-vous que le logo est au-dessus de la photo */
        position: relative;
    }
	
	
	

}

@media (max-width: 1000px) {
	
	
	.rectangle-membre {
    max-width: 450px; /* Taille par défaut */
    height: auto; /* Taille par défaut */
    background-color: var(--light-blue);
    border: 1px solid var(--white);
    border-radius: 10px;
    margin-left: 40px; /* Ajoutez cette ligne pour aligner les images avec les titres et les textes */
	margin-top: 50px;
}
	
	
    #menu-button {
        display: block;
        background-color: var(--dark-blue);
        color: var(--white);
        border: 1px solid var(--border-color);
        padding: 8px;
        font-size: 18px;
        cursor: pointer;
        border-radius: 5px;
        transition: background 0.3s, color 0.3s, border 0.3s;
        z-index: 1001; /* Assurez-vous que le bouton est au-dessus de la photo */
        position: relative;
    }

    #nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background-color: var(--menu-bg-color);
        border-top: 1px solid var(--semi-transparent-white);
        z-index: 1000; /* Assurez-vous que le menu est au-dessus de la photo */
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        transition: height 0.5s ease-in-out;
    }

    #nav-links.show {
        display: flex;
        height: auto;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
    }

    #nav-links li {
        margin: 10px 0;
    }

    #nav-links li a {
        font-size: 18px;
        padding: 15px 25px;
        display: block;
        text-align: left;
        border-radius: 5px;
        border: 1px solid var(--border-color);
        width: 100%;
        box-sizing: border-box;
    }

    #nav-links li a:hover {
        background-color: var(--hover-bg-color);
        color: var(--white);
    }


    .language-options {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .feature-content-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-content {
        padding: 10px;
    }

    .feature-content h2 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 14px;
    }
}

@media (min-width: 1001px) {
    #menu-button {
        display: none;
    }

    #nav-links {
        display: flex;
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
        overflow: visible;
        height: auto;
    }

    #nav-links li {
        margin: 0 10px;
    }

    #nav-links li a {
        font-size: 18px;
        padding: 4px 20px;
        display: inline-block;
        text-align: center;
        border-radius: 5px;
        border: 1px solid var(--border-color);
        margin: 0;
        width: auto;
        box-sizing: border-box;
    }

    #nav-links li a:hover {
        background-color: var(--hover-bg-color);
        color: var(--white);
    }
}

@media (max-width: 480px) {
	
	
.grecaptcha-badge { 
    visibility: hidden !important;
}


	
	.area-section {
		
		padding-bottom: 20px;
	}
	
	 .bouton-text-overlay {
        font-size: 2px; /* Réduire la taille de la police si nécessaire */
    }

	
	.currency-container {
	margin-left: 10px;
}
	
	
.rectangle-membre {
    width: 95%; /* Taille par défaut */
    height: auto; /* Taille par défaut */
    background-color: var(--light-blue);
    border: 1px solid var(--white);
    border-radius: 10px;
   margin-left: auto;
		margin-right: auto;
}
	
	
	.rectangle {
    width: 95%; /* Taille par défaut */
    height: auto; /* Taille par défaut */
    background-color: var(--light-blue);
    border: 1px solid var(--white);
    border-radius: 10px;
    margin-left: auto;
		margin-right: auto;
}
	
	
    #language-button-container {
        position: relative;
        display: flex;
        justify-content: flex-end;
        margin-left: auto;
	    margin-right: 0px;
    }

    .overlay {
        position: absolute;
        top: 50%;
        left: 51%;
        transform: translate(-50%, -50%);
        color: var(--white);
        padding: 5px 10px;
        border-radius: 5px;
        font-family: 'Verdana', sans-serif;
        font-size: 10px;
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }




    .feature h2 {
        font-size: 20px;
    }

    .feature p {
        font-size: 14px;
    }

    .logo img {
        height: 100px;
        margin-left: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .feature-content {
        padding: 10px;
    }

    .feature-content h2 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 14px;
    }

    footer p {
        margin: 5px 0;
        font-size: 14px;
    }

    .login-section form input {
        padding-left: 10px;
        height: 30px;
        border-radius: 5px;
        font-size: 16px;
        width: 100%;
        max-width: 332px;
        margin-bottom: 10px;
    }

    .login-section form button {
        padding: 10px;
        border-radius: 5px;
        font-size: 16px;
        width: 100%;
        max-width: 332px;
        margin-bottom: 20px;
    }

    .subscription-plan-button {
        padding: 15px; /* Adjust padding for smaller screens */
        font-size: 16px;
        width: 100%;
        max-width: 332px;
    }

    .subscription-plan-button span {
        line-height: 1.4; /* Adjust line-height for better spacing */
        width: 100%;
        max-width: 332px;
    }

    .form-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-left: 2%;
    }
}


.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    z-index: 999; /* Assurez-vous que le texte de la hero est au-dessus de l'image */
    max-width: 90%; /* Limite la largeur maximale à 90% de l'écran */
    width: auto; /* Permet à la largeur de s'ajuster automatiquement en fonction du contenu */
    text-align: center;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
/*    white-space: nowrap; */
	margin-top: 0px;
	
}

.hero-text p {
    font-size: 24px;
margin-bottom: 0px;
}

.hero-text h1, .hero-text p {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}


.profile-button-overlay {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Ombre pour le texte */
    /* Ajoutez d'autres styles si nécessaire, comme la couleur, la taille de la police, etc. */
}


@media (max-width: 1380px) {
    .hero-text h1 {
        white-space: normal; /* Permet au texte de passer à la ligne si nécessaire */
    }
}

@media (max-width: 768px) {
    .hero-text {
        width: 80%; /* Réduit la largeur à 80% de l'écran pour les petits écrans */
    }
    .hero-text h1 {
        font-size: 30px; /* Réduit la taille de la police pour s'adapter aux petits écrans */
    }
	
	.hero-text p {
    font-size: 22px;
margin-bottom: 0px;
}
}



.hero.member-hero {
    position: relative;
    display: flex;
    align-items: center; /* Centre verticalement */
    justify-content: center; /* Centre horizontalement */
    height: 70vh; /* Hauteur du hero */
    min-height: 300px;
    overflow: hidden;
}

.hero.member-hero img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero.member-hero .hero-text {
   position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    z-index: 999; /* Assurez-vous que le texte de la hero est au-dessus de l'image */
    max-width: 90%; /* Limite la largeur maximale à 90% de l'écran */
    width: auto; /* Permet à la largeur de s'ajuster automatiquement en fonction du contenu */
    text-align: center;
}
.hero.member-hero .hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
/*    white-space: nowrap; */
	margin-top: 0px;
	
}

.hero.member-hero .hero-text p {
    font-size: 24px;
    margin: 0;
    line-height: 1.5;
	margin-bottom: 0px;
}


@media (max-width: 1380px) {
.hero.member-hero .hero-text h1 {
        white-space: normal; /* Permet au texte de passer à la ligne si nécessaire */
    }
}



/* Responsivité pour les écrans plus petits */
@media (max-width: 768px) {
    .hero.member-hero .hero-text {
        width: 80%;
        padding: 20px;
    }

    .hero.member-hero .hero-text h1 {
        font-size: 30px;
    }

    .hero.member-hero .hero-text p {
        font-size: 22px;
    }
}


@media (max-width: 768px) {
	.hero.member-hero {
        height: 60vh; /* Hauteur par défaut */
        min-height: 300px;
	}
	}


.links-container {
    display: flex;
    justify-content: center; /* Centre les liens */
    gap: 12%; /* Espacement entre les liens */
    margin-top: 5px;
}

.link-item {
    color: #ffffff; /* Couleur du texte */
    text-decoration: none; /* Supprime le soulignement */
    font-size: 18px;
    padding: 2px 10px; /* Ajoute un peu de padding pour l'espacement interne */
    position: relative;
    transition: color 0.3s ease;
	margin-top: 6px;
}

.link-item::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Positionne la ligne juste en dessous du texte */
    left: 50%;
    transform: translateX(-50%);
    width: 0; /* Ligne invisible par défaut */
    height: 2px; /* Épaisseur de la ligne */
    background-color: #ffffff; /* Couleur de la ligne par défaut */
    transition: width 0.3s ease, background-color 0.3s ease, transform-origin 0.3s ease;
    transform-origin: center; /* La ligne s'étendra depuis le centre */
}

.link-item:hover::after {
    width: 100%; /* La ligne devient visible au survol */
    background-color: #caa255; /* Change la couleur de la ligne au survol */
}

.link-item:hover {
    color: #FFFFFF; /* Change la couleur du texte au survol */
}

.active_home_link {
    color: #FFFFFF; /* Couleur du texte pour le lien actif */
}

.active_home_link::after {
    width: 100%; /* La ligne est déjà visible pour le lien actif */
    background-color: #caa255; /* Couleur de la ligne pour le lien actif */
}

@media (max-width: 768px) {
    .links-container {
        gap: 6%; /* Réduit l'espace entre les liens pour les écrans moyens */
		
    }

    .link-item {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .links-container {
        flex-wrap: wrap; /* Permet d'afficher les liens sur une seule ligne */
        justify-content: space-around; /* Espace les liens de manière égale */
		        gap: 2%; /* Réduit l'espace entre les liens pour les écrans moyens */
		
    }

    .link-item {
        font-size: 16px;
        padding: 2px 0; /* Ajuste le padding pour les petits écrans */
        margin-bottom: 0px; /* Ajoute un peu d'espace entre les lignes */
    }
}




.alphabet-section h2 {
    text-align: center; /* Centre le titre */
    margin-bottom: 20px; /* Espace en dessous du titre */
}

.alphabet-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centre les lettres horizontalement */
    margin-bottom: 20px;
}

.alphabet-links a {
    font-size: 2rem; /* Taille par défaut des lettres */
    display: inline-block;
    margin: 10px; /* Espacement autour des lettres */
    text-decoration: none; /* Retire le soulignement */
    color: #FFFFFF; /* Couleur du texte */
}
@media (max-width: 768px) {
    .alphabet-links a {
        font-size: 3rem; /* Taille des lettres pour les petits écrans */
        margin: 15px; /* Espacement ajusté pour petits écrans */
    }
}

@media (max-width: 480px) {
    .alphabet-links a {
        font-size: 4rem; /* Taille encore plus grande pour très petits écrans */
        margin: 20px; /* Espacement encore plus grand */
    }
}

/* CSS spécifique à la section de la définition dans le dictionnaire des rêves */
.definition-container {
    margin-top: 20px;
	
}

.dream-word {
    margin-bottom: 10px;
}

.dream-description {
    margin-bottom: 20px;
}

.dream-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border: 1px solid white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    margin-left: 40px;
}

/* Styles pour les petits écrans */
@media (max-width: 768px) {
    .dream-word,
    .dream-description {
  margin-left: 40px;
        margin-right: 0; /* Suppression de la marge à droite */
    }

    .dream-image {
        max-width: 80%;
        margin: 0 auto;
        margin-left: 40px;
    }
	
	.alphabet-section{
	
	margin-left: 5px;
}

	   .alphabet-links a {
        font-size: 1.8rem; /* Taille des lettres pour les petits écrans */
        margin: 8px; /* Espacement ajusté pour petits écrans */
    }

	
}

@media (max-width: 480px) {
    .dream-word,
    .dream-description {
        margin-left: 0; /* Suppression de la marge à gauche */
        margin-right: 0; /* Suppression de la marge à droite */
    }

    .dream-image {
        max-width: 90%;
        margin: 0 auto;
       margin-left: 10px;
    }
	
	  .alphabet-links a {
        font-size: 1.5rem; /* Taille encore plus petite pour très petits écrans */
        margin: 5px; /* Espacement réduit pour les très petits écrans */
    }
	
	
	.language-button {
    background: none;
    border: 1px solid var(--border-color);
    padding: 5px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 5px;
    color: var(--white);
    transition: background 0.3s, color 0.3s, border 0.3s;
}
	
	
}
	
.button-offers {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    border: 1px solid #fff; /* Bordure blanche */
    color: #fff; /* Couleur du texte */
    font-size: 18px; /* Taille de la police augmentée */
    text-align: center;

    border-radius: 5px;
   
}



.promo-button {
	width: 300px;
    display: inline-block;
    padding: 8px 24px;
    font-size: 18px;
/*    font-weight: bold;*/
    color: #fff; /* Couleur du texte */
    background: transparent; /* Arrière-plan transparent */
    border: 1px solid #caa255; /* Bordure blanche */
    border-radius: 5px; /* Coins légèrement arrondis */
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 transparent;
    margin: 10px;
	margin-bottom: 20px;
    cursor: pointer; /* Curseur en forme de main */
}

.promo-button:hover {
    background: rgba(255, 255, 255, 0.1); /* Effet d'arrière-plan semi-transparent au survol */
    color: #fff; /* Texte reste blanc */
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2); /* Légère ombre au survol */
}

.promo-button:active {
    background: rgba(255, 255, 255, 0.2); /* Plus opaque lorsqu'on clique */
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .promo-button {
        font-size: 16px;
        padding: 10px 20px;
	
    }
	
		.button-offers {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    border: 1px solid #fff; /* Bordure blanche */
    color: #fff; /* Couleur du texte */
    font-size: 16px; /* Taille de la police augmentée */
    text-align: center;

    border-radius: 5px;
   
}
	
	
}

@media (max-width: 480px) {
    .promo-button {
        font-size: 16px;
        padding: 8px 18px;
		width: 100%;
        max-width: 330px; /* S'adapte à toute la largeur sur petits écrans */
        box-sizing: border-box;
    }
	

	

}

