/* ══════════════════════════════════════════════
   COACHING VOILE DE LA BAIE — style.css
   ══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
    --ocean-deep: #095782;
    --ocean-blue: #1B5583;
    --turquoise: #86c1e9;
    --white: #FFFFFF;
    --cream: #FEFBF6;
    --text-dark: #0F172A;
    --text-light: rgba(255,255,255,0.95);
    --font-display: 'Poppins', sans-serif;
    --tracking-display: -0.02em;
    --font-condensed: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--cream);
}

/* ══ NAV ══ */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 1.5rem 5%;
    background: transparent;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(10,37,64,0.98);
    backdrop-filter: blur(12px);
    padding: 1rem 5%;
}
.logo { text-decoration: none; display: flex; align-items: center; }
.logo-prop { height: 60px; transition: height 0.4s ease; }
.navbar.scrolled .logo-prop { height: 45px; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    color: var(--text-light); text-decoration: none;
    font-weight: 400; font-size: 0.95rem; letter-spacing: 0.05em;
    transition: color 0.3s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 2px; background: var(--turquoise); transition: width 0.3s;
}
.nav-links a:hover { color: var(--turquoise); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--turquoise) !important;
    color: var(--ocean-deep) !important;
    padding: 0.45rem 1.2rem;
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }

/* ══ HERO ══ */
.hero {
    width: 100vw; height: 100vh;
    position: relative; display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg-placeholder {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #040d1a 0%, #0A2540 40%, #1B5583 100%);
    animation: zoomIn 8s ease-out forwards;
}
.hero-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    animation: zoomIn 8s ease-out forwards;
}
@keyframes zoomIn {
    from { transform: scale(1.12); }
    to   { transform: scale(1); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        160deg,
        rgba(4,13,26,0.75) 0%,
        rgba(10,37,64,0.55) 50%,
        rgba(10,37,64,0.3) 100%
    );
}
.hero-overlay-bottom {
    position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
    background: linear-gradient(180deg, transparent 0%, rgba(4,13,26,0.7) 100%);
}
.hero-content {
    position: relative; z-index: 3;
    text-align: center; color: var(--white);
    padding: 0 5%; max-width: 950px;
}
.hero-tag {
    display: inline-block;
    font-family: var(--font-condensed);
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--turquoise);
    border: 1px solid rgba(45,212,191,0.4);
    padding: 0.4rem 1.2rem; margin-bottom: 2rem;
    animation: fadeSlideDown 1s ease-out 0.3s backwards;
}
.hero-title {
    font-family: var(--font-display);
    letter-spacing: var(--tracking-display);
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 1.1; margin-bottom: 1.5rem;
    animation: fadeSlideUp 1s ease-out 0.5s backwards;
}
.hero-title em { font-style: normal; color: var(--turquoise); }
.hero-desc {
    font-family: var(--font-condensed);
    font-size: 1.15rem; font-weight: 400;
    letter-spacing: 0.04em; color: rgba(255,255,255,0.72);
    max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.7;
    animation: fadeIn 1s ease-out 0.8s backwards;
}
.hero-cta {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    animation: fadeSlideUp 1s ease-out 1s backwards;
}
.hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}
.hero-scroll span {
    font-family: var(--font-condensed); font-size: 0.7rem;
    letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.hero-scroll::after {
    content: ''; display: block; width: 1px; height: 35px;
    background: linear-gradient(180deg, rgba(45,212,191,0.8) 0%, transparent 100%);
}

/* ══ BOUTONS ══ */
.btn-primary {
    background: var(--turquoise); color: var(--ocean-deep);
    padding: 1rem 2.5rem;
    font-family: var(--font-condensed); font-size: 0.95rem;
    font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; transition: all 0.3s; display: inline-block;
    box-shadow: 0 8px 25px rgba(45,212,191,0.35);
}
.btn-primary:hover {
    background: #48C9B0; transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(45,212,191,0.45);
}
.btn-outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.45);
    padding: 1rem 2.5rem;
    font-family: var(--font-condensed); font-size: 0.95rem;
    font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; transition: all 0.3s; display: inline-block;
}
.btn-outline:hover {
    border-color: var(--white); background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

/* ══ SECTION COMMONS ══ */
.section-label {
    font-family: var(--font-condensed); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--turquoise); margin-bottom: 0.6rem; display: block;
}
.section-title {
    font-family: var(--font-display); letter-spacing: var(--tracking-display);
    font-size: clamp(1.9rem, 3.2vw, 2.8rem); color: var(--ocean-deep);
    line-height: 1.2; margin-bottom: 1.2rem;
}
.section-title.light { color: var(--white); }
.section-desc { font-size: 1.05rem; line-height: 1.85; color: #4A6070; max-width: 600px; }
.section-desc.light { color: rgba(255,255,255,0.72); }

/* ══ STATS INTRO ══ */
.intro-stats { padding: 5rem 5%; background: var(--ocean-deep); }
.intro-stats-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: rgba(255,255,255,0.06);
}
.stat-item {
    background: var(--ocean-deep); padding: 2.5rem 2rem;
    text-align: center; transition: background 0.3s;
}
.stat-item:hover { background: rgba(45,212,191,0.05); }
.stat-val {
    font-family: var(--font-display); letter-spacing: var(--tracking-display);
    font-size: 2.8rem; color: var(--turquoise); line-height: 1;
}
.stat-label {
    font-family: var(--font-condensed); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); margin-top: 0.6rem;
}

