/* -------------------------------------------------------------------------- */
/*                                  STYLES.CSS                                */
/*            PERLE DE BEAUTE - MAGAZINE BIEN-ETRE ET ART DE VIVRE             */
/* -------------------------------------------------------------------------- */

/* 1. VARIABLES & RESET */
:root {
    --primary: #3E5C55;
    --primary-light: #4A6E66;
    --primary-dark: #1E2B28;
    --secondary: #C9A88C;
    --secondary-light: #EDE4D8;
    --accent-gold: #C9A88C;
    --accent-gold-light: #E4D3C0;
    --text-dark: #2A3B37;
    --text-muted: #7A8A85;
    --bg-light: #F5EFE7;
    --bg-white: #FFFFFF;
    --bg-gradient: linear-gradient(135deg, #EDE4D8 0%, #F5EFE7 100%);
    --font-heading: 'Fraunces', serif;
    --font-body: 'Jost', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(30, 43, 40, 0.08);
    --shadow-lg: 0 16px 40px rgba(30, 43, 40, 0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}

/* TYPOGRAPHIE */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* REVEAL ON SCROLL */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* BOUTONS COMPOSANTS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(62, 92, 85, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 43, 40, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-light);
    color: var(--primary-dark);
}

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

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(201, 168, 140, 0.25);
}

.btn-gold:hover {
    background-color: #BC9877;
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* 2. HEADER & NAVIGATION */
.main-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(201, 168, 140, 0.3);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(62, 92, 85, 0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 3px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    position: relative;
}

.main-nav a i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--primary);
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-dark);
    cursor: pointer;
}

/* 3. MAIN SECTION CONTAINER */
.site-main {
    min-height: calc(100vh - 350px);
    padding-bottom: 60px;
}

/* 4. HERO SECTION HOME */
.hero {
    background: linear-gradient(rgba(62, 92, 85, 0.05), rgba(201, 168, 140, 0.15)), url('/assets/img/20-hero-home.webp') no-repeat center center/cover;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.82);
    z-index: 1;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    background-color: var(--secondary-light);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: var(--radius-lg);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid var(--secondary);
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--primary-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(201, 168, 140, 0.5);
    z-index: -1;
}

