/* ===== Loader de transition entre pages ===== */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 248, 240, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    opacity: 1;
}
#page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}
.loader-content {
    font-size: 1.5rem;
    color: var(--color-brown-dark);
    background: var(--color-rose-powder);
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    font-family: inherit;
}
/* ===== Chatterie Of CoonVersity*BE - Stylesheet ===== */
/* Design inspiré du logo - Douceur & Passion */

/* CSS Variables - Palette de couleurs du logo */
:root {
    /* Couleurs principales du logo */
    --color-rose-powder: #F5D3D1;
    --color-rose-medium: #E8B4B8;
    --color-rose-coral: #E88B8F;
    --color-brown-warm: #8B6F47;
    --color-brown-light: #C4A57B;
    --color-brown-dark: #3D2817;
    --color-cream: #FFF8F0;
    --color-cream-light: #FAF3E9;
    /* Couleurs utilitaires */
    --color-text: #3D2817;
    --color-text-light: #5A4530;
    --color-white: #FFFFFF;
    
    /* Espacements et transitions */
    --spacing-unit: 16px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(61, 40, 23, 0.08);
    --shadow-md: 0 4px 16px rgba(61, 40, 23, 0.12);
    --shadow-lg: 0 8px 24px rgba(61, 40, 23, 0.15);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    line-height: 1.7;
    color: var(--color-text);
    background: linear-gradient(to bottom, var(--color-cream) 0%, var(--color-cream-light) 100%);
    background-attachment: fixed;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-brown-dark);
    margin-bottom: calc(var(--spacing-unit) * 0.75);
    font-weight: 600;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 400;
}

h2 {
    font-size: 2.2rem;
    border-bottom: 3px solid var(--color-rose-coral);
    padding-bottom: 12px;
    display: inline-block;
    position: relative;
}

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

h3 {
    font-size: 1.6rem;
    color: var(--color-brown-warm);
}

p {
    margin-bottom: calc(var(--spacing-unit) * 0.75);
    font-size: 1.05rem;
}

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

a:hover {
    color: var(--color-brown-warm);
    text-decoration: underline;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* ===== Header & Navigation ===== */
header {
    background: linear-gradient(135deg, var(--color-rose-powder) 0%, var(--color-rose-medium) 100%);
    color: var(--color-brown-dark);
    padding: calc(var(--spacing-unit) * 1) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 2px solid var(--color-rose-coral);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-brown-dark);
    font-family: 'Georgia', 'Garamond', serif;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

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

.logo-text .main {
    font-size: 1.3rem;
    font-weight: 600;
}

.logo-text .tagline {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--color-brown-warm);
}

nav ul {
    list-style: none;
    display: flex;
    gap: calc(var(--spacing-unit) * 1.25);
    flex-wrap: wrap;
}

nav a {
    color: var(--color-brown-dark);
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav a:hover,
nav a.active {
    background-color: var(--color-white);
    color: var(--color-rose-coral);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 8px;
}

.language-selector button {
    background: var(--color-white);
    border: 2px solid var(--color-rose-coral);
    color: var(--color-brown-dark);
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 600;
}

.language-selector button.active,
.language-selector button:hover {
    background: linear-gradient(135deg, var(--color-rose-coral), var(--color-rose-medium));
    color: var(--color-white);
    border-color: var(--color-rose-coral);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: var(--color-white);
    border: 2px solid var(--color-rose-coral);
    color: var(--color-brown-dark);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--color-rose-coral);
    color: var(--color-white);
}

/* ===== Main Content ===== */
main {
    min-height: calc(100vh - 200px);
}

section {
    padding: calc(var(--spacing-unit) * 4) 0;
    background-color: transparent;
}

section:nth-child(even) {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

section.hero {
    background: linear-gradient(135deg, var(--color-rose-powder) 0%, var(--color-rose-medium) 50%, var(--color-rose-coral) 100%);
    color: var(--color-brown-dark);
    padding: calc(var(--spacing-unit) * 6) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

section.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

section.hero .container {
    position: relative;
    z-index: 1;
}

section.hero h1 {
    color: var(--color-white);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    text-shadow: 2px 2px 4px rgba(61, 40, 23, 0.2);
}

section.hero p {
    font-size: 1.3rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(61, 40, 23, 0.2);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 2);
    background: linear-gradient(135deg, var(--color-rose-coral), var(--color-rose-medium));
    color: var(--color-white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn:hover {
    background: linear-gradient(135deg, var(--color-brown-warm), var(--color-brown-light));
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-brown-light), var(--color-brown-warm));
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--color-brown-dark), var(--color-brown-warm));
}

