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

html {
  scroll-behavior: smooth;
}

body {
  color: white;

  background: linear-gradient(
    135deg,
    #1f005c,
    #5b0060,
    #870160,
    #ac255e,
    #ca485c,
    #e16b5c,
    #f39060
  );
  padding-bottom: 60px;

  min-height: 100vh;
}

/* HEADER */

header {
  position: sticky;
  top: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 30px 6%;

  background: linear-gradient(90deg, #d62a8a, #6c6bb4);

  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  position: absolute;
  height: 170px;
  margin-left: -10px;
  filter: drop-shadow(0 0 15px #ff2e79);
  margin-top: 100px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

nav a:hover {
  color: #00fff7;
  text-shadow: 0 0 10px #00fff7;
}

/* SECTIONS */

.section {
  padding: 120px 8%;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 70px;

  text-shadow: 0 0 20px #ff2e79;
}

.hero-text p {
  margin-top: 20px;
  color: #eee;
  line-height: 1.6;
}

.buttons {
  margin-top: 30px;
}

.btn-primary {
  background: #ff2e79;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  color: white;
  cursor: pointer;
}

.btn-secondary {
  background: #3a6bff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  color: white;
  margin-left: 10px;
  cursor: pointer;
}

/* SLIDER */

.slider {
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.slider img {
  width: 100%;
  height: 720px;
  object-fit: cover;

  border-radius: 20px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ABOUT */

.about {
  text-align: center;
}

.about h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

/* VIDEOS */

.videos {
  text-align: center;
}

.videos h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

.video-player iframe {
  width: 90%;
  max-width: 900px;
  height: 500px;

  border-radius: 15px;
}

.video-list {
  margin-top: 30px;
}

.video-list button {
  background: #ff2e79;
  border: none;
  padding: 10px 20px;
  margin: 10px;
  color: white;
  cursor: pointer;
  border-radius: 20px;
}

/* CONTACT */

.contact {
  text-align: center;
}

.contact h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

/* FOOTER */

footer {
  position: fixed;

  bottom: 0;
  left: 0;

  width: 100%;

  background: rgba(0, 0, 0, 0.6);

  color: white;

  text-align: center;

  padding: 12px;

  font-size: 14px;

  backdrop-filter: blur(8px);

  z-index: 999;
}

/* MOBILE */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .slider img {
    height: 500px;
  }

  nav ul {
    gap: 15px;
  }

  .logo img {
    height: 70px;
    margin-top: 60px;
  }
  nav a {
    font-size: 15px;
  }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .slider img {
    height: 400px;
  }

  nav ul {
    gap: 15px;
  }

  .logo img {
    height: 70px;
    margin-top: 60px;
  }
  nav a {
    font-size: 15px;
  }
}
@media (max-width: 450px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 25px;
  }

  .slider img {
    height: 300px;
  }

  nav ul {
    gap: 15px;
  }

  .logo img {
    height: 70px;
    margin-top: 60px;
  }
  nav a {
    font-size: 15px;
  }
  .hero-text {
    max-width: 500px;
    margin: auto;
  }
  .buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .video-player {
    margin-top: 25px;
  }
  .video-player iframe {
    width: 90%;
    max-width: 900px;
    height: 500px;
  }
  .video-player iframe {
    width: 100%;
    max-width: 600px;
    height: 60vw;
    max-height: 400px;
  }
  .video-list {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .section {
    padding: 80px 6%;
  }
}
@media (max-width: 380px) {
  header {
    padding: 18px 5%;
  }

  nav ul {
    gap: 10px;
  }

  nav a {
    font-size: 14px;
  }

  .logo img {
    height: 60px;
    margin-top: 55px;
  }

  .section {
    padding: 70px 6%;
  }

  .hero-text h1 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .buttons {
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 18px;
    font-size: 14px;
  }

  .slider img {
    height: 260px;
  }

  .video-player iframe {
    height: 220px;
  }
}
