/* ============================================
   Variables & Reset
   ============================================ */

:root {
    --beige-clair: #F9F6F2;
    --vert-sauge: #A8C6A1;
    --peche: #EBD9D4;
    --blanc-casse: #FFFEFB;
    --texte-fonce: #3A3A3A;
    --texte-moyen: #666666;
    --ombre-legere: 0 2px 10px rgba(0, 0, 0, 0.08);
    --ombre-moyenne: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    color: var(--texte-fonce);
    line-height: 1.6;
    background-color: var(--blanc-casse);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--texte-fonce);
    line-height: 1.2;
}

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

/* ============================================
   Header & Navigation
   ============================================ */

.header {
    background-color: var(--blanc-casse);
    box-shadow: var(--ombre-legere);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--texte-fonce);
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-icon:hover {
    color: var(--vert-sauge);
    background-color: var(--beige-clair);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

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

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--vert-sauge);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--texte-fonce);
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--vert-sauge);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--vert-sauge);
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--texte-fonce);
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(249, 246, 242, 0.08), rgba(168, 198, 161, 0.15));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--texte-fonce);
    padding: 2rem;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hero-title-part1 {
    font-size: 3.8rem;
    display: block;
}

.hero-title-part2 {
    font-size: 3.2rem;
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

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

.btn-primary:hover {
    background-color: #8fb389;
    transform: translateY(-2px);
    box-shadow: var(--ombre-moyenne);
}

.btn-secondary {
    background-color: var(--peche);
    color: var(--texte-fonce);
}

.btn-secondary:hover {
    background-color: #e0c9c2;
    transform: translateY(-2px);
    box-shadow: var(--ombre-moyenne);
}

/* ============================================
   Sections
   ============================================ */

section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--texte-fonce);
}

.page-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--texte-fonce);
}

.page-intro,
.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--texte-moyen);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* ============================================
   Carte Cadeau Section
   ============================================ */

.cadeau-section {
    padding: 4rem 0;
    background-color: var(--peche);
}

.cadeau-block {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s ease;
    max-width: 1000px;
    margin: 0 auto;
}

.cadeau-block:hover {
    transform: translateY(-5px);
}

.cadeau-content {
    background-color: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: var(--ombre-moyenne);
    transition: all 0.3s ease;
}

.cadeau-block:hover .cadeau-content {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.cadeau-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    color: var(--texte-fonce);
    margin-bottom: 2rem;
}

.cadeau-button-wrapper {
    text-align: center;
}

.cadeau-button-wrapper .btn {
    display: inline-block;
}

/* ============================================
   Intro Section
   ============================================ */

.intro {
    background-color: var(--beige-clair);
    padding: 4rem 0;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    color: var(--texte-moyen);
}

.intro-button {
    text-align: center;
    margin-top: 2rem;
}

.intro-author {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--texte-moyen);
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ============================================
   Services Section
   ============================================ */

.services {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--ombre-legere);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ombre-moyenne);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--texte-fonce);
}

.service-description {
    padding: 0 1.5rem 1.5rem;
    color: var(--texte-moyen);
    line-height: 1.6;
}

.services-button {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   Contact Quick Section
   ============================================ */

.contact-quick {
    background: linear-gradient(135deg, var(--vert-sauge), #8fb389);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.contact-quick .section-title {
    color: white;
}

.contact-info {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.phone-link {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.phone-link:hover {
    transform: scale(1.05);
}

.contact-quick .btn-primary {
    background-color: white;
    color: var(--vert-sauge);
}

.contact-quick .btn-primary:hover {
    background-color: var(--beige-clair);
}

/* ============================================
   About Page
   ============================================ */

.page-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(168, 198, 161, 0.3), rgba(249, 246, 242, 0.5));
}

.about-intro {
    padding: 4rem 0;
    background-color: var(--beige-clair);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.experience-badge {
    text-align: left;
    margin-bottom: 2rem;
}

.experience-badge span {
    display: inline-block;
    background-color: var(--vert-sauge);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
}

.about-content .page-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text {
    max-width: 100%;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    color: var(--texte-moyen);
}

.ffmbe-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: var(--blanc-casse);
    border-radius: 10px;
    border-left: 4px solid var(--vert-sauge);
}

.ffmbe-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.ffmbe-section p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

.about-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--ombre-moyenne);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach {
    padding: 5rem 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.approach-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--ombre-legere);
    transition: transform 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
}

.approach-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--ombre-legere);
}

.approach-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--vert-sauge);
}

