/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../../images/attracties/Fata_Morgana_2.png");
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  animation: fadeInUp 1s ease forwards;
}

.hero-logo {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(183, 150, 105, 0.6));
  margin-bottom: 8px;
}

.hero-title {
  font-family: "WonderCraft", serif;
  font-size: 4.5em;
  color: white;
  margin: 0;
  letter-spacing: 3px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: "Alegreya", serif;
  font-size: 1.4em;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 560px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--color-gold-mid), var(--color-gold));
  color: var(--color-dark);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1em;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(183, 150, 105, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(183, 150, 105, 0.5);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1em;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6em;
  animation: bounce 2s ease-in-out infinite;
  cursor: default;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ====== INTRO SECTIE ====== */
.intro-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 90px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== SERVER STATISTIEKEN ====== */
.server-stats {
  background: linear-gradient(135deg, var(--color-dark), #222);
  border-top: 3px solid var(--color-gold);
  border-bottom: 3px solid var(--color-gold);
  padding: 60px 40px;
}

.server-stats-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1 1 180px;
  padding: 20px 30px;
  border-right: 1px solid rgba(183, 150, 105, 0.25);
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  font-family: "WonderCraft", serif;
  font-size: 2.8em;
  color: var(--color-gold-light);
  line-height: 1;
}

.stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.85em;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ====== UITGELICHTE ATTRACTIES ====== */
.featured-attractions {
  padding: 90px 40px;
  text-align: center;
  background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-warm));
}

.featured-attractions h2 {
  font-family: "WonderCraft", serif;
  font-size: 2.4em;
  color: var(--color-gold);
  margin-bottom: 0;
}

.attraction-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 40px;
}

.attraction-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 300px;
  display: block;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.attraction-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.attraction-card:hover img {
  transform: scale(1.07);
}

.attraction-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.attraction-card-overlay span {
  font-family: "WonderCraft", serif;
  font-size: 1.5em;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold-mid), var(--color-gold));
  color: var(--color-dark);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1em;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(183, 150, 105, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(183, 150, 105, 0.5);
}

/* ====== JOIN CTA ====== */
.join-cta {
  background: linear-gradient(135deg, #2a1f0f, #1c1308);
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.join-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), #d3b47b, var(--color-gold));
}

.join-cta h2 {
  font-family: "WonderCraft", serif;
  font-size: 2.5em;
  color: var(--color-gold-light);
  margin: 0 0 12px;
}

.join-cta > p {
  font-family: "Alegreya", serif;
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 28px;
}

.server-ip-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(183, 150, 105, 0.4);
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 16px;
}

.server-ip-box span {
  font-family: "Poppins", sans-serif;
  font-size: 1.4em;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}

.server-ip-box button {
  background: var(--color-gold);
  color: var(--color-dark);
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.server-ip-box button:hover {
  background: var(--color-gold-light);
  transform: scale(1.03);
}

.server-ip-box button.copied {
  background: #4caf50;
  color: white;
}

.server-version {
  font-family: "Poppins", sans-serif;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ====== SOCIALE MEDIA SECTIE ====== */
.social-section {
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(to bottom, var(--color-bg-warm), var(--color-bg));
}

.social-section h2 {
  font-family: "WonderCraft", serif;
  font-size: 2em;
  color: var(--color-gold);
  margin-bottom: 0;
}

.social-section p {
  font-family: "Alegreya", serif;
  font-size: 1.15em;
  color: var(--color-text);
  max-width: 520px;
  margin: 16px auto 32px;
  line-height: 1.6;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .attraction-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8em;
  }

  .hero-subtitle {
    font-size: 1.1em;
  }

  .hero-logo {
    width: 90px;
  }

  .server-stats-inner {
    gap: 0;
  }

  .stat {
    flex: 1 1 140px;
    padding: 16px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(183, 150, 105, 0.2);
  }

  .stat:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: 2.2em;
  }

  .attraction-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .featured-attractions {
    padding: 60px 20px;
  }

  .join-cta {
    padding: 60px 20px;
  }

  .server-ip-box {
    flex-direction: column;
    gap: 12px;
  }

  .server-ip-box span {
    font-size: 1.15em;
  }

  .join-cta h2 {
    font-size: 1.9em;
  }

  .social-section {
    padding: 60px 20px;
  }
}