.hero .lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* 5. SECTIONS COMMUNES */
.section-padding {
    padding: 80px 20px;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* GRILLE EDITORIALE / CARTES */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(201, 168, 140, 0.15);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(30, 43, 40, 0.85);
    color: var(--bg-white);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-meta i {
    width: 14px;
    height: 14px;
}

.card-title {
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.card-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(201, 168, 140, 0.15);
}

.card-link {
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-link i {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.card-link:hover i {
    transform: translateX(3px);
}

/* SECTION ANCRAGE HISTORIQUE TOULOUSE (PAGE HISTOIRE ET HOME) */
.toulouse-heritage {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 50px;
}

.heritage-img {
    height: 100%;
    min-height: 400px;
    background: url('/assets/img/21-heritage-institut.webp') no-repeat center center/cover;
}

.heritage-content {
    padding: 60px;
}

.heritage-content h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.heritage-content p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* 6. PAGE DETAIL DES GUIDES */
.guide-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.guide-hero {
    text-align: center;
    margin-bottom: 40px;
}

.guide-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.guide-large-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.guide-grid-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.guide-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.toc-card {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 168, 140, 0.2);
    box-shadow: var(--shadow-sm);
}

.toc-card h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    border-bottom: 1px solid var(--secondary-light);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.toc-links li {
    margin-bottom: 10px;
}

.toc-links a {
    color: var(--text-dark);
    font-size: 0.9rem;
    display: block;
}

.toc-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.guide-content-body {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
    line-height: 1.8;
}

.guide-section {
    margin-bottom: 40px;
}

.guide-section h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 30px 0 15px 0;
}

.expert-tips-box {
    background-color: #FCF8F2;
    border-left: 4px solid var(--accent-gold);
    padding: 25px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 30px 0;
}

.expert-tips-box h3 {
    color: #A6845F;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.expert-tips-box ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.expert-tips-box ul li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.guide-faq {
    margin-top: 50px;
    border-top: 2px dashed var(--secondary-light);
    padding-top: 40px;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

.faq-question {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.faq-answer {
    font-size: 1rem;
    color: var(--text-dark);
}

/* 7. PAGE COMPARATIFS & SIMULATEUR */
.simulator-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

.simulator-section h2, .simulator-section h3 {
    color: var(--bg-white);
}

.simulator-section h2::after {
    background-color: var(--secondary);
}

.simulator-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 30px;
}

.sim-form {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sim-group {
    margin-bottom: 20px;
}

.sim-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.sim-select {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--secondary);
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.sim-results {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sim-empty-state {
    text-align: center;
    color: var(--text-muted);
}

.sim-empty-state i {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    color: var(--primary);
}

.sim-match-title {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.sim-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 15px;
}

.product-compare-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.compare-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 140, 0.2);
    display: grid;
    grid-template-columns: 300px 1fr;
}

.compare-img {
    height: 100%;
    min-height: 250px;
    object-fit: cover;
}

.compare-content {
    padding: 35px;
}

.compare-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0;
}

.compare-pro-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.pro-box {
    background-color: rgba(46, 204, 113, 0.08);
    border-left: 3px solid #2ecc71;
    padding: 15px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.pro-box h4 {
    color: #27ae60;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.cons-box {
    background-color: rgba(231, 76, 60, 0.08);
    border-left: 3px solid #e74c3c;
    padding: 15px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.cons-box h4 {
    color: #c0392b;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.compare-pro-cons ul li {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

/* 8. ANNUAIRE & SPAS DETAIL */
.annuaire-search-bar {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    border: 1px solid rgba(201, 168, 140, 0.2);
}

.search-form-row {
    display: flex;
    gap: 15px;
}

.search-input-wrapper {
    flex-grow: 1;
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(62, 92, 85, 0.2);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.spa-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.spa-gallery {
    margin-bottom: 30px;
}

.spa-main-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.spa-info-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.spa-tagline {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 20px;
}

.spa-grid-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    background-color: var(--bg-light);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
}

.feature-item i {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

.sidebar-booking-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(201, 168, 140, 0.3);
}

.booking-price {
    text-align: center;
    border-bottom: 1px solid var(--secondary-light);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.booking-price span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.booking-price h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.booking-form .sim-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(62, 92, 85, 0.2);
    border-radius: var(--radius-sm);
}

/* 9. PAGE NOTRE HISTOIRE */
.history-hero {
    background: linear-gradient(rgba(30, 43, 40, 0.85), rgba(62, 92, 85, 0.95)), url('/assets/img/22-history-hero.webp') no-repeat center center/cover;
    color: var(--bg-white);
    text-align: center;
    padding: 80px 20px;
}

.history-hero h1, .history-hero p {
    color: var(--bg-white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-white);
    border: 4px solid var(--primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--bg-white);
    position: relative;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* 10. MAIN FOOTER */
.main-footer {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 80px 0 20px 0;
}

.footer-top {
    margin-bottom: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h3 {
    color: var(--secondary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.gold-icon {
    color: var(--accent-gold);
}

.brand-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

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

.social-links a {
    color: var(--bg-white);
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.newsletter-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 20px;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.newsletter-form button {
    border-radius: 0;
    padding: 12px 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
}

/* RESPONSIVE TABLETTE ET MOBILE */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .toulouse-heritage {
        grid-template-columns: 1fr;
    }
    
    .heritage-img {
        height: 300px;
    }
    
    .guide-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .guide-sidebar {
        position: static;
    }
    
    .spa-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-booking-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-md);
        border-bottom: 2px solid var(--secondary-light);
    }
    
    .main-nav.open {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .section-padding {
        padding: 50px 15px;
    }
    
    .simulator-container {
        grid-template-columns: 1fr;
    }
    
    .compare-card {
        grid-template-columns: 1fr;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .right {
        left: 0%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .search-form-row {
        flex-direction: column;
    }
    
    .compare-pro-cons {
        grid-template-columns: 1fr;
    }
}
/* ============================================================== */
/* Sous-menu Outils [dropdown] — desktop hover + mobile sous-liste */
/* ============================================================== */
.nav-dropdown { position: relative; }
.nav-dropdown > .dropdown-toggle {
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
    position: relative;
}
.nav-dropdown > .dropdown-toggle i { width: 16px; height: 16px; color: var(--primary); }
.nav-dropdown > .dropdown-toggle .caret { transition: transform 0.25s ease; }
.nav-dropdown:hover > .dropdown-toggle .caret { transform: rotate(180deg); }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 300px;
    background: var(--bg-white);
    border: 1px solid var(--secondary-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 200;
}
/* pont invisible pour ne pas fermer en traversant l'espace toggle->menu */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px; left: 0; right: 0; height: 14px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 12px;
    border-radius: var(--radius-sm);
    white-space: normal;
    transition: background 0.18s ease;
}
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a:hover { background: var(--secondary-light); }
.dropdown-menu a i { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.dropdown-menu .dd-label { font-weight: 600; color: var(--primary-dark); font-size: 0.92rem; line-height: 1.25; }
.dropdown-menu .dd-desc { display: block; font-weight: 400; color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; line-height: 1.3; }

@media (max-width: 768px) {
    .nav-dropdown > .dropdown-toggle { width: 100%; padding: 8px 0; }
    .nav-dropdown:hover > .dropdown-toggle .caret,
    .nav-dropdown .dropdown-toggle .caret { transform: none; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 0;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 6px 0 0 26px;
        gap: 4px;
    }
    .dropdown-menu::before { display: none; }
    .dropdown-menu a { padding: 8px 0; }
    .dropdown-menu .dd-desc { display: none; }
}

/* ============================================================== */
/* Header sur une seule ligne [single-line-nav]                   */
/* ============================================================== */
/* Desktop (>1100px) : nav inline compacte, tient sur une ligne */
.header-container{max-width:1280px;flex-wrap:nowrap;gap:20px}
.logo-wrapper{flex-shrink:0}
.logo-icon{width:38px;height:38px}
.logo-brand{font-size:1.2rem}
.logo-subtitle{font-size:.68rem;letter-spacing:1.5px}
.main-nav ul{gap:16px;flex-wrap:nowrap}
.main-nav > ul > li > a,
.nav-dropdown > .dropdown-toggle{font-size:.9rem;white-space:nowrap}
/* icônes des liens de 1er niveau masquées sur desktop (gain de largeur) ; dropdowns intacts */
.main-nav > ul > li > a > i[data-lucide]{display:none}
.nav-dropdown > .dropdown-toggle > i:not(.caret){display:none}

/* Sous 1100px : bascule en menu déroulant (hamburger) plutôt que de tasser la nav */
@media (max-width:1100px){
  .mobile-menu-btn{display:block}
  .main-nav{display:none;position:absolute;top:100%;left:0;width:100%;background-color:var(--bg-white);box-shadow:var(--shadow-md);border-bottom:2px solid var(--secondary-light)}
  .main-nav.open{display:block}
  .main-nav ul{flex-direction:column;padding:20px;gap:15px}
  /* dans le drawer : on réaffiche les icônes des liens */
  .main-nav > ul > li > a > i[data-lucide]{display:inline-block}
  .nav-dropdown > .dropdown-toggle > i:not(.caret){display:inline-block}
  .nav-dropdown > .dropdown-toggle{width:100%}
  /* dropdowns en sous-liste statique indentée dans le drawer */
  .dropdown-menu{position:static;opacity:1;visibility:visible;transform:none;min-width:0;box-shadow:none;border:none;background:transparent;padding:6px 0 0 26px;gap:4px}
  .dropdown-menu::before{display:none}
  .dropdown-menu a{padding:8px 0}
  .dropdown-menu .dd-desc{display:none}
}

/* Logo image (wordmark) header [logo-img] */
.logo-img{height:38px;width:auto;display:block;flex-shrink:0}
@media(max-width:768px){.logo-img{height:34px}}
