
:root {
    --peach:    #FFCEB6;
    /* --blue:     #85B8C8;-*/
    --green:     #58747D;
    --rose:     #A87272;
    --terGlacialIndifferenceracotta: #CC8F75;
    --amber:    #DCA551;
    --coral:    #E28760;
    --cream:    #FFF8F4;
    --text-dark: #3a2a25;
    --text-mid:  #7a5a50;

    /* Aliases utilisés dans le CSS */
    --sage:     var(--green);
    --pale:     var(--peach);
    --blush:    #FFF0E8;
    --sand:     var(--coral);
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url("../fonts/GlacialIndifference-Regular.otf") format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url("../fonts/GlacialIndifference-Bold.otf") format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Nickainley';
    src: url("../fonts/Nickainley-Normal.otf") format('opentype');
    font-weight: 400;
    font-style: normal;
}


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

html { scroll-behavior: smooth; }

body {
    font-family: 'Glacial Indifference', 'Nunito', sans-serif;
    font-weight: 300;
    background-color: var(--cream);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4 {
    font-family: 'Nickainley',  'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ——— NAVBAR ——— */
.navbar {
    background-color: var(--cream);
    border-bottom: 1px solid var(--peach);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.navbar-brand {
    font-family: 'Nickainley', 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--text-dark) !important;
    letter-spacing: 0.05em;
}

.navbar-brand img {
    height: 60px; /* Taille logo sur PC */
    transition: height 0.3s ease;
}

/* Style pour Mobile / Tablette */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.3rem; /* On réduit le texte */
    }
    
    .navbar-brand img {
        height: 45px; /* On réduit aussi un peu le logo pour garder l'équilibre */
    }
}

.navbar-brand .star-accent {
    color: var(--sand);
    font-size: 1.5rem;
    margin: 0 0.15rem;
}

.nav-link {
    color: var(--text-mid) !important;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem !important;
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 1rem; right: 1rem;
    height: 1px;
    background: var(--sand);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--sand) !important;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

/* ——— HERO ——— */
.hero {
    background: linear-gradient(135deg, var(--peach) 0%, #FFF0E8 50%, var(--green) 100%);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '✦';
    position: absolute;
    font-size: 20rem;
    color: rgba(212,163,115,0.08);
    top: -4rem;
    right: -4rem;
    line-height: 1;
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.15;
    font-weight: 300;
    color: var(--text-dark);
}

.hero-title em {
    font-style: italic;
    color: var(--sand);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.8;
}

.hero-logo img {
    height: 400px; /* Taille logo sur PC */
    transition: height 0.3s ease;
}

/* Style pour Mobile / Tablette */
@media (max-width: 991px) {
    
    .hero-logo img {
        height: 275px; /* On réduit aussi un peu le logo pour garder l'équilibre */
    }
}

/* ——— BUTTONS ——— */
.btn-primary-custom {
    background-color: var(--sand);
    border: none;
    color: #fff;
    padding: 0.75rem 2rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background-color 0.25s, transform 0.2s;
}

.btn-primary-custom:hover {
    background-color: var(--text-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-custom {
    background-color: transparent;
    border: 1px solid var(--sand);
    color: var(--sand);
    padding: 0.7rem 1.8rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.25s;
}

.btn-outline-custom:hover {
    background-color: var(--sand);
    color: #fff;
}

/* ——— CARDS ——— */
.card-custom {
    background: #fff;
    border: 1px solid var(--pale);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.card-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(226,135,96,0.18);
}

.card-custom .card-body { padding: 1.75rem; }

.card-custom .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.card-custom .card-text {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.7;
}

.card-label {
    display: inline-block;
    background: var(--peach);
    color: var(--text-dark);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    margin-bottom: 0.75rem;
}

/* ——— SECTIONS ——— */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: #FFF0E8;
}

.section-sage {
    background-color: #a7aeaf;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 0.5rem;
}

.section-divider {
    width: 3rem;
    height: 2px;
    background: var(--sand);
    margin: 1rem 0 2.5rem;
}

.section-divider.centered { margin-left: auto; margin-right: auto; }

/* ——— FORM ——— */
.form-control {
    border: 1px solid var(--peach);
    border-radius: 2px;
    background: #fff;
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    border-color: var(--sand);
    box-shadow: 0 0 0 3px rgba(226,135,96,0.18);
    background: var(--cream);
    outline: none;
}

label { color: var(--text-mid); font-size: 0.875rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* ——— FOOTER ——— */
footer {
    background-color: var(--text-dark);
    color: var(--pale);
    padding: 3rem 0 2rem;
    margin-top: auto;
}

footer h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--sand);
    margin-bottom: 1rem;
}

footer p, footer a {
    font-size: 0.9rem;
    color: rgba(233,237,201,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(204,213,174,0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(233,237,201,0.4);
}

/* ——— MESSAGES ——— */
.alert-success {
    background-color: var(--peach);
    border-color: var(--coral);
    color: var(--text-dark);
    border-radius: 2px;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease both;
}

.fade-in-up-delay-1 { animation-delay: 0.15s; }
.fade-in-up-delay-2 { animation-delay: 0.3s; }
.fade-in-up-delay-3 { animation-delay: 0.45s; }