/* ========================================
 *   VARIABLES COULEURS & RESET
 *   ======================================== */

:root {
    --noir: #1a1a1a;
    --noir-darker: #0f0f0f;
    --noir-light: #2a2a2a;
    --or: #d4af37;
    --or-light: #e8c547;
    --rouge: #d63447;
    --rouge-dark: #b8283c;
    --gradient-rouge: linear-gradient(135deg, #d63447 0%, #b8283c 100%);
    --shadow-rouge: 0 8px 20px rgba(214, 52, 71, 0.3);
    --text-light: #e0e0e0;
    --text-gray: #b0b0b0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--noir);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* ========================================
 *   HEADER & NAVBAR
 *   ======================================== */

header {
    background: linear-gradient(90deg, var(--noir-darker) 0%, var(--noir) 50%, var(--noir-darker) 100%);
    border-bottom: 2px solid var(--or);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    min-height: 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    order: 1;
}

.navbar-logo img {
    max-height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.2));
    transition: transform 0.3s ease;
}

.navbar-logo img:hover {
    transform: scale(1.05);
}

.navbar-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}


.navbar-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    flex: 1;
    order: 3;
}

.nav-link {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--or);
    border-bottom-color: var(--or);
}

.btn-reserver {
    background: var(--gradient-rouge);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    order: 4;
    flex-shrink: 0;
}

.btn-reserver:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-rouge);
}

/* Menu hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    order: 2;
    z-index: 1001;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--or);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
 *   RESPONSIVE NAVBAR
 *   ======================================== */

@media (max-width: 1024px) {
    .navbar {
        padding: 0.75rem 1.5rem;
        gap: 1.5rem;
    }

    .navbar-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex !important;
    }

    .navbar {
        padding: 1rem 1rem;
        gap: 1rem;
    }

    .navbar-logo {
        flex: 0 0 auto;
        order: 1;
    }

    .navbar-logo img {
        max-height: 50px;
    }

    .navbar-menu {
        order: 3;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--noir-darker);
        border-top: 2px solid var(--or);
        border-bottom: 2px solid var(--or);
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin: 0;
        flex: none;
    }

    .navbar-menu.active {
        max-height: 600px;
        padding: 1rem 0;
    }

    .navbar-menu li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        width: 100%;
    }

    .navbar-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
        display: block;
    }

    .btn-reserver {
        order: 4;
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0.5rem;
    }

    .navbar-logo img {
        max-height: 45px;
    }

    .navbar-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.8rem 1rem;
    }

    .btn-reserver {
        padding: 0.5rem 0.8rem;
        font-size: 0.65rem;
    }
}

/* ========================================
 *   CONTAINER & SECTIONS
 *   ======================================== */

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

.section {
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.section-title .text-gold {
    color: var(--or);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-tag {
    color: var(--or);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

/* ========================================
 *   HERO
 *   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--noir-darker) 0%, var(--noir) 50%, #2a0a15 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

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

.hero-tagline {
    color: var(--or);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
        min-height: 300px;
        margin-top: 60px;
    }

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

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

/* ========================================
 *   BOUTONS
 *   ======================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-rouge);
}

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

.btn-secondary:hover {
    background: var(--or);
    color: var(--noir);
}

.btn-white {
    background: white;
    color: var(--rouge);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--noir);
}

/* ========================================
 *   SECTION INTRO (Notre salon)
 *   ======================================== */

.section-intro {
    background-color: rgb(26, 26, 26) !important;
    color: #f0d9b5;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    color: #d4af37;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text p {
    color: #f0d9b5;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.intro-features {
    list-style: none;
    margin-bottom: 2rem;
}

.intro-features li {
    color: #f0d9b5;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.intro-features i {
    color: #d4af37;
    font-size: 1.2rem;
}

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

.intro-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-text h2 {
        font-size: 1.8rem;
    }

    .intro-placeholder {
        font-size: 3rem;
    }
}

/* ========================================
 *   SECTION MASSAGES
 *   ======================================== */

.section-massages {
    background-color: #1a1a1a;
}

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

.massage-card {
    background: var(--noir-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.massage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--or);
}

.massage-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    flex-shrink: 0;
}

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

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

.massage-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.3);
}

.massage-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.massage-card:hover .massage-card-overlay {
    opacity: 1;
}

.massage-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.massage-card-body h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.massage-card-body p {
    color: #b0b0b0;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.massage-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1rem;
    margin-top: 1rem;
}

.massage-price {
    color: var(--or);
    font-weight: 700;
    font-size: 1.1rem;
}

.massage-duration {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
 *   SECTION WHY (Pourquoi nous)
 *   ======================================== */

.section-why {
    background-color: #1a1a1a;
}

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

.why-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 3rem;
    color: var(--or);
    margin-bottom: 1rem;
}

