/* forside.css - Ren og koncentreret version */

.forside__hero {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.78)), 
              url('https://udstyrtilfest.dk/wp-content/uploads/2026/01/karussel.jpg.webp');
  background-size: cover;
  background-position: center;
  height: 88vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.forside__hero h1 {
  font-size: 5rem;
  font-weight: 900;
  color: var(--neon-green);
  text-shadow: 0 0 30px #00ff9f,
               0 0 60px #00ff9f;
  margin-bottom: 20px;
}

.forside__hero .hero-subtitle {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.forside__hero .hero-sub {
  font-size: 1.35rem;
  margin-bottom: 40px;
}

/* Highlight grid - de 4 billeder øverst */
.forside__highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 80px 20px;
}

.forside__highlight-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
}
.forside__highlight-card:hover {
  transform: scale(1.04);
  box-shadow: 0 0 35px rgba(255,0,204,0.5);
}
.forside__highlight-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.forside__highlight-card .highlight-text {
  padding: 22px;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--neon-pink);
}

/* Nederste grid */
.forside__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  padding: 60px 20px;
}
.forside__card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
}
.forside__card:hover {
  transform: translateY(-12px);
}
.forside__card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.forside__card .card-body {
  padding: 25px;
}
.forside__card h3 {
  color: var(--neon-pink);
  margin-bottom: 12px;
}
.forside__card p {
  color: #ccc;
}

/* Sikkerhed til overskrifter */
.section-padding h2 {
  text-align: center;
  color: var(--neon-green);
  font-size: 2.8rem;
  margin-bottom: 25px;
}