/* ── VARIABLES ── */
:root {
  --orange: #E8620A;
  --orange-light: #FF8C42;
  --orange-dark: #C04E00;
  --noir: #1A1A1A;
  --noir-doux: #2D2D2D;
  --blanc: #FFFFFF;
  --gris-clair: #F5F5F5;
  --gris-mid: #E0E0E0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--noir);
  background: var(--blanc);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--noir);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  border-bottom: 3px solid var(--orange);
}
.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: 2px;
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--gris-mid);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: var(--blanc) !important;
  padding: 8px 20px;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--orange-dark); }

/* ── HERO ── */
#hero {
  margin-top: 64px;
  min-height: 90vh;
  background: var(--blanc);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(232,98,10,0.06) 0px, rgba(232,98,10,0.06) 1px,
    transparent 1px, transparent 40px
  );
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--blanc);
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: #555;
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.hero-desc {
  color: #444;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: var(--blanc);
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--noir);
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--noir);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}
.hero-card {
  background: var(--blanc);
  border: 1px solid var(--gris-mid);
  border-left: 4px solid var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 40px;
  width: 100%;
  max-width: 380px;
}
.hero-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--noir);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.info-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; fill: var(--blanc); }
.info-text { color: #555; font-size: 0.95rem; line-height: 1.5; }
.info-text strong { color: var(--noir); display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.hero-card a { color: var(--orange); text-decoration: none; }

/* ── SECTIONS ── */
section { padding: 90px 40px; }
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--noir);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title.light { color: var(--blanc); }
.divider { width: 60px; height: 4px; background: var(--orange); margin-bottom: 40px; }

/* ── SERVICES ── */
#services { background: var(--gris-clair); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .divider { margin: 0 auto 40px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--gris-mid);
}
.service-card {
  background: var(--blanc);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--orange);
  transition: height 0.3s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { transform: translateY(-4px); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--noir);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--orange); }
.service-icon svg { width: 28px; height: 28px; fill: var(--orange); transition: fill 0.3s; }
.service-card:hover .service-icon svg { fill: var(--blanc); }
.service-card h3 { font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 14px; color: var(--noir); }
.service-card p { color: #666; font-size: 0.95rem; line-height: 1.7; }

/* ── GALERIE ── */
#galerie { background: var(--noir); padding: 90px 40px; }
.galerie-header { text-align: center; margin-bottom: 60px; }
.galerie-header .divider { margin: 0 auto 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232, 98, 10, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blanc);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.6;
}
.gallery-overlay p span {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ── ABOUT ── */
#about {
  background: var(--noir);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.about-left { padding: 90px 70px 90px 60px; }
.about-left p { color: #bbb; line-height: 1.85; font-size: 1.05rem; margin-bottom: 32px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.stat-box { border-left: 3px solid var(--orange); padding-left: 20px; }
.stat-number { font-family: 'Oswald', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.85rem; color: #888; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.about-right {
  background: var(--orange);
  padding: 90px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-right h3 { font-family: 'Oswald', sans-serif; font-size: 1.8rem; color: var(--blanc); margin-bottom: 32px; font-weight: 700; }
.horaires-table { width: 100%; border-collapse: collapse; }
.horaires-table tr { border-bottom: 1px solid rgba(255,255,255,0.2); }
.horaires-table td { padding: 10px 0; color: var(--blanc); font-size: 0.95rem; }
.horaires-table td:first-child { font-weight: 600; text-transform: capitalize; width: 45%; }
.horaires-table .ferme { color: rgba(255,255,255,0.5); font-style: italic; }

/* ── CONTACT ── */
#contact { background: var(--gris-clair); }
.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-block-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; }
.contact-dot {
  width: 44px; height: 44px;
  background: var(--noir);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-dot svg { width: 20px; height: 20px; fill: var(--orange); }
.contact-block-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--noir);
  margin-bottom: 4px;
}
.contact-block-text span,
.contact-block-text a { color: #555; font-size: 1rem; text-decoration: none; }
.contact-block-text a:hover { color: var(--orange); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gris-mid);
  background: var(--blanc);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--noir);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group textarea { height: 120px; resize: vertical; }

/* ── FOOTER ── */
footer {
  background: var(--noir);
  color: #777;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 3px solid var(--orange);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--blanc); letter-spacing: 2px; }
.footer-logo span { color: var(--orange); }
footer p { font-size: 0.85rem; }

/* ── BOUTON FLOTTANT ── */
.floating-phone {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  background: var(--orange);
  color: var(--blanc);
  padding: 14px 22px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(232,98,10,0.5);
  display: flex; align-items: center; gap: 10px;
  transition: background 0.2s, transform 0.15s;
}
.floating-phone:hover { background: var(--orange-dark); transform: translateY(-2px); }
.floating-phone svg { width: 20px; height: 20px; fill: var(--blanc); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge    { animation: fadeUp 0.5s ease both; }
.hero-subtitle { animation: fadeUp 0.5s 0.2s ease both; }
.hero-desc     { animation: fadeUp 0.5s 0.3s ease both; }
.hero-actions  { animation: fadeUp 0.5s 0.4s ease both; }
.hero-card     { animation: fadeUp 0.5s 0.5s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 32px 40px; }
  .hero-right { padding: 40px 32px 60px; }
  #about { grid-template-columns: 1fr; }
  .about-left { padding: 60px 32px; }
  .about-right { padding: 60px 32px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  nav { padding: 0 24px; }
  section { padding: 70px 24px; }
  .gallery-grid { grid-template-columns: 1fr !important; }
}
