:root {
  --brand-pink: #ff007f;
  --brand-orange: #ff8c00;
  --brand-light: #fefefe;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.4;
  background: black;
  color: var(--brand-light);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
/* Main navigation menu */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  background: rgba(0,0,0,0.7);
  padding: 12px;
  position: sticky;   /* stays on top when scrolling */
  top: 0;
  z-index: 1000;
}

.main-nav a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #4ad5ff;
  text-decoration: underline;
}


.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 440px;
  text-align: center;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-orange));
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.cta-button {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-orange));
  color: var(--brand-light);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.learn-more-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--brand-light);
  font-size: 0.95rem;
  opacity: 0.8;
  text-decoration: underline;
}
.learn-more-link:hover {
  opacity: 1;
}

.footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .video-background {
    display: none;
  }
  .hero {
    background: url('../img/picture.jpg') center/cover no-repeat;
  }
}

/* SEO content section (used on info page) */
.seo-text {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  line-height: 1.6;
}

.seo-text h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-orange));
  -webkit-background-clip: text;
  color: transparent;
}

.seo-text h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--brand-light);
}

.seo-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

.seo-text ul {
  margin: 1rem 0 2rem;
  padding-left: 1.5rem;
}

.seo-text li {
  margin-bottom: 0.5rem;
}

.faq {
  margin-top: 2rem;
}

.faq h3 {
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq p {
  display: none;
  padding: 0.5rem 0 1rem;
}

.faq h3.active + p {
  display: block;
}