/* ===== Cards ===== */
.card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 5px solid var(--color-rose-coral);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-rose-coral), var(--color-rose-powder), var(--color-brown-warm));
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 320px;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, var(--color-rose-powder), var(--color-cream));
}

.card-content {
    padding: calc(var(--spacing-unit) * 1.5);
}

.card-title {
    margin-bottom: 12px;
    color: var(--color-brown-dark);
    font-family: 'Georgia', 'Garamond', serif;
}

.card-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===== Grid System ===== */
.grid {
    display: grid;
    gap: var(--spacing-unit);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===== Gallery ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 1.5);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    height: 300px;
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

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

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(61, 40, 23, 0.9), transparent);
    color: white;
    padding: calc(var(--spacing-unit) * 1.5);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

/* ===== Forms ===== */
form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-white);
    padding: calc(var(--spacing-unit) * 2.5);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--color-rose-coral);
}

.form-group {
    margin-bottom: calc(var(--spacing-unit) * 1.25);
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-brown-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-rose-powder);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--color-cream);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-rose-coral);
    box-shadow: 0 0 0 4px rgba(232, 139, 143, 0.1);
    background-color: var(--color-white);
}

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

/* ===== Footer ===== */
footer {
    background: linear-gradient(135deg, var(--color-brown-dark) 0%, var(--color-brown-warm) 100%);
    color: var(--color-cream);
    padding: calc(var(--spacing-unit) * 3) 0;
    margin-top: calc(var(--spacing-unit) * 4);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-rose-coral), var(--color-rose-powder), var(--color-rose-coral));
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
}

footer h3 {
    color: var(--color-rose-powder);
    margin-bottom: calc(var(--spacing-unit) * 1.25);
    font-size: 1.3rem;
}

footer a {
    color: var(--color-cream-light);
    transition: var(--transition);
}

footer a:hover {
    color: var(--color-rose-powder);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: calc(var(--spacing-unit) * 2);
    padding-top: calc(var(--spacing-unit) * 1.5);
    text-align: center;
    color: var(--color-cream-light);
    opacity: 0.8;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .logo img {
        height: 50px;
    }

    .logo-text .main {
        font-size: 1.1rem;
    }

    .logo-text .tagline {
        font-size: 0.75rem;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: var(--spacing-unit);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--color-rose-powder) 0%, var(--color-rose-medium) 100%);
        padding: calc(var(--spacing-unit) * 1.5);
        width: 100%;
        box-shadow: var(--shadow-md);
        border-radius: 0 0 20px 20px;
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    section {
        padding: calc(var(--spacing-unit) * 2.5) 0;
    }

    section.hero {
        padding: calc(var(--spacing-unit) * 4) 0;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    form {
        padding: calc(var(--spacing-unit) * 1.5);
    }

    footer .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .logo img {
        height: 45px;
    }

    .logo-text .main {
        font-size: 1rem;
    }

    .logo-text .tagline {
        display: none;
    }

    nav ul {
        gap: 12px;
        padding: calc(var(--spacing-unit) * 1.25);
    }

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

    .language-selector {
        flex-direction: column;
        gap: 6px;
    }

    .language-selector button {
        width: 100%;
    }

    .btn {
        padding: calc(var(--spacing-unit) * 0.65) calc(var(--spacing-unit) * 1.5);
        font-size: 0.95rem;
    }
}

/* ===== Utilities ===== */
.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.mt-1 { margin-top: var(--spacing-unit); }
.mt-2 { margin-top: calc(var(--spacing-unit) * 2); }
.mt-3 { margin-top: calc(var(--spacing-unit) * 3); }

.mb-1 { margin-bottom: var(--spacing-unit); }
.mb-2 { margin-bottom: calc(var(--spacing-unit) * 2); }
.mb-3 { margin-bottom: calc(var(--spacing-unit) * 3); }

.hidden {
    display: none;
}

/* ===== Scroll to Top Button ===== */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--color-rose-coral), var(--color-rose-medium));
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

#scroll-to-top.active {
    display: block;
    opacity: 1;
}

#scroll-to-top:hover {
    background: linear-gradient(135deg, var(--color-brown-warm), var(--color-brown-light));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}


