/* ============================= */
/*         ROOT VARIABLES        */
/* ============================= */
:root {
  --achtergrond: #F5EAD6;
  --groen: #5C7B49;
  --bruin: #4B2E2A;
  --hover-groen: #809c6d;
  --accent: #A88C5E;
  --card-bg: #EDE7D9;
  --light-gray: #F5F5F5;
  --light-gray-alt: #E8E8E8;
  --wit: #ffffff;
}

/* ============================= */
/*             BODY              */
/* ============================= */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, var(--achtergrond) 0%, #E8F0D1 100%);
  color: var(--bruin);
  text-align: center;
  overflow-x: hidden;
}

/* ============================= */
/*            IMG                */
/* ============================= */
img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Specifieke logo styling */
img[src="images/logo.png"] {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

/* ============================= */
/*            NAV                */
/* ============================= */
nav {
  background: var(--groen);
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  gap: 25px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav a {
  color: var(--achtergrond);
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  padding: 8px 12px;
  border-radius: 5px;
}

nav a:hover,
nav a.active,
nav a:focus {
  color: var(--bruin);
  outline: none;
  background: var(--accent);
}

/* ============================= */
/*          HERO SECTION         */
/* ============================= */
.hero {
  background: linear-gradient(135deg, var(--groen) 0%, #7AA66C 100%);
  color: var(--achtergrond);
  text-align: center;
  padding: 100px 20px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.profielfoto {
  width: 160px;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: floatLogo 3s ease-in-out infinite alternate;
}

.hero h1 {
  font-size: 48px;
  margin: 0 0 10px;
  animation: floatText 3s ease-in-out infinite alternate;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  opacity: 0;
  animation: fadeIn 2s ease forwards;
  animation-delay: 0.5s;
}

.accent-text {
  color: var(--accent);
  font-weight: 600;
}

/* ============================= */
/*             BUTTONS           */
/* ============================= */
.btn,
.social-links button,
.les-formulier button,
.container-bevestiging button {
  display: inline-block;
  background: var(--accent);
  color: var(--achtergrond);
  padding: 12px 26px;
  border-radius: 8px;
  border: 2px solid var(--bruin);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
}

.btn:hover,
.social-links button:hover,
.les-formulier button:hover,
.container-bevestiging button:hover {
  background: #C3A87A;
  transform: translateY(-3px);
}

.btn::after,
.social-links button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-25deg);
  transition: left 0.5s;
}

.btn:hover::after,
.social-links button:hover::after {
  left: 125%;
}

/* ============================= */
/*         SOCIAL BUTTONS        */
/* ============================= */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

/* ============================= */
/*       CONTENT / SECTIONS      */
/* ============================= */
main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

section {
  background: rgba(92,123,73,0.05);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

section h2 {
  text-align: center;
  margin-top: 10px;
  color: var(--bruin);
}

section h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ============================= */
/*             TEAM GALLERY      */
/* ============================= */
.team-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.team-member {
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.team-member img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.team-member p {
  margin-top: 10px;
  font-weight: bold;
  color: var(--bruin);
}

/* ============================= */
/*             CARDS             */
/* ============================= */
.container,
.cards-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  max-width: 300px;
  text-align: center;
  color: var(--bruin);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* ============================= */
/*             TABLES            */
/* ============================= */
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

th, td {
  padding: 12px 15px;
  text-align: center;
}

th {
  background: var(--groen);
  color: var(--achtergrond);
}

td {
  background: var(--light-gray);
}

tr:nth-child(even) td {
  background: var(--light-gray-alt);
}

/* ============================= */
/*       CONTACT & FORMULIER     */
/* ============================= */
.contact-photo {
  width: 60%;
  max-width: 400px;
  margin: 20px auto;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.contact-photo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* ============================= */
/*       PHP FORMULIER STYLING   */
/* ============================= */
.les-formulier {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 500px;
  margin: 0 auto 40px auto;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.les-formulier h2 {
  color: var(--bruin);
  margin-bottom: 20px;
  text-align: center;
  font-size: 26px;
}

.les-formulier label {
  font-weight: 600;
  color: var(--bruin);
  margin-bottom: 5px;
  display: block;
  text-align: left;
}

.les-formulier input,
.les-formulier select,
.les-formulier textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
  transition: 0.3s;
}

.les-formulier input:focus,
.les-formulier select:focus,
.les-formulier textarea:focus {
  outline: none;
  border-color: var(--groen);
  box-shadow: 0 0 8px rgba(92,123,73,0.3);
}

.les-formulier textarea {
  min-height: 100px;
  resize: vertical;
}

.les-formulier button {
  background: var(--accent);
  color: var(--achtergrond);
  font-weight: 600;
  padding: 14px 28px;
  border: 2px solid var(--bruin);
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 18px;
}

.les-formulier button:hover {
  background: #C3A87A;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.les-formulier .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.les-formulier .form-row > div {
  flex: 1 1 45%;
}

/* ============================= */
/*     BOEKING BEVESTIGING       */
/* ============================= */
.container-bevestiging {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px 25px;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.container-bevestiging h2 {
  color: var(--groen);
  font-size: 28px;
  margin-bottom: 20px;
}

.container-bevestiging p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--bruin);
  margin-bottom: 30px;
}

.container-bevestiging .btn {
  background: var(--accent);
  color: var(--achtergrond);
  font-weight: 600;
  padding: 14px 28px;
  border: 2px solid var(--bruin);
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.container-bevestiging .btn:hover {
  background: #C3A87A;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.container-bevestiging .icon-success {
  font-size: 60px;
  color: var(--groen);
  margin-bottom: 20px;
}

/* ============================= */
/*   GEBOEKTPAGINA – EXTRA STYLE */
/* ============================= */
.bevestigingsblok {
  background: var(--light-gray);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  text-align: left;
  max-width: 500px;
  margin: 25px auto 40px auto;
  border: 2px solid var(--accent);
  animation: fadeIn 1s ease-in-out;
}

.bevestigingsblok p {
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  color: var(--bruin);
}

.bevestigingsblok p:last-child {
  border-bottom: none;
}

.bevestigingsblok span {
  font-weight: bold;
  color: var(--groen);
}

.success-icon {
  font-size: 70px;
  color: var(--groen);
  margin-bottom: 20px;
  animation: popIn 0.7s ease-out;
}

.button-terug {
  display: inline-block;
  background: var(--accent);
  color: var(--achtergrond);
  padding: 14px 32px;
  font-size: 20px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid var(--bruin);
  transition: 0.3s;
  font-weight: 600;
}

.button-terug:hover {
  background: #C3A87A;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* ============================= */
/*          ANIMATIES            */
/* ============================= */
@keyframes floatText {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@keyframes floatLogo {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ============================= */
/*          RESPONSIVE           */
/* ============================= */
@media (max-width: 600px) {
  .hero { padding: 60px 12px; }
  .hero h1 { font-size: 32px; }
  .card { width: 90%; }
  table { font-size: 14px; }
  .social-links { flex-direction: column; gap: 10px; }
  .les-formulier { padding: 20px; }
  .les-formulier .form-row { flex-direction: column; }
  .les-formulier .form-row > div { flex: 1 1 100%; }
  .container-bevestiging { padding: 20px; }
  .container-bevestiging h2 { font-size: 24px; }
  .container-bevestiging p { font-size: 16px; }
  #breath-circle { width: 90px; height: 90px; }
  #breath-text { font-size: 20px; }
  #tip { font-size: 14px; max-width: 90%; }
}
/* ============================= */
/*      ADEMHALINGS CIRKEL       */
/* ============================= */
#breath-container {
    margin: 60px 0;
    text-align: center;
}

#breath-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto;
    background: linear-gradient(135deg, #A88C5E, #5C7B49);
    transition: width 4s ease, height 4s ease, background 4s ease, box-shadow 4s ease;
    box-shadow: 0 0 25px rgba(92,123,73,0.4);
}

/* ============================= */
/*       ADEMHALING TEKST        */
/* ============================= */
#breath-text {
    margin-top: 25px;
    font-size: 24px;
    font-weight: bold;
    color: #4B2E2A;
    animation: floatText 3s ease-in-out infinite alternate;
}

@keyframes floatText {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* ============================= */
/*               TIP             */
/* ============================= */
#tip {
    font-style: italic;
    font-size: 16px;
    max-width: 500px;
    margin: 30px auto;
    color: #496139;
    opacity: 0.8;
}

/* ============================= */
/*          RESPONSIVE           */
/* ============================= */
@media (max-width: 600px) {
    #breath-circle {
        width: 90px;
        height: 90px;
    }
    #breath-text {
        font-size: 20px;
    }
    #tip {
        font-size: 14px;
        max-width: 90%;
    }
}

