/* Transports Correa — recreated from https://preview.duda.co/preview/29db2713
   Palette/type pulled from the live site's computed styles. */

:root {
  --coral: #ff5757;
  --coral-dark: #e64545;
  --text-dark: #222;
  --text-gray: #666;
  --bg-page: #eee;
  --white: #fff;
  --radius: 10px;
  --font-head: "Montserrat", sans-serif;
  --font-body: "Source Sans Pro", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-page);
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn:hover { background: var(--coral-dark); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

/* Header */
.site-header {
  background: var(--white);
  position: relative;
  z-index: 10;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo img { height: 140px; width: auto; }

/* The real site has no page-nav menu at all on desktop/tablet — only the
   logo + call/WhatsApp buttons. Page-to-page links live in the footer
   ("OFFRE" column) and the hero CTA instead. */
.header-actions { display: flex; align-items: center; gap: 14px; }
.call-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 700;
}
.call-btn:hover { background: var(--coral-dark); }
.whatsapp-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #4dc85a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-btn img { width: 28px; height: 28px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--text-dark);
}

/* Mobile "hamburger" opens a contact drawer (logo + phone + email) —
   the real site's menu has no page links in it, just contact info. */
.contact-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #132738;
  color: #f7f7f7;
  text-align: center;
  padding: 40px 24px;
  font-family: "Lato", sans-serif;
}
.contact-drawer.open { display: block; }
.contact-drawer img { width: 120px; margin: 0 auto 28px; }
.contact-drawer h6 { font-size: 15px; font-weight: 600; margin: 0 0 14px; }
.contact-drawer hr { border: none; height: 2px; width: 40px; background: grey; margin: 0 auto 18px; }
.contact-drawer p { margin: 0 0 8px; }
.contact-drawer a:hover { color: var(--coral); }
.contact-drawer .drawer-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #f7f7f7;
  font-size: 26px;
  cursor: pointer;
}

/* Floating WhatsApp bubble — mobile only; on desktop/tablet WhatsApp is
   the inline header icon instead (see .whatsapp-btn, hidden below 860px). */
.whatsapp-float {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #4dc85a;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.whatsapp-float img { width: 32px; height: 32px; }

/* Hero */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 25, 0.45);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.25;
  color: var(--white);
  margin: 0 0 32px;
}
.hero.small { min-height: 260px; }
.hero.small h1 { font-size: 40px; margin-bottom: 24px; }
.scroll-hint { display: none; }

/* Philosophy */
.philosophy {
  background: var(--white);
  text-align: center;
  padding: 80px 20px;
}
.philosophy h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 36px;
  color: var(--text-gray);
  margin: 0 0 32px;
  letter-spacing: 1px;
}
.philosophy p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Services band */
.services-band {
  background: var(--coral);
  padding: 70px 20px;
}
.services-band h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 36px;
  color: var(--white);
  text-align: center;
  margin: 0 0 48px;
  letter-spacing: 1px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.service-card { color: var(--white); text-align: center; }
.service-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 14px;
}
.service-card p {
  font-size: 16px;
  line-height: 1.55;
  opacity: 0.92;
  margin: 0 0 8px;
}

/* Trust / clients */
.trust {
  background: var(--white);
  padding: 70px 20px;
  text-align: center;
}
.trust h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  color: var(--text-dark);
  margin: 0 0 44px;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.logo-grid img {
  max-height: 60px;
  width: auto;
  margin: 0 auto;
}

/* Services page */
.intro {
  background: var(--white);
  padding: 60px 20px;
  text-align: center;
}
.intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.7;
}
.features {
  background: var(--bg-page);
  padding: 60px 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border-top: 4px solid var(--coral);
}
.feature-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--coral);
  margin: 0 0 12px;
}
.feature-card p { color: var(--text-gray); line-height: 1.6; margin: 0; }

/* Reservation page */
.reservation-wrap {
  background: var(--white);
  padding: 60px 20px 90px;
}
.res-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.res-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 15px;
}
.res-form input,
.res-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
}
.res-form textarea { resize: vertical; min-height: 100px; }
.res-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.res-form .submit-row { text-align: center; margin-top: 10px; }

/* Footer — matches the real site's #fcontainer: black bg, 4 equal columns
   (icon / VALEURS / OFFRE / CONTACT), Lato 900 headings, thin grey divider. */
.site-footer {
  background: #000;
  color: #f7f7f7;
  padding: 56px 20px;
  font-family: "Lato", sans-serif;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
}
.footer-logo { display: flex; align-items: center; justify-content: center; }
.footer-logo img { width: 90px; height: 90px; }
.footer-col h6 {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.footer-col hr {
  border: none;
  height: 2px;
  background: grey;
  width: 40px;
  margin: 0 0 14px;
}
.footer-col p { font-size: 14px; font-weight: 400; margin: 0 0 8px; line-height: 1.5; }
.footer-col a:hover { color: var(--coral); }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover { border-color: var(--coral); color: var(--coral); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

/* Mobile — matches the real site's mobile header: hamburger / centered
   logo / bare phone icon, with WhatsApp moving from the header into a
   fixed bottom-right bubble. */
@media (max-width: 860px) {
  .site-header .container { position: relative; justify-content: center; }
  .logo img { height: 100px; }
  .menu-toggle {
    display: block;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
  }
  .header-actions { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); }
  .call-btn {
    background: none;
    color: var(--text-dark);
    padding: 6px;
    font-size: 22px;
  }
  .call-btn span { display: none; }
  .whatsapp-btn { display: none; }
  .whatsapp-float { display: flex; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .res-form .row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .scroll-hint {
    display: block;
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--coral);
    font-size: 30px;
    z-index: 1;
    animation: bounce 1.5s infinite;
  }
  @keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
  }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-col.hide-mobile { display: none; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
}
