/* ========================================
   Variables CSS
   ======================================== */
:root {
    --primary-color: #7A9D7E;
    --primary-dark: #5d7c60;
    --primary-light: #a4c5a7;
    --secondary-color: #E8DCC4;
    --secondary-dark: #d4c4a8;
    --text-dark: #2c3e2f;
    --text-light: #6a7669;
    --white: #ffffff;
    --background: #f9f7f4;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-strong: rgba(0, 0, 0, 0.2);
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    --font-signature: 'Satisfy', cursive;
    --font-script: 'Dancing Script', cursive;
    

}

/* ========================================
   Reset & Base
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    background-color: var(--background);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ========================================
   Container
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-secondary);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

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

/* ========================================
   Header
   ======================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
}

#header.scrolled {
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

#header.scrolled .logo img {
    height: 50px;
}

nav ul {
    display: flex;
    gap: 35px;
    align-items: center;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}



.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-light) 100%);
    padding-top: 150px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,181.3C960,181,1056,139,1152,122.7C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text .subtitle {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-weight: 500;
    font-style: italic;
}

.hero-specialties {
    margin-bottom: 35px;
}

.hero-specialties p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 400;
    font-family: var(--font-secondary);
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-strong);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: 100px 0;
}

.section-alt {
    background-color: var(--white);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 25px auto 0;
    border-radius: 2px;
}

/* ========================================
   Content Box
   ======================================== */
.content-box {
    max-width: 900px;
    margin: 0 auto 50px;
    background-color: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 30px var(--shadow);
}

.section-alt .content-box {
    background-color: var(--background);
}

.content-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--text-light);
}

.content-box p:last-child {
    margin-bottom: 0;
}

.content-box p.highlight {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.2rem;
    padding-top: 15px;
    border-top: 2px solid var(--primary-light);
    margin-top: 30px;
}

/* ========================================
   Services Grid
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin: 60px 0;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px var(--shadow);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* ========================================
   Quote
   ======================================== */
.quote {
    max-width: 700px;
    margin: 60px auto 0;
    text-align: center;
}

.quote blockquote {
    background-color: var(--primary-light);
    padding: 40px 50px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.quote p {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote cite {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-style: normal;
    font-weight: 600;
}

/* ========================================
   Tarifs
   ======================================== */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tarif-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow);
    text-align: center;
    border: 2px solid transparent;
}

.tarif-card.special {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
}

.tarif-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.tarif-card .duration {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.tarif-card .price {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
    font-family: var(--font-primary);
}

.tarifs-info {
    background-color: var(--white);
    padding: 35px 45px;
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow);
    max-width: 900px;
    margin: 0 auto 40px;
}

.tarifs-info p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.tarifs-info p:last-child {
    margin-bottom: 0;
}

.tarifs-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   Contact
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background-color: var(--white);
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 5px 30px var(--shadow);
}

.contact-info h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 3px;
}

.contact-item a {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.social-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--secondary-color);
}

.social-links h4 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background-color: var(--primary-dark);
}

.social-icons a i {
    color: var(--white);
    font-size: 1.3rem;
}

.map-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px var(--shadow);
    height: 100%;
    min-height: 400px;
}

/* ========================================
   Footer
   ======================================== */
#footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 968px) {
    html {
        font-size: 15px;
    }

    .header-content nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 20px var(--shadow);
        padding: 100px 30px 30px;
        z-index: 999;
    }

    .header-content nav.active {
        right: 0;
    }

    .header-content nav ul {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text .subtitle {
        font-size: 1.6rem;
    }

    .image-wrapper {
        max-width: 400px;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .tarifs-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .content-box {
        padding: 35px 25px;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text .subtitle {
        font-size: 1.4rem;
    }

    .image-wrapper {
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tarifs-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 50px;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .hero-text .subtitle {
        font-size: 1.2rem;
    }

    .hero-specialties {
        margin-bottom: 25px;
    }

    .image-wrapper {
        margin-bottom: 30px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .content-box {
        padding: 25px 20px;
    }

    .tarifs-info {
        padding: 25px 20px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .quote blockquote {
        padding: 30px 25px;
    }

    .quote p {
        font-size: 1.3rem;
    }
}