:root {
  --aqua: #6ffaf0;
  --pink: #689fe7;
  --purple: #7b5cff;
  --dark: #0f0f1a;
  --black: #0b0b0b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(180deg, #12002b, #000);
  color: var(--white);
}

/* NAVBAR */
.top-nav {
  width: 100%;
  background: var(--aqua);
  padding: 14px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: #000;
  color: var(--aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.logo-text {
  font-size: 18px;
  color: #000;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #003333;
  font-weight: 500;
  font-size: 16px;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* BUTTON */
.nav-button {
  background: var(--black);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* HERO VIDEO */
.video-hero {
  position: relative;
  min-height: calc(100vh - 70px);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.95)
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 10%;
}

/* HERO */
.hero {
  min-height: calc(100vh - 70px);
  background: radial-gradient(circle at top, var(--purple), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: var(--pink);
}

.hero p {
  margin: 1rem 0;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 2rem;
}

/* BUTTONS */
.btn {
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  margin: 0 8px;
  font-weight: bold;
}

.primary {
  background: var(--pink);
  color: #000;
}

.secondary {
  border: 2px solid var(--pink);
  color: var(--pink);
}

/* SECTIONS */
.section {
  padding: 80px 10%;
  text-align: center;
}

.events {
  background: #0b0b1f;
}

/* EVENT CARDS */
.event-card {
  background: linear-gradient(135deg, #1a1a3d, #0e0e2b);
  padding: 24px;
  border-radius: 20px;
  margin: 20px auto;
  max-width: 420px;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: scale(1.05);
}

/* EXPERIENCE */
.experience {
  background: #000;
  padding: 100px 8%;
  color: #fff;
}

.experience-header {
  max-width: 900px;
  margin-bottom: 60px;
}

.experience-header h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
}

.experience-header p {
  font-size: 1.1rem;
  max-width: 700px;
  color: #b8b8b8;
}

/* ABOUT SECTION */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Imagen animada */
.about-image img {
  width: 100%;
  max-width: 380px;
  opacity: 0;
  transform: translateX(-80px);
  transition: none; /* importante */
  will-change: transform, opacity;
}

.about-image.animate img {
  opacity: 1;
  transform: translateX(0);
}

/* Texto */
.about-text {
  text-align: left;
}

/* EXPERIENCE CARDS */
.experience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.exp-card {
  background: linear-gradient(180deg, #111, #050505);
  border-radius: 24px;
  padding: 28px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 20px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 139, 220, 0.25),
    0 30px 60px rgba(255, 139, 220, 0.15);
}

.exp-icon {
  font-size: 1.6rem;
  color: var(--aqua);
  margin-bottom: 18px;
}

.exp-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.exp-card p {
  font-size: 0.95rem;
  color: #cfcfcf;
  line-height: 1.5;
}

/* GALERÍA */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gallery-item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.gallery-video:hover {
  transform: scale(1.04);
}

.gallery-title {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.85;
  padding-left: 6px;
}

/* FOOTER */
.footer {
  padding: 40px;
  text-align: center;
  background: #050510;
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}
