/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: #faf8f5;
  color: #3d3d3b;
  overflow-x: hidden;
}

/* Page Wrapper */
.page-wrapper {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Background */
.background-container {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.background-image {
  position: absolute;
  inset: 0;
  background-image: url("images/baja-tour-2026-01-achtergrond.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: slow-zoom-pan 30s ease-in-out infinite;
}

@keyframes slow-zoom-pan {
  0% {
    transform: scale(1) translate(0, 0);
  }
  25% {
    transform: scale(1.08) translate(2%, -1%);
  }
  50% {
    transform: scale(1.12) translate(-1%, 2%);
  }
  75% {
    transform: scale(1.08) translate(1%, 1%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

.background-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(250, 248, 245, 0.5), rgba(250, 248, 245, 0.4), rgba(250, 248, 245, 0.6));
}

/* Floating Light Orbs */
.light-orbs {
  position: absolute;
  inset: 0;
}

.light-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  mix-blend-mode: screen;
  pointer-events: none;
}

@keyframes float-1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(120px, -100px) scale(1.3);
    opacity: 0.7;
  }
}

@keyframes float-2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate(-140px, 120px) scale(1.4);
    opacity: 0.75;
  }
}

@keyframes float-3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(100px, 140px) scale(1.25);
    opacity: 0.65;
  }
}

.light-orb-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #ff69b4 0%, transparent 70%);
  top: 10%;
  left: 10%;
  animation: float-1 16s ease-in-out infinite;
}

.light-orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #ffd700 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation: float-2 20s ease-in-out infinite;
  animation-delay: -5s;
}

.light-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ff8c00 0%, transparent 70%);
  bottom: 20%;
  left: 20%;
  animation: float-3 14s ease-in-out infinite;
  animation-delay: -3s;
}

.light-orb-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ff1493 0%, transparent 70%);
  top: 30%;
  right: 30%;
  animation: float-1 22s ease-in-out infinite;
  animation-delay: -8s;
}

.light-orb-5 {
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, #ffb6c1 0%, transparent 70%);
  bottom: 10%;
  right: 15%;
  animation: float-2 18s ease-in-out infinite;
  animation-delay: -10s;
}

.light-orb-6 {
  width: 370px;
  height: 370px;
  background: radial-gradient(circle, #ffa500 0%, transparent 70%);
  top: 60%;
  left: 40%;
  animation: float-3 16s ease-in-out infinite;
  animation-delay: -6s;
}

/* Content Wrapper */
.content-wrapper {
  position: relative;
  z-index: 10;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Section */
.hero-section {
  padding: 3rem 0;
  text-align: center;
}

.logo-container {
  max-width: 32rem;
  margin: 0 auto 2rem;
  animation: fade-in 0.8s ease-out;
}

.logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.3));
}

.main-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #3d3d3b;
  margin-bottom: 2rem;
  animation: fade-in 0.8s ease-out 0.2s both;
}

.date-text {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  animation: fade-in 0.8s ease-out 0.2s both;
}

.time-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(61, 61, 59, 0.9);
  margin-bottom: 2rem;
  animation: fade-in 0.8s ease-out 0.2s both;
}

.cta-container {
  animation: fade-in 0.8s ease-out 0.4s both;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f6738b;
  color: white;
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(246, 115, 139, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  box-shadow: 0 15px 35px rgba(246, 115, 139, 0.5);
  transform: scale(1.05);
}

.ticket-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hoe werkt het? sectie */
/* How It Works Section */
.how-it-works-section {
  padding: 3rem 0;
}

.how-it-works-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.step-card {
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 2px solid rgba(230, 225, 217, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  animation: fade-in 0.6s ease-out both;
}

.step-card:nth-child(1) {
  animation-delay: 0.1s;
}

.step-card:nth-child(2) {
  animation-delay: 0.2s;
}

.step-card:nth-child(3) {
  animation-delay: 0.3s;
}

.step-card:nth-child(4) {
  animation-delay: 0.4s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: #f6738b;
}

.step-number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #f6738b, #ff8fa3);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(246, 115, 139, 0.3);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3d3d3b;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.step-description {
  font-size: 1rem;
  color: rgba(61, 61, 59, 0.8);
  line-height: 1.6;
}

/* Tickets Section */
.tickets-section {
  padding: 3rem 0;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #3d3d3b;
}

.section-description {
  text-align: center;
  color: rgba(61, 61, 59, 0.8);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.ticket-card {
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem;
  border-radius: 1rem;
  border: 2px solid rgba(230, 225, 217, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.iframe-container {
  width: 100%;
  height: 750px;
}

.ticket-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.5rem;
}

/* Venues Section */
.venues-section {
  padding: 3rem 0;
}

.venues-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

/* Kroegen als gewone tekst zonder hover effect */
.venue-item {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(61, 61, 59, 0.9);
  animation: fade-in 0.6s ease-out both;
}

/* Bolletjes als separator */
.venue-separator {
  font-size: 1.25rem;
  color: #f6738b;
  font-weight: 700;
}

/* Footer */
.footer {
  padding: 3rem 0;
  position: relative;
}

.sponsor-logo {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.sponsor-logo.visible {
  opacity: 1;
}

.sponsor-logo a {
  display: block;
  transition: opacity 0.3s ease;
}

.sponsor-logo a:hover {
  opacity: 0.8;
}

.sponsor-logo img {
  width: 150px;
  height: auto;
  margin-bottom: -15px;
  animation: bounce-subtle 3s ease-in-out infinite;
}

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

.footer-text {
  text-align: center;
}

.footer-text p {
  color: rgba(61, 61, 59, 0.8);
  font-size: 0.875rem;
}

.footer-text a {
  color: rgba(61, 61, 59, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-text a:hover {
  color: #f6738b;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-section {
    padding: 5rem 0;
  }

  .logo-container {
    max-width: 42rem;
  }

  .main-title {
    font-size: 3rem;
  }

  .date-text {
    font-size: 3.75rem;
  }

  .time-text {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  /* Toegevoegd: Responsive styling voor "Hoe werkt het?" sectie */
  .how-it-works-section {
    padding: 4rem 0;
  }

  .how-it-works-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .step-title {
    font-size: 1.375rem;
  }

  .tickets-section {
    padding: 4rem 0;
  }

  .venues-section {
    padding: 4rem 0;
  }

  .iframe-container {
    height: 850px;
  }

  .venue-item {
    font-size: 1.5rem;
  }

  /* Separator op desktop ook groter */
  .venue-separator {
    font-size: 1.5rem;
  }

  .venues-list {
    gap: 1.5rem;
  }

  .sponsor-logo {
    opacity: 1;
  }

  .sponsor-logo img {
    width: 200px;
    margin-bottom: -30px;
  }
}
