* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0b0b0b;
  color: white;
  overflow-x: hidden;
}

/* NAVBAR */

.navbar {
  width: 100%;
  padding: 18px 8%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;

  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255, 0, 102, 0.15);

  z-index: 1000;

  transition: 0.3s;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: white;
  position: relative;
}

.logo::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;

  width: 40%;
  height: 2px;

  background: #ff0066;
  box-shadow: 0 0 10px #ff0066;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);

  font-weight: 500;
  font-size: 0.95rem;

  position: relative;
  transition: 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: #ff0066;
  box-shadow: 0 0 10px #ff0066;

  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HERO */

.hero {
  height: 100vh;

  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 20%, rgba(255, 0, 102, 0.25), transparent 35%),
    radial-gradient(circle at 80% 40%, rgba(255, 0, 102, 0.18), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,0.04), transparent 40%),
    #0b0b0b;
}

.hero::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  background: #ff0066;

  filter: blur(200px);
  opacity: 0.15;

  animation: floatGlow 10s ease-in-out infinite;
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      rgba(255,255,255,0.02) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.02) 1px,
      transparent 1px
    );

  background-size: 50px 50px;
}

@keyframes floatGlow {

  0%,100% {
    transform: translate(0,0);
  }

  50% {
    transform: translate(100px,-60px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;

  width: 90%;
  max-width: 1100px;
}

.hero-bg-text {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  font-size: clamp(7rem, 18vw, 16rem);

  font-weight: 900;

  color: transparent;

  -webkit-text-stroke: 1px rgba(255,255,255,0.05);

  white-space: nowrap;

  pointer-events: none;
  user-select: none;
}

.hero h1 {
  font-size: clamp(4rem, 10vw, 8rem);

  font-weight: 800;

  letter-spacing: 8px;

  text-transform: uppercase;

  line-height: 1;

  margin-bottom: 25px;

  text-shadow:
    0 0 20px rgba(255,0,102,0.4),
    0 0 60px rgba(255,0,102,0.2);
}

.hero p {
  max-width: 700px;

  margin: 0 auto 40px;

  font-size: 1.2rem;

  line-height: 1.8;

  color: rgba(255,255,255,0.75);
}

.hero-stats {
  margin-top: 60px;

  display: flex;
  justify-content: center;
  gap: 80px;
}

.hero-stats div {
  text-align: center;
}

.hero-stats span {
  display: block;

  font-size: 2rem;
  font-weight: 700;

  color: #ff0066;
}

.hero-stats p {
  margin: 6px 0 0;

  font-size: 0.9rem;

  color: #888;
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 15px 35px;

  background: #ff0066;
  color: white;

  text-decoration: none;
  border-radius: 50px;

  transition: 0.3s;
  font-weight: 600;
}

.btn:hover {
  background: #ff3385;
  transform: translateY(-3px);
}

/* EVENTS */

.events {
  padding: 100px 8%;
}

.events h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
}

.event-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.event-card {
  background: #161616;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.clickable-event {
  cursor: pointer;
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.event-info {
  padding: 25px;
}

.event-info h3 {
  margin-bottom: 10px;
}

.event-info p {
  margin-bottom: 20px;
  color: #b5b5b5;
}

.small-btn {
  text-decoration: none;
  color: white;
  background: #ff0066;

  padding: 10px 20px;
  border-radius: 30px;

  display: inline-block;
}

.small-btn:hover {
  background: #ff3385;
}

/* GALLERY */

.gallery {
  padding: 100px 8%;
  background: #111;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.3s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* LIGHTBOX */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.92);

  justify-content: center;
  align-items: center;

  z-index: 9999;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;

  border-radius: 15px;

  animation: zoomIn 0.25s ease;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;

  color: white;
  font-size: 45px;

  cursor: pointer;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* COLLAB */

.collab {
  padding: 120px 8%;
  text-align: center;
}

.collab h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.collab p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;

  color: #c4c4c4;
  line-height: 1.7;
}

/* CONTACT */

.contact {
  padding: 100px 8%;
  background: #111;
}

.contact h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
}

form {
  max-width: 700px;
  margin: auto;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

input,
textarea {
  padding: 18px;

  background: #1c1c1c;
  border: none;
  border-radius: 10px;

  color: white;
  font-size: 1rem;
}

textarea {
  height: 180px;
  resize: none;
}

button {
  padding: 16px;

  border: none;
  border-radius: 50px;

  background: #ff0066;
  color: white;

  font-size: 1rem;
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #ff3385;
}

/* FOOTER */

footer {
  padding: 30px;
  text-align: center;
  background: black;
  color: #888;
}

/* MOBILE */

@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 3rem;
    letter-spacing: 3px;
  }

  .hero-bg-text {
    font-size: 6rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 25px;
    flex-wrap: wrap;
  }

  .hero-stats span {
    font-size: 1.4rem;
  }

  .gallery-grid img {
    height: 350px;
  }

  .event-card img {
    height: 300px;
  }
}