body {
  font-family: "Inter", Arial, sans-serif;
  max-width: 1280px;
  margin: 10px auto;
  line-height: 1.6;
  background-image: url("assets/bg/bg.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  background-attachment: fixed;
  position: relative;
}

.content {
  padding: 0 20px;
  margin-bottom: 100px;
}


/* === MENU BALK === */
/* Menu Desktop */
.desktop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  margin: 10px;
  border-radius: 50px;
  background-color: #D2B385;
  gap: 12px;
  border: 2px solid #3e2f2f;
  height: 55px;
  max-width: 1280px;

  position: sticky;
  top: 10px;
  z-index: 1000;
}

/* Logo */
.logo {
  height: 60px;
}

/* Titel */
.title {
  font-size: 23px;
  color: #3e2f2f;
  margin: 0;
  padding: 0;
  line-height: 1.05;
}

.subtitle {
  font-size: 12px;
  opacity: 0.7;
  font-weight: 400;
  font-style: italic;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.logo-titel {
  display: flex;
  align-items: center;
}

.title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  line-height: 1;
}

.header-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.subtitle-group {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .no-mobile {
    display: none;
  }
}

.logo-titel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.segment {
  display: inline-flex;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 40px;
}

.segment-button {
  width: 40px;
  padding: 10px 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: 0.2s;
}

.segment-button.active {
  background: #3e2f2f;
  color: #D2B385;
}

.segment-button:hover:not(.active) {
  background: #E8D2A8;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 20px;
  border-radius: 24px;

  background: rgba(210, 179, 133, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 10px 30px rgba(62, 47, 47, 0.2);

  max-width: 400px;
  width: 100%;
  justify-self: center;

  gap: 5px;
  color: #3e2f2f;
  transition: transform 0.3s ease;
}

.hero-text h1,
.hero-text p {
  margin: 0;
  line-height: 1.3;
}

.hero-text h1::after {
  content: "";
  display: block;

  width: 100px;
  height: 1px;

  background: #3e2f2f;
  margin: 8px auto 8px;
  border-radius: 2px;
}

.hero-text h1 {
  position: relative;
  margin: 0;
}

.hero-text p {
  white-space: pre-line;
}

.hero-text:hover {
  transform: translateY(-4px);
}

.importante {
  font-style: italic;
  font-weight: bold;
  font-size: 14px;
}

.usarla-text {
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;

  padding: 20px;
  border-radius: 12px;

  background: rgba(210, 179, 133, 0.60);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 10px 30px rgba(62, 47, 47, 0.2);

  margin-top: 40px;
  max-width: 1200px;
  width: 100%;
  justify-self: center;

  gap: 5px;
  color: #3e2f2f;
  transition: transform 0.3s ease;
}

.usarla-text h1,
.usarla-text p {
  margin: 0;
  line-height: 1.3;
  align-items: start;
}

.usarla-text h1 {
  position: relative;
  margin: 0;
}

.usarla-text p {
  white-space: pre-line;
}

.usarla-text:hover {
  transform: translateY(-4px);
}

section {
  scroll-margin-top: 100px;
}

.carousel {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.carousel img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel img.active {
  opacity: 1;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.cta-button {
  margin-top: 10px;
  padding: 10px;
  background: #3e2f2f;
  color: #D2B385;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-text,
  .usarla-text {
    width: 90%;
    max-width: 350px;
  }

  .carousel {
    width: 100%;
    max-width: 350px;
  }

}

.video-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px;
}

.video-grid>* {
  min-width: 0;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr !important;
  }
}


/* YouTube card */
.yt-lite {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #3e2f2f;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
}

/* thumbnail + iframe moeten exact vullen */
.yt-lite img,
.yt-lite iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* thumbnail zoom effect */
.yt-lite img {
  object-fit: cover;
}

/* play button */
.yt-lite::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 50px;
  color: #3e2f2f;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 16px 24px;
  background: #3e2f2f;
  color: #D2B385;

  z-index: 9999;
}

.back-to-top {
  position: absolute;
  right: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #D2B385;
}

.back-to-top:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.back-to-top,
.back-to-top:link,
.back-to-top:visited {
  color: #D2B385;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}