/* ===== VARIABLES CSS - BABYYOGINI13 ===== */
:root {
    /* Couleurs principales */
    --lavender: #9B8FBF;
    --lavender-light: #C5B9E1;
    --lavender-dark: #7B6FA0;
    --pearl-gray: #E8E8E8;
    --pearl-gray-dark: #D5D5D5;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --accent-green: #8B9D83;
    
    /* Typographie */
    --font-body: 'Montserrat', sans-serif;
    --font-heading: 'Dancing Script', cursive;
    
    /* Espacements */
    --section-padding: 80px 0;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Abril Fatface', cursive;
    font-weight: 400;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ===== NAVIGATION ===== */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--lavender) !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-brand:hover {
    color: var(--lavender-dark) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--lavender-light);
    color: var(--lavender-dark) !important;
}

/* Dropdown Menu Navigation */
.navbar .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1050;
}

.navbar .dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background-color: var(--lavender-light);
    color: var(--lavender-dark);
}

.navbar .dropdown-divider {
    border-color: var(--lavender-light);
    margin: 0.5rem 0;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #8fb6bf 0%, #796fa0 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 143, 191, 0.3);
    min-height: 48px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(155, 143, 191, 0.4);
    color: var(--white);
}

/* Bouton outline lavande */
.btn-outline-custom {
    background: transparent;
    color: var(--lavender-dark);
    border: 2px solid var(--lavender);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--lavender-dark) 100%);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(155, 143, 191, 0.4);
}

/* Variante outline light pour fonds sombres */
.btn-outline-light-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
    background: var(--white);
    color: var(--lavender-dark);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Bouton blanc sur fond foncé */
.btn-white-custom {
    background: var(--white);
    color: var(--lavender-dark);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    min-height: 48px;
}

.btn-white-custom:hover {
    background: var(--white);
    color: var(--lavender-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--lavender-dark) 0%, var(--lavender) 100%);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

footer h5 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--white);
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--lavender);
    transform: translateY(-5px);
}

/* ===== HERO TITLE ===== */
.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--lavender-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    filter: drop-shadow(0 4px 15px rgba(155, 143, 191, 0.25));
}

.hero-subtitle {
    font-family: 'Abril Fatface', cursive;
    font-weight: 400 !important;
}

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

/* Responsive hero title */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.9rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 1px;
    }
}

/* ===== BOUTONS HERO PAGE ACCUEIL ===== */
.btn-reservation-hero {
    min-width: 280px;
    padding: 0.75rem 2rem;
}

.btn-service {
    padding: 0.6rem 0.5rem;
    font-size: 0.95rem;
    white-space: normal;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
}

/* ===== BUTTONS MOBILE CENTER ===== */
@media (max-width: 575px) {
    .btn-reservation-hero {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }
    
    .btn-service {
        font-size: 0.85rem;
        padding: 0.5rem 0.5rem;
    }
}

/* Tablette (576px - 991px) */
@media (min-width: 576px) and (max-width: 991px) {
    .btn-reservation-hero {
        min-width: 320px;
    }
    
    .btn-service {
        font-size: 0.9rem;
    }
}

/* Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .btn-reservation-hero {
        min-width: 360px;
    }
    
    .btn-service {
        font-size: 0.85rem;
        padding: 0.6rem 0.4rem;
    }
}

/* Large Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .btn-reservation-hero {
        min-width: 360px;
    }
    
    .btn-service {
        font-size: 0.9rem;
        padding: 0.6rem 0.75rem;
    }
}

/* Extra Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .btn-reservation-hero {
        min-width: 360px;
    }
    
    .btn-service {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
        min-height: 60px;
    }
}

/* Legacy buttons hero */
@media (max-width: 767px) {
    .buttons-hero {
        justify-content: center !important;
    }
    
    .buttons-hero .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ===== FLAGS ===== */
.flag-inline {
    display: inline-flex;
    gap: 4px;
    vertical-align: middle;
    margin-left: 8px;
}

.flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* ===== HERO IMAGE ===== */
.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(155, 143, 191, 0.3);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(155, 143, 191, 0.1) 0%, rgba(123, 111, 160, 0.15) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        margin-top: 2rem;
    }
}

/* ===== SECTIONS ===== */
.section-padding {
    padding: var(--section-padding);
}

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

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--lavender-dark);
    margin-bottom: 1rem;
}

.section-title .subtitle {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--lavender);
    margin-bottom: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}

