/* ===== Trimsalon Aubain — Chic & Professional ===== */

:root {
  --navy: #1c3a63;
  --navy-dark: #12274a;
  --sky: #bfe0f0;
  --sky-light: #eaf5fa;
  --cream: #fbfaf7;
  --white: #ffffff;
  --gold: #c9a24b;
  --text: #23324a;
  --text-light: #5c6b82;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(28, 58, 99, 0.12);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 16px;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; margin-bottom: 8px; }

p { margin: 0 0 12px; color: var(--text-light); }

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

.section { padding: 90px 0; }
.section-alt { background: var(--sky-light); }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark .price { color: var(--white); }

.section-tag {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-tag.light { color: var(--sky); }
.section-intro { max-width: 620px; }
.section-intro.light { color: var(--sky); opacity: 0.9; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light {
  border-color: var(--sky);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--sky); color: var(--navy); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 58, 99, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.logo-img {
  height: 92px;
  width: auto;
  display: block;
  border-radius: 10px;
  background: var(--cream);
  padding: 6px 10px;
}

.site-nav { display: flex; gap: 26px; }
.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
}
.site-nav a:hover { color: var(--navy); }

.header-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sky-light) 0%, var(--cream) 100%);
}
.hero-stripes {
  position: absolute;
  inset: 0;
  background-image: url("../images/Streepjes.png");
  background-repeat: repeat;
  background-size: 220px auto;
  opacity: 0.5;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  max-width: 1140px;
}
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.eyelet {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}
.hero-sub { font-size: 1.08rem; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--sky);
}
.card h3 {
  font-weight: 700;
}
.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.card-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  color: var(--text-light);
  font-size: 0.92rem;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
}
.price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy);
  font-weight: 700;
  margin: 4px 0 18px;
}
.price-small {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Breed prices */
.breed-prices {
  margin-top: 48px;
  max-width: 480px;
}
.breed-prices h3 {
  margin-bottom: 14px;
}
.breed-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.breed-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(28, 58, 99, 0.1);
}
.breed-list li span:first-child { color: var(--text); font-weight: 500; }
.breed-price {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 600;
  font-size: 1.1rem;
}
.breed-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.visual-stripe-block {
  height: 380px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visual-stripe-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  display: block;
}

/* Gallery slider */
.gallery-slider {
  position: relative;
  margin-top: 36px;
  padding: 0 50px;
}
.slider-viewport {
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 18px;
  transition: transform 0.4s ease;
}
.slide {
  flex: 0 0 calc((100% - 36px) / 3);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.slide img {
  display: block;
  width: 100%;
  height: auto;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--navy);
  font-size: 1rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
  z-index: 2;
}
.slider-arrow:hover { background: var(--sky); }
.slider-arrow.prev { left: 0; }
.slider-arrow.next { right: 0; }
.slider-arrow[disabled] { opacity: 0.35; cursor: default; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sky);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}
.slider-dot.active { background: var(--navy); transform: scale(1.2); }

@media (max-width: 900px) {
  .slide { flex-basis: calc((100% - 18px) / 2); }
}

@media (max-width: 560px) {
  .gallery-slider { padding: 0 40px; }
  .slide { flex-basis: 100%; }
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}
.contact-list { list-style: none; padding: 0; margin: 24px 0; }
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}
.contact-label {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  color: var(--sky);
}
.contact-list a { color: var(--white); font-weight: 600; }
.hours-note { color: var(--sky); font-size: 0.85rem; opacity: 0.85; }
.contact-actions { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.icon-btn {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, background 0.15s ease;
  flex-shrink: 0;
}
.icon-btn svg { display: block; flex-shrink: 0; }
.icon-btn svg path { fill: var(--navy); }
.icon-btn:hover { background: var(--sky); transform: translateY(-2px); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* Footer */
.site-footer { background: var(--navy-dark); padding: 22px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--sky);
  font-size: 0.85rem;
}
.footer-links { display: flex; gap: 18px; align-items: center; }
.footer-links a { color: var(--sky); }
.footer-links a:hover { color: var(--white); }
.social-icon { display: flex; align-items: center; }
.social-icon svg { fill: var(--sky); transition: fill 0.15s ease; }
.social-icon:hover svg { fill: var(--white); }

/* Responsive */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .contact-inner, .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { height: 280px; order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    gap: 14px;
    box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 200;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}
