﻿/* =================================== */
/*       Feuille de style globale      */
/* =================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    /* --- Palette de Couleurs --- */
    --primary-color: #c8b39a;
    --primary-color-darker: #b79f84;
    --primary-color-lightest: #fbf3e8;

    --color-white: #fff;
    --text-dark: #3a3028;
    --text-body: #5f5348;
    --text-muted: #948679;

    --background-body: #fdf9f2;
    --background-card: #fffdf9;
    --background-input: #f7efe4;

    --border-color: #eadfce;
    --overlay-color: rgba(66, 56, 46, 0.3);

    /* Aliases utilises dans certains CSS de page */
    --light-color: var(--background-body);
    --dark-color: #6d5641;
    --text-color: var(--text-body);

    /* --- Typographie --- */
    --font-family-base: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-family-heading: 'Cormorant Garamond', Georgia, serif;
    --font-family: var(--font-family-base);
    --font-h1: 3rem;
    --font-h2: 2rem;
    --font-h3: 1.8rem;
    --font-body: 1rem;

    /* --- Ombres --- */
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.15);

    /* --- Autres --- */
    --border-radius-small: 12px;
    --border-radius-large: 20px;
    --transition-base: all 0.3s ease-in-out;
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-family-base);
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--background-body);
}

h1, h2, h3 { color: var(--text-dark); margin-bottom: 20px; }
h1 { font-size: var(--font-h1); font-family: var(--font-family-heading); letter-spacing: 0.6px; }
h2 {
    text-align: center;
    font-size: var(--font-h2);
    font-family: var(--font-family-heading);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 10px 20px;
    display: inline-block;
}
h2::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color-lightest);
    border-radius: 50%;
    z-index: -1;
}
h3 { font-size: var(--font-h3); font-family: var(--font-family-heading); }
p { margin-bottom: 1rem; }
strong { color: var(--primary-color); }
section { padding: 88px 24px; }
.light-bg { background-color: var(--primary-color-lightest); }

/* --- Header (Global) --- */
.header {
    background-color: var(--primary-color-lightest);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-top {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 10px 28px;
    min-height: 84px;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
}
.logo { height: 72px; width: auto; }
.header-top .contact-info { color: var(--text-body); text-decoration: none; font-weight: 700; white-space: nowrap; }
.social-links,
.social-links-footer,
.contact-details-socials,
.social-links-founder {
    display: flex;
    align-items: center;
    gap: 12px;
}
.social-links a,
.social-links-footer a,
.contact-details-socials a,
.social-links-founder a {
    border: 1px solid rgba(200, 179, 154, 0.58);
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(251,243,232,0.86));
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 8px 18px rgba(58, 48, 40, 0.08), inset 0 1px 0 rgba(255,255,255,0.75);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.social-links a:hover,
.social-links-footer a:hover,
.contact-details-socials a:hover,
.social-links-founder a:hover {
    background: var(--text-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(58, 48, 40, 0.18);
}
.social-links a svg,
.social-links-footer a svg,
.contact-details-socials a svg,
.social-links-founder a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.main-nav { display: flex; justify-content: center; align-items: center; gap: 8px; }
.main-nav a { color: var(--text-dark); opacity: 0.95; text-decoration: none; padding: 8px 12px; border-radius: 999px; background-color: rgba(200, 179, 154, 0.26); border: 1px solid rgba(200, 179, 154, 0.38); font-weight: 700; text-transform: uppercase; font-size: 0.82em; position: relative; }
.main-nav a.active { opacity: 1; }
.main-nav a::after { content: ''; position: absolute; bottom: -4px; left: 12px; right: 12px; height: 2px; background-color: var(--primary-color); transform: scaleX(0); transition: transform 0.3s ease; }
.main-nav a:hover { opacity: 1; }
.main-nav a.active::after, .main-nav a:hover::after { transform: scaleX(1); }
.main-nav a:hover { background-color: rgba(200, 179, 154, 0.42); }

/* --- Hero Section (Global Base) --- */
.hero {
    height: 58vh;
    min-height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
    padding: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--overlay-color); }
.hero-content {
    z-index: 10;
    max-width: 900px;
    padding: 20px 24px;
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(2px);
}
.hero h1 { color: var(--color-white); text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }
.cta-button { background-color: var(--primary-color); color: var(--color-white); padding: 13px 32px; border-radius: 999px; text-decoration: none; font-weight: 700; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition-base); }
.cta-button:hover { background-color: var(--primary-color-darker); transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

/* --- Footer (Global) --- */
.footer {
    background-color: var(--primary-color);
    color: var(--color-white);
    text-align: center;
    padding: 64px 20px;
}
.footer h2 {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}
.footer h2::before {
    display: none;
}
.footer-contact-info, .footer-nav, .footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 25px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.footer a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.footer a:hover {
    opacity: 1;
    text-decoration: underline;
}
.footer-bottom {
    font-size: 0.9em;
    opacity: 0.7;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    margin-top: 25px;
}
.footer p {
    margin-top: 25px;
    opacity: 0.7;
    font-size: 0.9em;
}
.social-links-footer { justify-content: center; margin-top: 20px; }
.social-links-footer a {
    background: var(--color-white);
    color: var(--primary-color);
    border-color: rgba(255,255,255,0.82);
    opacity: 1;
}
.social-links-footer a:hover {
    background: transparent;
    color: var(--color-white);
}

/* --- Bandeau de Consentement aux Cookies --- */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-dark);
    color: var(--color-white);
    padding: 20px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}
#cookie-consent-banner.visible {
    transform: translateY(0);
}
.cookie-consent-content {
    max-width: 980px;
    width: 100%;
}
.cookie-consent-content p {
    margin: 0 0 12px 0;
}
.cookie-services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 12px;
}
.cookie-service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}
.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.cookie-buttons button,
.cookie-settings-link {
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: var(--color-white);
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
}
#cookie-accept-all {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.cookie-settings-link {
    font-size: 0.9em;
}
.calendly-consent-placeholder {
    text-align: center;
    padding: 24px;
    border: 1px dashed var(--border-color);
    border-radius: var(--border-radius-large);
    background-color: var(--background-card);
    margin: 10px 0;
}
.calendly-consent-placeholder p {
    margin-bottom: 12px;
}
.calendly-consent-placeholder button {
    background-color: var(--primary-color);
    color: var(--color-white);
    border: none;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
}

/* --- Responsive & Hamburger (Global) --- */
.hamburger { display: none; position: absolute; top: 24px; right: 16px; background: none; border: none; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 25px; height: 3px; background-color: var(--text-dark); margin: 5px 0; }
@media (max-width: 992px) {
    .header-top {
        grid-template-columns: 1fr auto;
        padding: 10px 16px;
        min-height: 78px;
    }
    .header-top .contact-info, .header-top .social-links { display: none; }
    .hero { height: 50vh; min-height: 320px; }
}
@media (max-width: 768px) {
    .logo { height: 64px; }
    .main-nav { display: none; flex-direction: column; width: calc(100% - 20px); position: absolute; top: 76px; left: 10px; background-color: var(--background-card); border: 1px solid var(--border-color); border-radius: var(--border-radius-large); box-shadow: var(--shadow-medium); padding: 8px; z-index: 1002; }
    .main-nav.active { display: flex; }
    .main-nav a { padding: 12px; text-align: center; width: 100%; border-top: 1px solid var(--border-color); border-radius: 10px; }
    .main-nav a:first-child { border-top: none; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.2rem; }
    .cookie-buttons button { width: 100%; }
}



