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

:root {
  --bg: #f9f7fc;
  --bg-dark: #2e2836;
  --text: #4a3f54;
  --text-light: #7a6e88;
  --accent: #9b7bb8;
  --accent-light: #b99ad4;
  --white: #fff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Nunito Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
}

/* === Hero / Header === */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f3eef8;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  max-width: 900px;
}

.hero-photo-area { flex-shrink: 0; }

.hero-text-area { text-align: left; }

@media (max-width: 768px) {
  .hero-layout { flex-direction: column; }
  .hero-text-area { text-align: center; }
}

.profile-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.site-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--bg-dark);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.site-description {
  font-family: var(--sans);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0.5rem 0 0;
}

.site-author {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--text);
  font-weight: 400;
  margin-top: 0.3rem;
}

.header-icons {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin: 2rem 0;
}

.header-icons a { text-decoration: none; }

@media (max-width: 768px) {
  .header-icons { justify-content: center; }
}

.header-icons .icon {
  color: var(--bg-dark);
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border: 1.5px solid rgba(46,40,54,0.3);
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.header-icons .icon:hover {
  background: var(--bg-dark);
  color: var(--white);
  border-color: var(--bg-dark);
}

.cta-button {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.cta-button:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155,123,184,0.3);
}

.down {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 2rem;
  color: rgba(46,40,54,0.4);
  font-size: 1.5rem;
  animation: pulse 2s infinite;
  text-decoration: none;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-8px); }
}

/* === Sections === */
section {
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--bg-dark);
  text-align: center;
  margin-bottom: 2rem;
}

/* === About === */
.about-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-container { grid-template-columns: 1fr 1fr; }
}

.about-text .intro,
.about-extra .intro {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-text p { margin-bottom: 1rem; }

.about-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  display: block;
  margin: 0 auto;
}

.about-extra {
  margin-top: 4rem;
  text-align: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.about-extra p { margin-bottom: 1.5rem; }

/* === Services === */
#services {
  background: var(--white);
  max-width: 100%;
  padding: 5rem 2rem;
}

#services h2 { margin-bottom: 1rem; }

#services .services-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 10px 10px 0 0;
  margin: -2.5rem -2rem 0.8rem;
  width: calc(100% + 4rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  text-align: center;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  background: var(--bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.service-card i {
  display: none;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bg-dark);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.services-praktijk {
  max-width: 960px;
  margin: 3rem auto 0;
  text-align: center;
}

.services-praktijk img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.services-praktijk p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent);
  margin-top: 1.2rem;
}

/* === Contact === */
#contact {
  text-align: center;
  max-width: 1200px;
}

#contact p { margin-bottom: 2rem; color: var(--text-light); }

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

.contact-item a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--accent); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
}

.contact-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* === Booking Cards === */
.booking-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.booking-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.booking-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bg-dark);
  margin-bottom: 0.6rem;
}

.booking-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  flex: 1;
}

.booking-meta {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.booking-meta span {
  background: var(--bg);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text);
}

.booking-card .cta-button {
  padding: 14px 20px;
  align-self: center;
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-photo { display: none; }
  .booking-cards { grid-template-columns: 1fr; }
}

/* === Footer === */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}

.footer p { margin: 0; }
.footer .footer-address { margin-bottom: 1.5rem; }

/* === Footer Links === */
.footer-links { margin-top: 0.2rem; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-links a:hover { color: var(--accent-light); }

/* === Standalone Pages === */
.page-nav {
  padding: 1.5rem 2rem;
  background: var(--bg);
}
.page-nav a {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.95rem;
}
.page-nav a:hover { text-decoration: underline; }

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}
.page-content h1 {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.page-content .page-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}
.page-content h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}
.page-content p, .page-content li {
  color: var(--text);
  line-height: 1.8;
}
.page-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.page-content li { margin-bottom: 0.4rem; }
.page-content a { color: var(--accent); }
.page-content a:hover { text-decoration: underline; }