/* ══ MONITEUR ══ */
.moniteur { padding: 7rem 5%; background: var(--cream); }
.moniteur-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center;
}
.moniteur-photo { position: relative; }
.moniteur-photo-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.moniteur-photo-placeholder {
    width: 100%; aspect-ratio: 3/4;
    background: linear-gradient(160deg, #0E3258 0%, #1B5583 60%, #0A2540 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 0.7rem;
    color: rgba(255,255,255,0.15);
    font-family: var(--font-condensed); font-size: 0.8rem;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.moniteur-photo-placeholder::before { content: '📸'; font-size: 3rem; opacity: 0.2; }
.moniteur-badge {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: var(--turquoise); color: var(--ocean-deep);
    padding: 1.5rem 2rem; text-align: center;
}
.moniteur-badge-val {
    font-family: var(--font-display); letter-spacing: var(--tracking-display);
    font-size: 2.2rem; line-height: 1;
}
.moniteur-badge-label {
    font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.3rem;
}
.diplomes-list { display: flex; flex-direction: column; gap: 0.8rem; margin: 2rem 0; }
.diplome-item {
    display: flex; align-items: flex-start; gap: 0.9rem;
    font-size: 0.95rem; line-height: 1.5; color: #4A6070;
}
.diplome-item::before { content: '✓'; color: var(--turquoise); font-weight: 700; flex-shrink: 0; }
.diplome-item strong { color: var(--ocean-deep); font-weight: 600; }

/* ══ SERVICES ══ */
.services { padding: 7rem 5%; background: var(--ocean-deep); }
.services-inner { max-width: 1300px; margin: 0 auto; }
.services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5px; background: rgba(255,255,255,0.05); margin-top: 4rem;
}
.service-card {
    background: var(--ocean-deep); padding: 3rem 2.5rem;
    text-decoration: none; display: block;
    transition: background 0.4s, transform 0.3s;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 4px; height: 0; background: var(--turquoise); transition: height 0.4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { background: rgba(45,212,191,0.04); transform: translateY(-4px); }
.service-num {
    font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--turquoise); margin-bottom: 1rem;
}
.service-icon { font-size: 2.5rem; margin-bottom: 1.2rem; display: block; }
.service-name {
    font-family: var(--font-display); letter-spacing: var(--tracking-display);
    font-size: 1.6rem; color: var(--white); line-height: 1.2; margin-bottom: 1rem;
}
.service-desc { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.service-link {
    font-family: var(--font-condensed); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--turquoise); display: flex; align-items: center; gap: 0.5rem;
}
.service-link::after { content: '→'; transition: transform 0.3s; }
.service-card:hover .service-link::after { transform: translateX(5px); }

/* ══ BAIE ══ */
.baie { padding: 7rem 5%; background: var(--cream); }
.baie-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center;
}
.baie-photo-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto; gap: 0.8rem;
}
.baie-photo {
    background: linear-gradient(135deg, #0E3258 0%, #1B5583 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 0.4rem;
    color: rgba(255,255,255,0.15);
    font-family: var(--font-condensed); font-size: 0.7rem;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.baie-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.baie-photo:nth-child(1) { grid-column: 1/-1; aspect-ratio: 16/7; }
.baie-photo:nth-child(1)::before { content: '🗺️'; font-size: 2rem; opacity: 0.2; }
.baie-photo:nth-child(2) { aspect-ratio: 1; }
.baie-photo:nth-child(2)::before { content: '⚓'; font-size: 1.8rem; opacity: 0.2; }
.baie-photo:nth-child(3) { aspect-ratio: 1; }
.baie-photo:nth-child(3)::before { content: '🌊'; font-size: 1.8rem; opacity: 0.2; }
.baie-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.baie-stat { border: 1px solid rgba(10,37,64,0.1); padding: 1.4rem; transition: border-color 0.3s; }
.baie-stat:hover { border-color: var(--turquoise); }
.baie-stat-val {
    font-family: var(--font-display); letter-spacing: var(--tracking-display);
    font-size: 1.8rem; color: var(--ocean-deep); line-height: 1;
}
.baie-stat-key {
    font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase; color: #8A9EAD; margin-top: 0.3rem;
}

/* ══ CONTACT ══ */
.contact { padding: 7rem 5%; background: var(--ocean-deep); position: relative; overflow: hidden; }
.contact::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(45,212,191,0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(103,232,249,0.06) 0%, transparent 50%);
}
.contact-inner {
    max-width: 1300px; margin: 0 auto; position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: var(--turquoise); color: var(--ocean-deep);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-item-text { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.contact-item-text strong {
    color: var(--white); display: block;
    font-family: var(--font-condensed); font-size: 0.78rem;
    letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.2rem;
}
.contact-item-text a { color: var(--turquoise); text-decoration: none; }

/* Formulaire */
.contact-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08); padding: 3rem;
}
.form-title {
    font-family: var(--font-display); letter-spacing: var(--tracking-display);
    font-size: 1.4rem; color: var(--white); margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); color: var(--white);
    padding: 0.9rem 1rem; font-family: var(--font-body); font-size: 0.95rem;
    transition: border-color 0.3s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--turquoise); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--ocean-deep); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ══════════════════════════════════════
   FOOTER — refonte
   ══════════════════════════════════════ */
