html {
  scroll-padding-top: 170px; /* hauteur de ton menu */
  scroll-behavior: smooth;   /* optionnel, pour un scroll fluide */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #231f1f;
    color: #fff;
    padding: 1rem 0;
}
.header .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.container-soushead {
    max-width: 800px;
    padding: 0 1rem;
}
.logo-container {
    position: absolute;
    top: 18px;
    right: 500px;
    z-index: 1000;
}
.logo-image {
    max-width: 70px;
    height: auto;
}
.logo h1 {
    text-decoration: none;
}
.nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 1rem;
}
.hero {
    margin-top: var(--header-height, 80px);
    color: #fff;
    text-align: center;
    padding: 5rem 1rem;
}
.hero-text h2 {
    font-size: 2rem;
}
.cta-button {
    padding: 0.75rem 1.5rem;
    background-color: #ff69b4;
    color: #fff;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
    cursor: pointer;
}
.services, .about, .contact {
    padding: 2rem 1rem;
    background: #b9bbae;
}
.services .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.service-item {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.service-item h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0;
}
.service-item p, .service-item .price {
    margin: 0.5rem 0;
}
.price {
    color: #ff69b4;
    font-weight: bold;
    text-decoration: none;
}
.service-image {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    margin-top: 80px;
    margin-bottom: 10px;
}
.contact-form {
    display: flex;
    flex-direction: column;
}
.contact-form label {
    margin-bottom: 0.5rem;
}
.contact-form input, .contact-form textarea {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.footer {
    text-align: center;
    padding: 1rem 0;
    background: #333;
    color: white;
}
.back-to-top {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background-color: #ff69b4;
    color: white;
    padding: 10px 15px;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.reservation {
    position: fixed;
    bottom: 450px;
    right: 20px;
}
.hero2 {
    background: #e7cfcf;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #ddd;
}
.hero2-text {
    color: #736060;
    text-decoration: none;
}
.hero2 h3 {
    color: #736060;
    text-decoration: none;
}
.hero2-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}
.hero2-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.hero2-item {
    text-decoration: none;
    flex: 1 1 calc(50% - 10px);
    max-width: 300px;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero2-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.hero2-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.hero2-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.hero2-card p {
    font-size: 0.9rem;
    color: #666;
}
.rdv-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
    background-color: #9f8c6b;
    color: #fff;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.rdv-button:hover {
    background-color: #e69321;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}
.rdv-button:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.5);
}
#selectedDateTime {
    margin-top: 20px;
    font-family: Arial, sans-serif;
    color: #452f2f;
    font-size: 20px;
}
#selectedDate, #selectedTime {
    display: inline-block;
    background-color: antiquewhite;
    padding: 0 5px;
}
.email-message {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
}

/* Responsive */
@media (max-width: 768px) {
    .service-item {
        flex: 1 1 calc(50% - 20px);
    }
    .hero-text h2 {
        font-size: 1.5rem;
    }
    .cta-button {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}
@media (max-width: 480px) {
    .service-item {
        flex: 1 1 100%;
    }
    .nav a {
        font-size: 0.9rem;
        margin: 0 5px;
    }
    .cta-button {
        font-size: 0.8rem;
    }
}
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}
