/* Import de la police depuis le dossier local */
@font-face {
  font-family: 'Melodrame';
  src: url('/src/fonts/melodrame.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Améliore le chargement */
}

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #000000;
            background: linear-gradient(180deg, #e6963b 0%, #6e3601 100%);
        }
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 1rem 0;
            /*display: none; /* A supprimer */
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            align-content: center;
        }

.logo img {
    height: 60px;       /* Taille initiale */
    width: 60px;        /* Force une largeur égale à la hauteur pour le carré */
    object-fit: contain; /* Assure que l'image reste entière dans le carré sans déformation */
    display: block;
    transition: height 0.3s ease; /* Fluidité au scroll */
}

/* Si tu veux que le logo réduise au scroll (comme dans ton code) */
#header-bar.scrolled .logo img {
    height: 40px;       /* Réduction de la hauteur */
    width: 40px;        /* Réduction proportionnelle de la largeur */
}
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #c2410c;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #ea580c;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 6rem 2rem 2rem;
            background: linear-gradient(360deg, #e6963b 0%, #6e3601 100%);

        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;

        }

        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: bold;
            color: black !important;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            font-family: Melodrame;
        }

        .hero-content .highlight {
            color: black !important;
            display: block;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: black !important;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background: #ff480079;
            color: black;
        }

        .btn-primary:hover {
            background: #9a3412;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: black;
            border: 2px solid #c2410c;
        }

        .btn-secondary:hover {
            background: #c2410c;
            color: black;
            transform: translateY(-2px);
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .info-card {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: #963611fb;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .info-icon {
            background: #fed7aa;
            padding: 0.75rem;
            border-radius: 50%;
            color: #c2410c;
        }

        /* Massages Section */
        .massages {
            padding: 5rem 2rem;
            background: linear-gradient(180deg, #e6963b 0%, #fef3c7 100%)
        }

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

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 3rem;
            color: #c2410c;
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #c2410c;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Carousel */
        .carousel-container {
            position: relative;
            margin-bottom: 4rem;
        }

        .carousel {
            overflow: hidden;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            display: flex;
            align-items: flex-end;
            padding: 2rem;
            color: white;
        }

        .slide-content {
            width: 100%;
        }

        .slide-content h3 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .slide-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .slide-tags {
            display: flex;
            gap: 1rem;
        }

        .slide-tag {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .slide-price {
            background: #ea580c;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: bold;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: none;
            padding: 1rem;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-nav:hover {
            background: white;
        }

        .carousel-prev {
            left: 1rem;
        }

        .carousel-next {
            right: 1rem;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #f5f1ec;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: #c2410c;
            width: 32px;
            border-radius: 6px;
        }

        /* Massage Details */
        .massage-details {
            background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
            padding: 2rem;
            border-radius: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
            display: none;
        }

        .massage-details.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .details-content h4 {
            font-size: 1.8rem;
            color: #c2410c;
            margin-bottom: 1rem;
        }

        .details-content p {
            color: #c2410c;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .benefits-box {
            background: rgba(255, 255, 255, 0.6);
            padding: 1.5rem;
            border-radius: 20px;
        }

        .benefits-box h5 {
            color: #c2410c;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .benefits-box h6 {
            color: #ea580c;
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ea580c;
            display: inline-block;
        }

        .benefits-list {
            list-style: none;
        }

        .benefits-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
            color: #c2410c;
        }

        .benefit-dot {
            width: 8px;
            height: 8px;
            background: #ea580c;
            border-radius: 50%;
        }

        .process-box {
            background: rgba(255, 255, 255, 0.6);
            padding: 1.5rem;
            border-radius: 20px;
            height: 100%;
        }

        .pricing-info {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(194, 65, 12, 0.2);
        }

        .pricing-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ea580c;
        }

        /* About Section */
        .about {
            padding: 5rem 2rem;
            background: #FEF2C4
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .about-content h3 {
            font-size: 3rem;
            color: #c2410c;
            margin-bottom: 1.5rem;
        }

        .about-content p {
            color: #c2410c;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

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

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

        .credential-icon {
            background: #fed7aa;
            padding: 0.75rem;
            border-radius: 50%;
            color: #c2410c;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 2rem;
            background-color: #FEF2C4;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
        }

        .contact-card {
            background: linear-gradient(135deg, #fef3c7 0%, #fff7ed 100%);
            padding: 2rem;
            border-radius: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-card h4 {
            font-size: 1.5rem;
            color: #c2410c;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

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

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-item-icon {
            background: #fed7aa;
            padding: 0.75rem;
            border-radius: 50%;
            color: #c2410c;
            flex-shrink: 0;
        }

        .contact-item-content h5 {
            color: #c2410c;
            margin-bottom: 0.25rem;
            font-weight: 600;
        }

        .contact-item-content p {
            color: #c2410c;
        }

        /* Forms */
        .form-group {
            margin-bottom: 1rem;
        }

        .form-input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid #fed7aa;
            border-radius: 20px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            background: white;
        }

        .form-input:focus {
            outline: none;
            border-color: #ea580c;
        }

        .form-textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid #fed7aa;
            border-radius: 20px;
            font-size: 1rem;
            background: white;
            cursor: pointer;
        }

        .form-btn {
            width: 100%;
            padding: 0.75rem;
            background: #c2410c;
            color: white;
            border: none;
            border-radius: 20px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .form-btn:hover {
            background: #9a3412;
        }

        .form-btn.secondary {
            background: #ea580c;
        }

        .form-btn.secondary:hover {
            background: #c2410c;
        }

        /* Footer */
        .footer {
            background: #1f2937;
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .footer p {
            color: #fed7aa;
            margin-bottom: 1.5rem;
        }

        .footer-contacts {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-contact {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-copyright {
            color: #fed7aa;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

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

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

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

            .hero-buttons {
                justify-content: center;
            }

            .footer-contacts {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Hide scrollbar but keep functionality */
        .carousel {
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .carousel::-webkit-scrollbar {
            display: none;
        }

        #header{
            width: 80px;
            height: auto;
        }

.separator {
    position: relative;
    height: 80px;
    width: 100%;
    background-image: url(/src/img/flower.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.separator::before,
.separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 55px); /* ajuste selon la largeur de ton image */
    height: 2px;
    background-color: black;
    transform: translateY(-50%);
}

.separator::before {
    left: 0;
}

.separator::after {
    right: 0;
}

.footer-link {
    color: #fed7aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Style par défaut du bouton hamburger (masqué sur PC) */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Navbar de base (style "transparent" par défaut) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease;
    background-color: rgba(255, 255, 255, 0.4); /* Très transparent */
    padding: 10px 0;
}

/* Effet au scroll : on garde la transparence mais on ajoute le flou */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.4); 
    backdrop-filter: blur(15px); /* Flou plus intense */
    padding: 5px 0; /* Encore plus réduit au scroll */
}

/* Menu Mobile très compact */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; /* Juste en dessous de la barre réduite */
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95); /* Fond légèrement opaque pour la lisibilité */
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 10px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    
    .nav-links li {
        padding: 10px 0; /* Beaucoup plus compact que 1.5rem */
    }
}
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block !important; /* Force l'affichage sur mobile */
    }
    
    /* Assure que la liste des liens est cachée par défaut */
    .nav-links {
        display: none;
    }
    
    /* Classe active pour montrer le menu */
    .nav-links.active {
        display: flex !important;
    }
}

/* --- Correction propre du Menu Mobile --- */
@media screen and (max-width: 768px) {
    /* 1. Affichage du bouton hamburger */
    .menu-toggle {
        display: block !important;
    }

    /* 2. Style du menu déroulant (pour qu'il se colle sous la navbar) */
    .nav-links {
        display: none !important; /* Caché par défaut */
        position: absolute;
        top: 100%; /* Se cale exactement en bas de la navbar, peu importe sa hauteur */
        left: 0;
        width: 100%;
        background: #fff7ed !important; /* Couleur de fond harmonisée */
        flex-direction: column !important;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 9999 !important;
    }

    /* 3. Quand le menu est actif */
    .nav-links.active {
        display: flex !important;
    }

    /* 4. Espacement des liens dans le menu */
    .nav-links li {
        padding: 15px 0 !important;
        width: 100%;
        text-align: center;
    }

    /* 5. Style des liens pour la lisibilité */
    .nav-links a {
        font-size: 1.2rem !important;
        color: #c2410c !important;
        font-weight: bold !important;
    }
}