/* ===== Page: Contact ===== */
.form-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}
.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.contact-info h3 {
    color: var(--color-brown-dark);
    margin-bottom: 10px;
}
.contact-info p {
    margin-bottom: 5px;
}
.contact-info-item {
    margin-bottom: 20px;
}
.response-time {
    background-color: #ffeaa7;
    border-left: 4px solid var(--color-rose-coral);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* ===== Page: FAQ ===== */
.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.faq-question {
    padding: 20px;
    background-color: var(--color-rose-coral);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-weight: 500;
}
.faq-question:hover {
    background-color: var(--color-brown-dark);
}
.faq-toggle {
    font-size: 1.5rem;
    transition: var(--transition);
}
.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 20px;
    display: none;
    color: #666;
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-category {
    margin-bottom: 40px;
}
.faq-category h2 {
    margin-bottom: 20px;
    color: var(--color-brown-dark);
}

/* ===== Page: Gallery – Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.lightbox.active {
    display: flex;
}
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}
.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}
.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* ===== Page: Gallery – Filtres catégorie ===== */
.category-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.category-filter button {
    padding: 10px 20px;
    border: 2px solid var(--color-rose-coral);
    background: white;
    color: var(--color-rose-coral);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}
.category-filter button.active,
.category-filter button:hover {
    background-color: var(--color-rose-coral);
    color: white;
}

/* ===== Pricing box (kittens.html) ===== */
.pricing-box {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}
.pricing-box hr {
    margin: 10px 0;
}
.pricing-note {
    font-size: 0.9rem;
    color: #666;
}

/* ===== Utilitaires communs ===== */
.text-center { text-align: center; }
.mb-2  { margin-bottom: 2rem; }
.mt-2  { margin-top: 2rem; }
.mt-3  { margin-top: 3rem; }

/* ===== Carte icône emoji (about, kittens, contact) ===== */
.card-icon {
    padding: 30px;
    text-align: center;
    font-size: 3rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon--rose   { background-color: var(--color-rose-coral); color: white; }
.card-icon--brown  { background-color: var(--color-brown-warm); color: white; }
.card-icon--accent { background-color: var(--color-rose-powder); color: var(--color-brown-dark); }
.card-icon--step1  { background-color: var(--color-rose-coral);  color: var(--color-brown-dark); font-size: 2.5rem; height: 120px; }
.card-icon--step2  { background-color: var(--color-brown-warm);  color: var(--color-brown-dark); font-size: 2.5rem; height: 120px; }
.card-icon--step3  { background-color: var(--color-rose-powder); color: var(--color-brown-dark); font-size: 2.5rem; height: 120px; }
.card-icon--faq    { background-color: var(--color-rose-coral);  color: white; font-size: 2rem; height: 120px; }
.card-icon--cat    { background-color: var(--color-brown-warm);  color: white; font-size: 2rem; height: 120px; }

/* ===== Section CTA accueil ===== */
.cta-section {
    background: linear-gradient(135deg, var(--color-rose-powder), var(--color-rose-medium), var(--color-rose-coral));
    color: var(--color-brown-dark);
    text-align: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}
.cta-section .container {
    position: relative;
    z-index: 1;
}
.cta-section h2 {
    color: white;
    border: none;
    text-shadow: 2px 2px 4px rgba(61, 40, 23, 0.3);
}
.cta-section p {
    font-size: 1.2rem;
    margin: 25px 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(61, 40, 23, 0.2);
}
.cta-section .btn {
    background: linear-gradient(135deg, var(--color-brown-warm), var(--color-brown-light));
    color: white;
    font-weight: 600;
    padding: 14px 32px;
}

/* ===== Actualités (news cards, index.html) ===== */
.news-card-rose {
    background: linear-gradient(135deg, var(--color-rose-powder), var(--color-rose-medium));
    color: var(--color-brown-dark);
    padding: 25px;
    text-align: center;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-card-rose h3 { color: var(--color-brown-dark); }
.news-card-rose p  { color: var(--color-brown-warm); font-weight: 600; }
.news-card-brown {
    background: linear-gradient(135deg, var(--color-brown-light), var(--color-brown-warm));
    color: white;
    padding: 25px;
    text-align: center;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-card-brown h3 { color: white; }
.news-card-brown p  { color: var(--color-cream); font-weight: 600; }

/* ===== Image présentée en section (index.html) ===== */
.section-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ===== Bouton card avec marge ===== */
.card .btn--mt { margin-top: 10px; }

/* ===== Footer ===== */
footer ul { list-style: none; }
footer .tagline-footer { font-style: italic; color: #F5D3D1; }
