/*
Theme Name: Dav'Pieds
Theme URI: https://www.davpieds.be
Author: David
Author URI: https://www.davpieds.be
Description: Thème professionnel pour Dav'Pieds - Pédicure Médical en Belgique
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: davpieds
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── VARIABLES ──────────────────────────────────────────── */
:root {
  --bg:       #F0F5F7;
  --bg-alt:   #E8F0F3;
  --dark:     #1A3A42;
  --primary:  #3D7A8A;
  --accent:   #2A5F6E;
  --light:    #B8D4DA;
  --sub:      #6A9BAA;
  --white:    #FFFFFF;
  --text:     #2C4A52;
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes float   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.fade-up  { animation: fadeUp 0.7s ease forwards; }
.float    { animation: float 4s ease-in-out infinite; }

/* ── NAVIGATION ─────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px; padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.35s ease;
}
#navbar.scrolled {
  background: rgba(26,58,66,0.93);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-circle {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-circle svg { width: 22px; height: 22px; }
.nav-logo-text {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 700; color: var(--white);
}
.nav-logo-text span { color: var(--light); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.75); font-size: 13px;
  letter-spacing: 0.06em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--light); }
.nav-cta {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff; border-radius: 24px; padding: 8px 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(61,122,138,0.4); }

/* Menu burger mobile */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh; position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--dark) 0%, var(--accent) 55%, var(--primary) 100%);
  display: flex; align-items: center;
}
.hero-deco-circle {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.hero-foot-bg {
  position: absolute; right: 8vw; top: 50%; transform: translateY(-50%);
  opacity: 0.07; pointer-events: none;
}
.hero-foot-bg svg { width: 320px; height: 320px; }
.hero-content { position: relative; z-index: 2; padding: 0 8vw; max-width: 640px; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--light); margin-bottom: 18px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  color: var(--white); line-height: 1.15; font-weight: 700; margin-bottom: 22px;
}
.hero-title-outline {
  color: transparent; -webkit-text-stroke: 1.5px var(--light); font-style: italic;
}
.hero-desc {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 16px; color: rgba(255,255,255,0.65);
  line-height: 1.8; margin-bottom: 36px; max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  background: var(--white); color: var(--dark);
  border-radius: 30px; padding: 14px 30px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s; display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.3); color: var(--dark); }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white); border-radius: 30px; padding: 14px 30px;
  font-size: 13px; letter-spacing: 0.08em;
  transition: background 0.2s; display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); color: var(--white); }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badge {
  font-size: 11px; color: var(--light);
  background: rgba(255,255,255,0.08); border-radius: 20px;
  padding: 5px 12px; border: 1px solid rgba(255,255,255,0.12);
}

/* ── SECTIONS COMMUNES ──────────────────────────────────── */
.section-eyebrow {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--sub); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--dark); line-height: 1.2;
}
.section-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--light));
  border-radius: 2px; margin: 18px auto 0;
}
.section-header { text-align: center; margin-bottom: 64px; }

/* ── SERVICES ───────────────────────────────────────────── */
#services { padding: 100px 8vw; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: 20px; padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(42,95,110,0.08);
  border: 1px solid rgba(184,212,218,0.3);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(42,95,110,0.18); }
.service-icon { font-size: 36px; }
.service-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--dark); }
.service-bar { width: 24px; height: 2px; background: var(--primary); border-radius: 1px; }
.service-desc { font-size: 13px; color: var(--sub); line-height: 1.7; }