.why-item h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.why-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* ========================================
 *   SECTION GALERIE
 *   ======================================== */

.section-galerie {
    background-color: var(--noir-darker);
}

.galerie-public-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.galerie-public-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    background: var(--noir-light);
}

.galerie-public-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galerie-public-item:hover img {
    transform: scale(1.05);
}

.galerie-public-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 1.5rem 1rem 1rem;
    font-weight: 600;
}

/* ========================================
 *   SECTION TÉMOIGNAGES (Avis clients)
 *   ======================================== */

.section-temoignages {
    background-color: rgb(26, 26, 26) !important;
    color: #f0d9b5;
}

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.temoignage-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem;
    color: #f0d9b5;
    transition: all 0.3s ease;
}

.temoignage-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.temoignage-stars {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
}

.temoignage-stars i {
    color: #666;
    font-size: 1.2rem;
}

.temoignage-stars i.active {
    color: #d4af37;
}

.temoignage-texte {
    color: #f0d9b5;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

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

.auteur-avatar {
    width: 45px;
    height: 45px;
    background: var(--or);
    color: var(--noir);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.temoignage-auteur strong {
    color: #d4af37;
    display: block;
}

.temoignage-service {
    color: #b0a080;
    font-size: 0.85rem;
    display: block;
    margin-top: 0.25rem;
}

/* ========================================
 *   SECTION CTA RESERVATION
 *   ======================================== */

.section-cta-resa {
    background: var(--gradient-rouge);
    padding: 4rem 2rem;
    text-align: center;
}

.section-cta-resa h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-cta-resa p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.bg-dark {
    background-color: var(--noir-darker);
}

.bg-primary {
    background: var(--gradient-rouge);
}

/* ========================================
 *   CARTES GÉNÉRIQUES
 *   ======================================== */

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

.card {
    background: var(--noir-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--or);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    flex-shrink: 0;
}

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

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

.card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-text {
    color: #b0b0b0;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1rem;
    margin-top: 1rem;
}

.card-price {
    color: var(--or);
    font-weight: 700;
    font-size: 1.1rem;
}

.card-duration {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* ========================================
 *   FOOTER
 *   ======================================== */

footer {
    background: linear-gradient(90deg, var(--noir-darker) 0%, var(--noir) 50%, var(--noir-darker) 100%);
    border-top: 2px solid var(--or);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

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

.footer-section h3 {
    color: var(--or);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-section p,
.footer-section li {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--or);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--or-light);
    text-decoration: underline;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 2px solid var(--or);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--or);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.social-link:hover {
    background: var(--or);
    color: var(--noir);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: #808080;
    font-size: 0.9rem;
}

/* ========================================
 *   LIENS
 *   ======================================== */

a {
    color: var(--or);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--or-light);
    text-decoration: underline;
}

.card-text a,
.section-intro p a,
.temoignage-texte a {
    color: var(--or);
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.card-text a:hover,
.section-intro p a:hover,
.temoignage-texte a:hover {
    border-bottom-color: var(--or);
}

/* ========================================
 *   FORMULAIRES
 *   ======================================== */

form {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--noir-light);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

label .required {
    color: var(--rouge);
    margin-left: 3px;
}

input,
textarea,
select {
    background: var(--noir);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: white;
    padding: 0.75rem;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

input::placeholder,
textarea::placeholder {
    color: #808080;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--or);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.05);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button[type="submit"],
input[type="submit"] {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-rouge);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

button[type="submit"]:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-rouge);
}

/* ========================================
 *   MESSAGES
 *   ======================================== */

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.alert-success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #81c784;
}

.alert-error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #ef5350;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid #ffc107;
    color: #ffd54f;
}

/* ========================================
 *   UTILITAIRES
 *   ======================================== */

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

.text-gold {
    color: var(--or);
}

.text-white {
    color: white;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

.hidden {
    display: none !important;
}

/* ========================================
 *   ANIMATIONS
 *   ======================================== */

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

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-down {
    animation: slideDown 0.4s ease-in-out;
}

/* ========================================
 *   CARROUSEL
 *   ======================================== */

.masseuse-carousel-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #d4af37;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

#carouselMasseuse {
    width: 100%;
    background: #1a1a1a;
}

#carouselMasseuse .carousel-inner {
    border-radius: 17px;
}

#carouselMasseuse .carousel-item {
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

#carouselMasseuse .carousel-item.active {
    display: flex !important;
}

#carouselMasseuse .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block !important;
}

@media (max-width: 768px) {
    #carouselMasseuse .carousel-item {
        height: 350px;
    }
}

@media (max-width: 480px) {
    #carouselMasseuse .carousel-item {
        height: 250px;
    }
}

