@font-face {
    font-family: 'Great Vibes';
    src: url('fonts/GreatVibes-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Section Tarifs */
.pricing-section {
    border: 3px solid rgb(240, 156, 51); /* Contour jaune autour de la section */
    border-radius: 1rem; /* Coins arrondis pour un look moderne */
    padding: 4rem 1rem;
    background-color: #000000; /* Fond noir */
    margin-top: 6rem;
    font-family: 'Roboto', sans-serif;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    
}

.pricing-title {
    font-size: 6rem;
    font-family: Arial, sans-serif; /* Police de secours pour plus de lisibilité */
    color: rgb(240, 156, 51); /* Jaune */
    
    margin: 0;
    padding-bottom: 0.5rem;
    position: relative;
    top: -50px;
    font-family: 'Great vibes', cursive;
}

.pricing-title::after {
    content: ""; /* Crée un élément vide */
    position: absolute;
    left: 50%; /* Centre le trait sous le titre */
    bottom: 0; /* Positionne le trait juste en dessous du texte */
    transform: translateX(-50%); /* Centre le trait horizontalement */
    width: 60%; /* Ajustez la largeur du trait ici */
    height: 4px; /* Épaisseur du trait */
    background-color: rgb(240, 156, 51); /* Jaune */
}

.pricing-description {
    font-size: 1.2rem;
    color: #e0e0e0; /* Gris très clair */
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Ajuste les colonnes */
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.pricing-item {
    font-size: 1.2rem;
    color: #fff;
    background-color: #1a1a1a; /* Fond sombre */
    padding: 2rem;
    border-radius: 1rem;
    border: 3px solid rgb(240, 156, 51); /* Contour jaune */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    background-color: #333; /* Fond légèrement plus clair au survol */
}

.pricing-item input {
    position: absolute;
    top: 1rem;
    right: 1rem;
    transform: scale(1.5);
    cursor: pointer;
    z-index: 2; /* Assure que la case à cocher est au-dessus du contenu */
}

.pricing-item span {
    position: relative;
    z-index: 1; /* Assure que le texte est au-dessus du fond */
}

.pricing-item input:checked + span::before {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: #fff;
    background-color: rgb(240, 156, 51); /* Jaune pour le checkmark */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: checkmark 0.3s ease-in-out forwards;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.reserve-button {
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    color: #fff;
    background-color: rgb(240, 156, 51); /* Jaune pour le bouton */
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2rem; /* Ajoute de l'espace au-dessus du bouton */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.reserve-button:hover {
    background-color: #e18a3c; /* Jaune plus foncé au survol */
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

/* Cache les options d'oracle par défaut */
.oracle-options {
    display: none;
    margin-top: 2rem;
    border: 1px solid rgb(240, 156, 51); /* Bordure jaune */
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: #1a1a1a; /* Fond sombre */
}

.oracle-options label {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
}

.oracle-options input {
    margin-right: 0.5rem;
}
/* Styles de la modale */
/* Styles de la modale */
.modal {
    display: none; /* Caché par défaut */
    position: fixed; /* Fixe par rapport à la fenêtre de visualisation */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fond sombre avec opacité */
    z-index: 1000; /* Au-dessus de tout autre contenu */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #1a1a1a;
    border-radius: 1rem;
    padding: 2rem;
    width: 80%; /* Ajuster la largeur selon vos besoins */
    max-width: 900px; /* Largeur maximale */
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    cursor: pointer;
    color: #f0c93b; /* Jaune pour l'icône de fermeture */
}

.modal-content h2 {
    color: rgb(240, 156, 51); /* Jaune pour le titre */
    font-size: 2rem;
    margin-top: 0;
}

.modal-content label {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
}

.modal-content input {
    margin-right: 0.5rem;
}

/* Panneau des options supplémentaires */
.options-panel {
    display: none; /* Masquer le panneau par défaut */
    margin-top: 5rem;
    padding: 1rem;
    background-color: #222; /* Fond sombre */
    border-radius: 1rem;
    border: 2px solid rgb(240, 156, 51); /* Contour jaune */
}

.options-panel h3 {
    color: rgb(240, 156, 51);
    margin-bottom: 1rem;
    font-size: 20px;
    font-style: italic;
}

.options-panel label {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}


.options-panel h3 {
    color: rgb(240, 156, 51);
    margin-bottom: 1rem;
}

.options-panel label {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
/* Styles pour la section récapitulative */
.summary-section {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #1a1a1a; /* Fond sombre */
    border: 1px solid rgb(240, 156, 51); /* Bordure jaune */
    border-radius: 0.75rem;
}

.summary-section h3 {
    color: rgb(240, 156, 51); /* Jaune pour le titre */
    margin: 0;
    font-size: 1.5rem;
}

#summary-content {
    color: #fff;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.special-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem; /* Espacement sous les nouvelles options */
    gap: 1rem;
}

.special-option {
    font-size: 1.3rem; /* Taille légèrement plus grande */
    color: #fff;
    background-color: #333; /* Fond légèrement plus clair */
    padding: 1rem;
    border-radius: 0.75rem;
    border: 2px solid rgb(240, 156, 51); /* Bordure jaune */
    flex: 1;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.special-option input {
        appearance: none; /* Supprime le style par défaut de la case à cocher */
        background-color: #333; /* Fond de la case à cocher */
        border: 2px solid rgb(240, 156, 51); /* Bordure jaune */
        border-radius: 0.25rem;
        width: 20px; /* Largeur de la case à cocher */
        height: 20px; /* Hauteur de la case à cocher */
        position: relative;
        cursor: pointer;
        transition: background-color 0.3s ease;
 position: relative;
    left: -1.5rem;
}

.special-option input:checked::before {
    content: '✔'; /* Checkmark */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #fff; /* Couleur du checkmark */
}

.special-option:hover {
    background-color: #444; /* Fond encore plus clair au survol */
}




.special-option input:checked {
    background-color: rgb(240, 156, 51); /* Jaune lorsque coché */
    color: #fff;
}

.special-option input:checked {
    animation: checkmarkAnimation 0.3s ease-in-out forwards;
}

@keyframes checkmarkAnimation {
    0% {
        background-color: #333;
        transform: scale(1);
    }
    50% {
        background-color: rgb(240, 156, 51); /* Jaune lors du changement */
        transform: scale(1.1); /* Légère augmentation de la taille */
    }
    100% {
        background-color: rgb(240, 156, 51); /* Jaune après l'animation */
        transform: scale(1);
    }
}



.error-message {
    display: none; /* Caché par défaut */
    color: #fff; /* Couleur du texte en blanc */
    background-color: #ff4d4d; /* Fond rouge vif */
    border: 2px solid #cc0000; /* Bordure rouge foncé */
    border-radius: 0.5rem;
    font-size: 1.5rem; /* Taille de police plus grande */
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    animation: shake 0.5s ease; /* Animation de secousse pour attirer l'attention */
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}


.summary-container {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #1a1a1a; /* Fond sombre */
    border: 1px solid rgb(240, 156, 51); /* Bordure jaune */
    border-radius: 0.75rem;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.summary-container h3 {
    color: rgb(240, 156, 51); /* Jaune pour le titre */
    margin: 0;
    font-size: 1.5rem;
}



.container-couple{
    position: relative;
    top: 2rem;
}

.titre-couple {
    font-size: 18px; /* Taille de h2 */
    font-weight: bold;
    color: #ffffff; /* Ajuste la couleur si besoin */
}

.texteplus {
    font-size: 15px; /* Taille du texte du paragraphe */
    color: #c9c3c3; /* Ajuste la couleur si besoin */
    line-height: 1.5; /* Ajuste l'espacement entre les lignes */
}
