/* ===== Variables ===== */
:root {
  --bg: #f7f0e6;
  --bg-soft: #f1e8d9;
  --bg-dark: #2c241c;
  --text: #3a2f26;
  --text-light: #6b5a4a;
  --accent: #8b5e3c;
  --accent-hover: #6f4a2f;
  --border: #e0d4c3;
  --white: #fffdf9;
  --shadow: 0 10px 40px rgba(44, 36, 28, 0.08);
  --radius: 12px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--bg-dark);
}

.section-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

.lead {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.65;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 240, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--bg-dark);
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 450;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.nav-instagram {
  color: var(--accent) !important;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bg-dark);
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(232, 210, 180, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(200, 170, 140, 0.25) 0%, transparent 50%),
    var(--bg);
  text-align: center;
}

.hero-content {
  max-width: 700px;
}

.hero-logo {
  width: min(320px, 80vw);
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 700;
  color: var(--bg-dark);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.hero-title span {
  font-weight: 400;
  font-style: italic;
  font-size: 0.7em;
  display: block;
  margin-top: 0.15em;
  color: var(--accent);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.hero-text {
  max-width: 480px;
  margin: 0 auto 2.2rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== Over ===== */
.over {
  background: var(--bg-soft);
}

.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.over-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.over-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.2rem;
  color: var(--bg-dark);
}

.over-content p {
  margin-bottom: 1.1rem;
  color: var(--text);
}

/* ===== Galerij ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.gallery-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(44, 36, 28, 0.12);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

.gallery-note {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
}

/* ===== Contact ===== */
.contact {
  background: var(--bg-soft);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--bg-dark);
}

.contact-details {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-details p {
  margin-bottom: 1.2rem;
}

.contact-details strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-details a {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
}

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

/* Form */
.contact-form {
  background: var(--white);
  padding: 2.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

.hidden {
  display: none;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  color: #d4c4b0;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d4c4b0;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #9a8b7a;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

.form-success {
  color: #35643d;
  font-weight: 500;
}

.form-error {
  color: #9c352f;
  font-weight: 500;
}

/* ===== Websitebeheer ===== */
.admin-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232, 210, 180, 0.45), transparent 55%),
    var(--bg);
}

.admin-card {
  width: min(100%, 560px);
  padding: clamp(2rem, 6vw, 3.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.admin-logo {
  width: 110px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
}

.admin-kicker {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-card h1 {
  margin: 0.35rem 0 1rem;
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 8vw, 3.4rem);
}

.admin-card > p:not(.admin-kicker) {
  margin-bottom: 1.75rem;
  color: var(--text-light);
}

.admin-back {
  display: block;
  margin-top: 1.4rem;
  font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .over-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .over-image {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 1.5rem;
  }

  .gallery-grid {
    gap: 1.5rem;
  }
}