/* ── À PROPOS ───────────────────────────────────────────── */
#propos {
  padding: 100px 8vw; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--dark), var(--accent));
}
.propos-foot-bg {
  position: absolute; right: -60px; top: -60px; opacity: 0.06; pointer-events: none;
}
.propos-foot-bg svg { width: 400px; height: 400px; }
.propos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 2;
}
.propos-eyebrow { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--light); margin-bottom: 16px; }
.propos-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--white); line-height: 1.25; margin-bottom: 24px;
}
.propos-title em { color: var(--light); }
.propos-bar { width: 40px; height: 2px; background: var(--primary); border-radius: 1px; margin-bottom: 24px; }
.propos-intro {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.85; margin-bottom: 20px;
}
.propos-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.valeurs { display: flex; flex-direction: column; gap: 20px; }
.valeur-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 20px 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.valeur-icon { font-size: 26px; flex-shrink: 0; }
.valeur-title { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--white); margin-bottom: 6px; }
.valeur-desc { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── TARIFS ─────────────────────────────────────────────── */
#tarifs { padding: 100px 8vw; background: var(--bg-alt); }
.tarifs-intro {
  font-family: 'Playfair Display', serif; font-style: italic;
  color: var(--sub); font-size: 14px; margin-top: 16px;
}
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; max-width: 860px; margin: 0 auto;
}
.tarif-card {
  background: var(--white); border-radius: 18px; padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(42,95,110,0.07);
  border: 1px solid rgba(184,212,218,0.4);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.tarif-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(42,95,110,0.15); }
.tarif-label { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--dark); }
.tarif-bar { width: 20px; height: 2px; background: var(--primary); border-radius: 1px; }
.tarif-desc { font-size: 12px; color: var(--sub); line-height: 1.65; flex: 1; }
.tarif-prix {
  font-size: 13px; color: var(--primary); font-weight: 700;
  border-top: 1px solid rgba(184,212,218,0.4); padding-top: 10px; margin-top: 4px;
}

/* ── CONTACT ────────────────────────────────────────────── */
#contact {
  padding: 100px 8vw; position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--dark), var(--accent) 80%);
}
.contact-foot-bg {
  position: absolute; left: -80px; bottom: -80px; opacity: 0.05; pointer-events: none;
}
.contact-foot-bg svg { width: 360px; height: 360px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 2;
}
.contact-eyebrow { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--light); margin-bottom: 16px; }
.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px); color: var(--white); line-height: 1.25; margin-bottom: 24px;
}
.contact-title em { color: var(--light); }
.contact-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 36px; }
.contact-infos { display: flex; flex-direction: column; gap: 18px; }
.contact-info-row { display: flex; align-items: center; gap: 16px; }
.contact-info-icon {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-info-label { font-size: 10px; color: var(--light); letter-spacing: 0.1em; text-transform: uppercase; }
.contact-info-val { font-size: 14px; color: var(--white); margin-top: 2px; }
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px; padding: 40px 36px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.contact-card-logo-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(61,122,138,0.5);
}
.contact-card-logo-circle svg { width: 44px; height: 44px; }
.contact-card-name {
  font-family: 'Playfair Display', serif; font-size: 28px;
  color: var(--white); font-weight: 700; text-align: center;
}
.contact-card-name span { color: var(--light); }
.contact-card-sub {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 4px;
}
.contact-card-bar { width: 40px; height: 1.5px; background: var(--primary); border-radius: 1px; }
.contact-card-quote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 13px; color: rgba(255,255,255,0.6); text-align: center; line-height: 1.7;
}
.contact-card-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.contact-card-badge {
  font-size: 10px; color: var(--light);
  background: rgba(255,255,255,0.08); border-radius: 20px;
  padding: 4px 12px; border: 1px solid rgba(255,255,255,0.1);
}
.btn-call {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff; border-radius: 30px; padding: 14px;
  font-size: 13px; font-weight: 700; text-align: center;
  letter-spacing: 0.06em; width: 100%; margin-top: 8px;
  box-shadow: 0 6px 20px rgba(61,122,138,0.4);
  transition: transform 0.2s, box-shadow 0.2s; display: block;
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(61,122,138,0.5); color: #fff; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--dark); padding: 28px 8vw;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo-circle {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-circle svg { width: 16px; height: 16px; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--white); }
.footer-logo-text span { color: var(--light); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); text-align: center; }
.footer-url { font-size: 11px; color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: rgba(26,58,66,0.97);
    padding: 20px 5vw; gap: 16px;
  }
  .nav-cta.open { display: block; margin: 0 5vw 20px; }
  .propos-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-foot-bg { display: none; }
  .propos-foot-bg, .contact-foot-bg { display: none; }
}
