/* base */
html {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #eeeeee;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1d1d1f;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background-color: #eeeeee;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1d1d1f;
}

* {
  box-sizing: border-box;
}

/* navigatie bar */
nav {
  position: sticky;
  z-index: 1000;
  background-color: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  position: relative;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #6e6e73;
  font-weight: 500;
  transition: 0.2s;
}

nav a:hover,
nav a.active {
  color: #000000;
}

.logo img {
  height: 32px;
  width: 32px;
  display: block;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* index pagina */
.home-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 6rem;
  gap: 3rem;
  min-height: 80vh;
}

.text-card {
  flex: 1;
  max-width: 500px;
}

.text-card h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.text-card p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.photo-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
}

.home-image {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.home-image:hover {
  scale: 1.02;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Kaarten*/
.kaart-container {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  max-width: 100vw;
}

.kaart {
  flex: 1;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #e5e5e7;
  transition: 0.3s ease;
}

.kaart h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.kaart p {
  line-height: 1.6;
}

.kaart:hover {
  transform: translateY(-5px);
  scale: 1.02;
  transition: 0.3s ease;
}

/* lijst */
.kaart ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kaart li {
  margin-bottom: 0.6rem;
}

.kaart li::before {
  content: "• ";
  color: #0071e3;
  font-weight: bold;
}

/* google maps kaart */
.map-wrapper {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
}

.map-wrapper iframe {
  display: block;
}

.kaart {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.kaart-foto {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

/* review pagina */
.review-layout {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-form-container {
  flex: 1;
}

.review-list {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* review formulier */
.input-field {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #e5e5e7;
  border-radius: 10px;
  background-color: #f5f5f7;
  font-family: inherit;
  font-size: 1rem;
  height: 2rem;
}

.textarea {
  height: 120px;
  resize: none;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: #f5f5f7;
  color: rgb(0, 0, 0);
  border: 1px solid #e5e5e7;
  border-radius: 10px;
  font-size: small;
  cursor: pointer;
  transition: 0.2s;
}

.submit-btn:hover {
  background-color: #e8e8e8;
}

/* review */
.review-box {
  padding: 1.5rem 2rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.review-date {
  color: #86868b;
  font-size: 0.9rem;
}

.stars {
  color: #e49f37;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* menu */
.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.bar {
  width: 25px;
  height: 2px;
  background-color: #1d1d1f;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* responsive tablet */
@media (min-width: 601px) and (max-width: 1024px) {
  .kaart-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .kaart-container .kaart:nth-child(2),
  .kaart-container .kaart:nth-child(3) {
    flex: 0 0 calc(50% - 1rem);
    order: 1;
  }


  .kaart-container .kaart:nth-child(1) {
    flex: 0 0 100%;
    order: 2;
  }

  .home-container {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }
}

/* responsive iphone */
@media (max-width: 600px) {
  .home-container {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }

  .photo-wrapper {
    align-items: center;
  }

  .kaart-container {
    flex-direction: column;
    padding: 2rem;
  }

  .review-layout {
    flex-direction: column;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  nav {
    display: flex;
    justify-content: space-between;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
  }

  .menu-checkbox:checked ~ .nav-list {
    right: 0;
  }

  .nav-list li {
    margin: 1.5rem 0;
  }

  .nav-list a {
    font-size: 1.5rem;
    text-decoration: none;
    color: #1d1d1f;
  }
}