/* Praktijk Zynia - Kindermassage Website
   Kleurenpalet: Warm & zacht (zinnia bloem geïnspireerd)
   Fonts: Quicksand (headings) + Lato (body)
*/

/* === Font Faces === */

/* Quicksand - headings */
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/quicksand-latin-500-normal.woff2") format("woff2"),
       url("/assets/fonts/quicksand-latin-500-normal.woff") format("woff");
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/quicksand-latin-600-normal.woff2") format("woff2"),
       url("/assets/fonts/quicksand-latin-600-normal.woff") format("woff");
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/quicksand-latin-700-normal.woff2") format("woff2"),
       url("/assets/fonts/quicksand-latin-700-normal.woff") format("woff");
}

/* Lato - body text */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/lato-latin-400-normal.woff2") format("woff2"),
       url("/assets/fonts/lato-latin-400-normal.woff") format("woff");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/lato-latin-700-normal.woff2") format("woff2"),
       url("/assets/fonts/lato-latin-700-normal.woff") format("woff");
}

/* === CSS Reset & Base === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a4a4a;
  background-color: #fff9f7;
}

/* === Typography === */
h1, h2, h3 {
  font-family: "Quicksand", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #3d3d3d;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #e07a5f;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #81b29a;
}

p {
  margin: 0 0 1rem 0;
}

a {
  color: #e07a5f;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #c45c40;
  text-decoration: underline;
}

/* === Layout === */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 3rem 0;
}

section:nth-child(even) {
  background-color: #fff;
}

/* === Hero Section === */
.hero {
  background: linear-gradient(135deg, #fce4e0 0%, #e8f5e9 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(244, 167, 163, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(129, 178, 154, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  color: #e07a5f;
  margin-bottom: 0.25rem;
  letter-spacing: -0.5px;
}

.hero .tagline {
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  color: #81b29a;
  font-style: italic;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero .welcome {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Hero decorative image placeholder */
.hero-image {
  max-width: 280px;
  margin: 2rem auto 0;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(224, 122, 95, 0.2);
}

/* Image placeholder styling */
.image-placeholder {
  background: linear-gradient(135deg, #fce4e0 0%, #f4a7a3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}

.hero-image .image-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 0.9rem;
}

/* === About Section === */
.about {
  background-color: #fff;
}

.about .signature {
  font-family: "Quicksand", sans-serif;
  font-style: italic;
  color: #e07a5f;
  margin-top: 1.5rem;
}

/* === CTA Banner (mid-page) === */
.cta-banner {
  background: linear-gradient(135deg, #e07a5f 0%, #f4a7a3 100%);
  padding: 3rem 0;
  text-align: center;
}

.cta-banner .container {
  max-width: 600px;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.cta-banner .contact-button {
  background-color: #fff;
  color: #e07a5f;
}

.cta-banner .contact-button:hover {
  background-color: #fff9f7;
  color: #c45c40;
}

/* === Benefits Section === */
.benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.benefits li::before {
  content: "\2022";
  color: #f4a7a3;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.1rem;
}

/* === Massage Types Section === */
.massage-types {
  background-color: #fff9f7;
}

.massage-type {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #f4a7a3;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.massage-type-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fce4e0 0%, #e8f5e9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #81b29a;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  text-align: center;
}

.massage-type-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.massage-type-content {
  flex: 1;
}

.massage-type h3 {
  margin-top: 0;
}

.massage-type p {
  margin-bottom: 0;
}

/* === Practical Info Section === */
.practical {
  background-color: #fff;
}

.practical ul {
  list-style: none;
  padding: 0;
}

.practical li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f4e4e0;
}

.practical li:last-child {
  border-bottom: none;
}

.practical strong {
  color: #e07a5f;
  font-family: "Quicksand", sans-serif;
}

/* === Contact Section === */
.contact {
  background: linear-gradient(135deg, #e8f5e9 0%, #fce4e0 100%);
  text-align: center;
  padding: 4rem 0;
}

.contact h2 {
  margin-bottom: 1.5rem;
}

.contact-button {
  display: inline-block;
  background-color: #e07a5f;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(224, 122, 95, 0.3);
}

.contact-button:hover {
  background-color: #c45c40;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 122, 95, 0.4);
}

.contact .note {
  font-size: 0.95rem;
  color: #666;
  margin-top: 1.5rem;
  font-style: italic;
}

.contact .signature {
  margin-top: 2rem;
  font-family: "Quicksand", sans-serif;
  font-style: italic;
  color: #e07a5f;
  font-size: 1.1rem;
}

/* === Decorative Section Divider === */
.section-image {
  padding: 0;
  background-color: #fff9f7;
}

.section-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.section-image .image-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #e8f5e9 0%, #fce4e0 100%);
  font-size: 0.9rem;
  color: #81b29a;
}

/* === Footer === */
.site-footer {
  background-color: #3d3d3d;
  color: #ccc;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

/* === Responsive === */
@media (max-width: 600px) {
  body {
    font-size: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 2rem 0;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-image .image-placeholder {
    width: 150px;
    height: 150px;
  }

  .massage-type {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .massage-type-icon {
    margin-bottom: 0.5rem;
  }

  .contact-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .cta-banner {
    padding: 2rem 0;
  }

  .section-image .image-placeholder {
    height: 150px;
  }
}