.approach-item p {
    color: var(--texte-moyen);
    line-height: 1.6;
}

.zone {
    background-color: var(--beige-clair);
    padding: 4rem 0;
    text-align: center;
}

.zone-text {
    font-size: 1.2rem;
    color: var(--texte-moyen);
    margin-bottom: 1rem;
}

.cta-section {
    padding: 3rem 0;
    text-align: center;
}

/* ============================================
   Massages Page
   ============================================ */

.page-header {
    padding: 4rem 0 2rem;
    background-color: var(--beige-clair);
}

.massages-services {
    padding: 4rem 0;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card-detailed {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--ombre-legere);
    transition: all 0.3s ease;
}

.service-card-detailed:hover {
    box-shadow: var(--ombre-moyenne);
    transform: translateY(-5px);
}

.service-image-detailed {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image-detailed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-detailed:hover .service-image-detailed img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--vert-sauge);
}

.service-desc {
    color: var(--texte-moyen);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--texte-moyen);
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--vert-sauge);
    font-weight: bold;
}

.service-pricing {
    background-color: var(--beige-clair);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-pricing p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--texte-fonce);
}

.why-choose {
    background-color: var(--beige-clair);
    padding: 5rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-item {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--ombre-legere);
    text-align: center;
}

.why-item h3 {
    font-size: 1.3rem;
    color: var(--vert-sauge);
    margin-bottom: 1rem;
}

.why-item p {
    color: var(--texte-moyen);
    line-height: 1.6;
}

.faq {
    padding: 5rem 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--ombre-legere);
}

.faq-question {
    font-size: 1.3rem;
    color: var(--vert-sauge);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--texte-moyen);
    line-height: 1.7;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-header {
    padding: 4rem 0 2rem;
    background-color: var(--beige-clair);
}

.contact-content {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-section h2,
.contact-details-box h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--texte-fonce);
}

.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--ombre-legere);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--texte-fonce);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--beige-clair);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--blanc-casse);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vert-sauge);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--ombre-legere);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details-box {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--ombre-legere);
}

.contact-detail-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--beige-clair);
}

.contact-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-detail-item strong {
    display: block;
    color: var(--vert-sauge);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-detail-item a {
    color: var(--texte-fonce);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: var(--vert-sauge);
}

.contact-detail-item p {
    color: var(--texte-moyen);
    margin: 0.5rem 0;
}

.zone-note {
    font-style: italic;
    color: var(--texte-moyen);
}

.social-links-contact {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links-contact a {
    padding: 0.5rem 1rem;
    background-color: var(--beige-clair);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.social-links-contact a:hover {
    background-color: var(--vert-sauge);
    color: white;
}

.hours-section {
    background-color: var(--beige-clair);
    padding: 5rem 0;
}

.hours-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.hours-item {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--ombre-legere);
    text-align: center;
}

.hours-item h3 {
    font-size: 1.5rem;
    color: var(--vert-sauge);
    margin-bottom: 1rem;
}

.hours-item p {
    color: var(--texte-moyen);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--texte-fonce);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--vert-sauge);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-icon-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-footer:hover {
    color: var(--vert-sauge);
    transform: translateX(5px);
}

.social-icon-footer svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-icon-footer span {
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Animations
   ============================================ */

.section-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .header .container {
        gap: 1rem;
    }

    .nav {
        margin-left: 0;
        gap: 1rem;
    }

    .header-social {
        margin-left: 0.5rem;
        gap: 0.5rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--blanc-casse);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--ombre-moyenne);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title-part1 {
        font-size: 2.7rem;
    }

    .hero-title-part2 {
        font-size: 2.3rem;
    }

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

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

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

    .services-grid,
    .services-grid-detailed {
        grid-template-columns: 1fr;
    }

    .approach-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
        max-height: 400px;
    }

    .ffmbe-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ffmbe-logo {
        width: 100px;
    }

    .ffmbe-section p {
        text-align: justify;
    }

    .about-content .page-title {
        text-align: center;
    }

    .experience-badge {
        text-align: center;
    }

    .hours-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        height: 50vh;
        min-height: 400px;
    }

    .cadeau-content {
        padding: 2rem 1.5rem;
    }

    .cadeau-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 35px;
        height: 35px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title-part1 {
        font-size: 2.2rem;
    }

    .hero-title-part2 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

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

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    section {
        padding: 3rem 0;
    }

    .cadeau-content {
        padding: 1.5rem 1rem;
    }

    .cadeau-text {
        font-size: 0.95rem;
    }
}

