/* 🌑 Algemene stijl */
html, body {
  margin: 0;
  padding: 0;
  background-color: black;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  color: white;
  height: 100%;
}

/* 🎨 Kleuren & branding */
:root {
  --tube-black: #000;
  --tube-gold: #f4b73e;
  --tube-pink: #ff004c;
  --tube-orange: #ff9b00;
  --tube-glow: 0 0 14px rgba(255, 155, 0, 0.45);
}

/* 🟢 Overlay (Tap to Start) */
#overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999;
  flex-direction: column;
  text-align: center;
  animation: fadeIn 1.2s ease-in-out;
}

.overlay-content h1 {
  font-size: 3rem;
  letter-spacing: 4px;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
}

.overlay-content p {
  font-size: 1.2rem;
  margin-top: 10px;
  opacity: 0.8;
}

.tap-icon {
  font-size: 2rem;
  margin-top: 20px;
  opacity: 0.7;
  animation: pulse 1.5s infinite ease-in-out;
}

/* 🌀 Progress bar */
.progress {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.hidden { display: none; }

.progress-container {
  width: 70%;
  max-width: 400px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 20px;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--tube-pink), var(--tube-orange));
  transition: width 1.2s ease;
}

.loading-text {
  font-size: 1rem;
  opacity: 0.7;
}

/* 🎬 Video achtergrond */
.video-wrapper {
  position: fixed;
  inset: 0;
  z-index: 10;
  overflow: hidden;
}

#intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: black;
}

/* 🌐 Social Media Links (coming soon page) */
.social-links {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  z-index: 50;
  animation: fadeInUp 1.4s ease forwards;
}

.social-links a {
  font-size: 1.9rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.25));
  color: white;
}

.social-links a:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  color: var(--tube-pink);
}

/* 🖼️ Logo (gedeeld gebruik voor social page) */
.logo {
  width: 280px;
  max-width: 80vw;
  height: auto;
  margin-bottom: 50px;
  opacity: 0.95;
  transition: all 0.3s ease;
  animation: fadeIn 1.5s ease-in-out;
}

.logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* 🔸 Social bar (centrale versie voor /social) */
.social-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  animation: fadeInUp 1.6s ease forwards;
}

.social-bar a {
  text-decoration: none;
  font-size: 28px;
  color: #fff;
  opacity: 0.85;
  transition: all 0.3s ease;
}
.social-bar a:hover {
  opacity: 1;
  color: var(--tube-gold);
  transform: scale(1.15);
  filter: drop-shadow(var(--tube-glow));
}

/* ⚙️ Animaties */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🧩 Utility classes */
.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fade-in {
  animation: fadeIn 1.2s ease-in-out;
}

.hidden { display: none; }

/* 📱 Responsiveness */
@media (max-width: 600px) {
  .overlay-content h1 { font-size: 2.2rem; }
  .tap-icon { font-size: 1.6rem; }
  .social-links { bottom: 16px; gap: 14px; }
  .social-links a { font-size: 1.4rem; }

  .social-bar {
    gap: 20px;
    flex-wrap: wrap;
  }
  .social-bar a {
    font-size: 24px;
  }
  .logo {
    width: 110px;
    margin-bottom: 40px;
  }
}

/* =========================================
   🌐 SOCIAL PAGE (centrering + animaties)
   ========================================= */
body.tube-social {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #000;
  font-family: 'Helvetica Neue', sans-serif;
  color: #fff;
  text-align: center;
}

/* Wrapper zodat alles mooi in het midden staat */
.social-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Tekst */
.intro-text {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  opacity: 0.9;
  margin-bottom: 50px;
  line-height: 1.6;
  animation: fadeIn 1.8s ease-in-out, floatText 6s ease-in-out infinite;
}

/* Tagline (Less movement. More meaning 🌱) */
.intro-text span.tagline {
  display: block;
  font-size: 1.1rem;
  margin-top: 8px;
  color: #f4b73e;
  font-weight: 500;
  letter-spacing: 0.6px;
  animation: none; /* 🌱 geen beweging meer */
}

/* Social bar */
.social-bar {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.6s ease forwards;
}

/* Icons */
.social-bar a {
  text-decoration: none;
  font-size: 32px;
  color: #fff;
  opacity: 0.9;
  position: relative;
  transition: all 0.3s ease;
}
.social-bar a:hover {
  transform: scale(1.15);
  opacity: 1;
}

/* Gouden lijn bij hover */
.social-bar a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #f4b73e;
  transition: width 0.3s ease;
  margin-top: 4px;
}
.social-bar a:hover::after { width: 100%; }

/* Hoverkleur per merk */
.social-bar a[aria-label="LinkedIn"]:hover { color: #0077b5; }
.social-bar a[aria-label="X"]:hover { color: #1da1f2; }
.social-bar a[aria-label="Facebook"]:hover { color: #1877f2; }
.social-bar a[aria-label="Instagram"]:hover { color: #e4405f; }
.social-bar a[aria-label="TikTok"]:hover { color: #69c9d0; }
.social-bar a[aria-label="YouTube"]:hover { color: #ff0000; }
.social-bar a[aria-label="Snapchat"]:hover { color: #fffc00; }
.social-bar a[aria-label="Pinterest"]:hover { color: #bd081c; }

/* 🌱 Animaties */
@keyframes growSeed {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}
@keyframes floatText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

