:root {
    --primary-color: #9C8165;
    --secondary-color: #E5DDD3;
    --text-color: #333333;
    --background-color: #FAF7F4;
    --serif-font: 'Cormorant Garamond', serif;
    --sans-font: 'Montserrat', sans-serif;
}

.lien {
    color: var(--primary-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

body {
    font-family: var(--sans-font);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(250, 247, 244, 0.95);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    text-align: center;
    margin-bottom: 1rem;
}

.logo {
    height: 60px;
    margin-bottom: 0.5rem;
}

.tagline {
    font-family: var(--serif-font);
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0;
}

nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-reservation {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h2 {
    font-family: var(--serif-font);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    margin-top: 175px;

     @media (max-width: 482px) {
        margin-top: 110px;
        font-size: 27px;
    }
}

/* Treatments Section */
.treatments {
    padding: 50px 50px;
    background-color: white;
}

.treatments2 {
    padding: 0px 50px;
    background-color: white;
}

.treatments3 {
    padding: 50px 50px;
    background-color: white;
}

.treatments h2 {
    text-align: center;
    font-family: var(--serif-font);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.treatment-card {
    text-align: center;
    padding: 1rem;
}

.treatment-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.treatment-card h3 {
    font-family: var(--serif-font);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.duration {
    color: var(--primary-color);
    font-weight: 500;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background-color: var(--secondary-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-family: var(--serif-font);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background-color: white;
    text-align: center;
}

.contact h2 {
    font-family: var(--serif-font);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: var(--serif-font);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    background-color: var(--background-color);
}

.faq h2 {
    text-align: center;
    font-family: var(--serif-font);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--secondary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0;
}

.faq-question h3 {
    font-family: var(--serif-font);
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 30px;
}

.footer-links a, .social-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

/* Custom cursor styles */
#custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    display: none;
}

#custom-cursor-plus {
    width: 20px;
    height: 20px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-size: 20px;
    display: none;
}

@media (min-width: 769px) {
    #custom-cursor,
    #custom-cursor-plus {
        display: block;
    }
}

#custom-cursor.hover {
    width: 40px;
    height: 40px;
}

#custom-cursor-plus.hover {
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .logo-container {
        margin-bottom: 0.5rem;
    }
    
    .logo {
        height: 50px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

 
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

.maps {
    padding-bottom: 100px;
}
.droit {
    margin-top: 20px;
    font-family: Montserrat, sans-serif;
}


.testcalendrier {
    margin-top: 200px !important;
}

.h1 {
        font-family: var(--serif-font);
        color: var(--primary-color);
        font-size: 0.9rem;
        letter-spacing: 1px;
        margin: 0;
        font-weight: 100;
}
.cal-embed {
    margin-top: 250px;
}