.footer {
    background: var(--text-dark);
    color: var(--white);
}

/* Bandeau supérieur coloré */
.footer-top {
    background: var(--ocean-deep);
    padding: 3.5rem 5%;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    flex-wrap: wrap;
}
.footer-top-text .footer-top-label {
    font-family: var(--font-condensed); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--turquoise);
    display: block; margin-bottom: 0.5rem;
}
.footer-top-text h3 {
    font-family: var(--font-display); letter-spacing: var(--tracking-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--white); line-height: 1.25;
}
.footer-top-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Corps du footer */
.footer-body {
    max-width: 1400px; margin: 0 auto;
    padding: 4rem 5% 0;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
}

/* Colonne marque */
.footer-brand-name {
    font-family: var(--font-display); letter-spacing: var(--tracking-display);
    font-size: 1.5rem; color: var(--turquoise); margin-bottom: 0.8rem;
}
.footer-tagline {
    color: rgba(255,255,255,0.5); line-height: 1.8;
    margin-bottom: 2rem; font-size: 0.9rem; max-width: 300px;
}
.footer-contact-inline { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-contact-inline a,
.footer-contact-inline span {
    font-size: 0.88rem; color: rgba(255,255,255,0.55);
    text-decoration: none; transition: color 0.25s;
    display: flex; align-items: center; gap: 0.55rem;
}
.footer-contact-inline a:hover { color: var(--turquoise); }
.footer-contact-inline .fci-icon {
    width: 26px; height: 26px; flex-shrink: 0;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
}

/* Colonnes nav */
.footer-col-title {
    font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(255,255,255,0.35); margin-bottom: 1.4rem;
    padding-bottom: 0.7rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
    color: rgba(255,255,255,0.55); text-decoration: none;
    font-size: 0.92rem; transition: color 0.25s; display: inline-flex; align-items: center; gap: 0.4rem;
}
.footer-links a::before { content: '–'; color: rgba(255,255,255,0.2); font-size: 0.7rem; }
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::before { color: var(--turquoise); }

/* Colonne adresse */
.footer-address { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.9; }
.footer-address strong {
    display: block; color: rgba(255,255,255,0.85);
    font-family: var(--font-condensed); font-size: 0.75rem;
    letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.4rem;
}
.footer-address-sep { margin: 1.1rem 0; border: none; border-top: 1px solid rgba(255,255,255,0.07); }

/* Réseaux sociaux */
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.social-link {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: rgba(255,255,255,0.5);
    font-size: 0.9rem; transition: all 0.3s;
}
.social-link:hover {
    background: var(--turquoise); border-color: var(--turquoise);
    color: var(--ocean-deep); transform: translateY(-2px);
}

/* Ligne basse */
.footer-bottom {
    max-width: 1400px; margin: 0 auto;
    padding: 1.8rem 5%;
    margin-top: 3.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p {
    color: rgba(255,255,255,0.25); font-size: 0.8rem;
}
.footer-bottom-links {
    display: flex; gap: 1.5rem; list-style: none;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.25); text-decoration: none; font-size: 0.8rem;
    transition: color 0.25s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ══ ANIMATIONS ══ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(35px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-10px); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
    .moniteur-inner, .baie-inner, .contact-inner { grid-template-columns: 1fr; gap: 3.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .intro-stats-inner { grid-template-columns: 1fr 1fr; }
    .footer-body { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .moniteur-badge { right: 0; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
    .hero-cta { flex-direction: column; align-items: center; }
    .intro-stats-inner { grid-template-columns: 1fr 1fr; }
    .baie-photo-grid { grid-template-columns: 1fr; }
    .baie-photo:nth-child(1) { grid-column: auto; }
    .footer-body { grid-template-columns: 1fr; gap: 2rem; }
    .footer-top { flex-direction: column; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 2rem 1.5rem; }
}
