/* ====== BANNER ====== */
.attracties-banner {
  background-image: url("../../images/attracties/symbolica.jpg");
  background-position: center 40%;
}

/* ====== INTRO ====== */
.attracties-intro {
  text-align: center;
  padding: 52px 40px 10px;
  max-width: 700px;
  margin: 0 auto;
}

.attracties-intro p {
  font-family: "Alegreya", serif;
  font-size: 1.2em;
  color: #3d2c1c;
  line-height: 1.7;
  margin: 0;
}

/* ====== SCROLL BUTTONS ====== */
.scroll-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 24px 20px 8px;
  margin-bottom: 8px;
}

.scroll-link {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gold);
  background: none;
  border: none;
  border-radius: 24px;
  padding: 8px 18px;
  cursor: pointer;
  transition: color 0.2s, text-decoration 0.2s;
  display: inline-block;
  text-decoration: none;
  outline: none;
}

.scroll-link:hover {
  color: #8a6a3a;
  text-decoration: none;
}

.separator {
  color: #bbb;
  padding: 0 4px;
  font-weight: 400;
  user-select: none;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.4rem;
  line-height: 2.2;
}

/* ====== RIJK KOPPEN ====== */
.rijk-kop {
  font-family: "WonderCraft", serif;
  font-size: 2.4rem;
  text-align: center;
  color: var(--color-gold);
  margin: 72px 0 28px;
  position: relative;
}

.rijk-kop::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: var(--color-gold);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* ====== ATTRACTIE KAARTEN ====== */
.attractie-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1150px;
  margin: 0 auto 60px;
  padding: 0 2rem;
}

.nieuwe-attractie-kaart {
  flex: 1 1 calc(33.333% - 2rem);
  max-width: calc(33.333% - 2rem);
  min-width: 270px;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 8px 32px rgba(183, 150, 105, 0.1),
    0 2px 8px rgba(60, 60, 100, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.nieuwe-attractie-kaart:hover {
  transform: translateY(-10px) scale(1.025);
  box-shadow:
    0 16px 48px rgba(183, 150, 105, 0.16),
    0 8px 32px rgba(60, 60, 100, 0.13);
}

.kaart-afbeelding {
  position: relative;
  height: 320px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.kaart-beeld {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.kaart-afbeelding:hover .kaart-beeld {
  transform: scale(1.08);
}

.kaart-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.5rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 80%);
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.subtitel {
  font-family: "Alegreya", serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 4px;
}

.attractie-titel {
  font-family: "Alegreya", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .nieuwe-attractie-kaart {
    flex: 1 1 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
  }

  .kaart-afbeelding {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .attracties-intro {
    padding: 36px 20px 0;
  }

  .rijk-kop {
    font-size: 2rem;
    margin: 56px 0 20px;
  }

  .rijk-kop::after {
    width: 80px;
  }
}

@media (max-width: 600px) {
  .scroll-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5em;
    padding: 20px 16px 8px;
  }

  .scroll-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.8em 0.2em;
    font-size: 0.95em;
    background: #f7f3ea;
    border-radius: 2em;
    border: 1px solid #e0d3b8;
    font-weight: 600;
  }

  .separator {
    display: none;
  }

  .nieuwe-attractie-kaart {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .kaart-afbeelding {
    height: 200px;
  }

  .attractie-titel {
    font-size: 1.1rem;
  }

  .attracties-intro p {
    font-size: 1.05em;
  }
}
