/* ========== GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
}


/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 5%;
  margin-bottom: 100px;
}

.logo img {
  height: 45px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #ff1500;
}

/* ========== HERO SECTION ========== */
.hero-section {
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin-top: 100px;

  
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========== BUTTON STYLING ========== */
.custom-ppv-button {
  max-width: 250px;
  width: 100%;
  display: block;
  margin: 30px auto;
  background-color: rgb(242, 5, 5);
  color: white;
  padding: 16px 48px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}
.container {
  padding-bottom: 100px; /* to prevent content from overlapping footer */
}

/* ========== FOOTER ========== */
.footer {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #000;
  color: white;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.social-icon img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.social-icon img:hover {
  transform: scale(1.2);
}

.footer-credit {
  font-size: 14px;
  color: #ccc;
}


@media (max-width: 1024px) {
   .navbar {
    padding: 20px;
  }

  .menu {
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .logo img {
  height: 20px;
}

  .menu li a {
    font-size: 10px;
  }

  .hero-section {
    height: auto;
    padding: 20px 0;
  }

  .custom-ppv-button {
    font-size: 0.9rem;
    padding: 14px 36px;
    max-width: 220px;
  }

   .footer {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #000;
  color: white;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.social-icon img {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.social-icon img:hover {
  transform: scale(1.2);
}

.footer-credit {
  font-size: 10px;
  color: #ccc;
}
}
/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
   .navbar {
    padding: 20px;
  }

  .menu {
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .logo img {
  height: 20px;
}

  .menu li a {
    font-size: 10px;
  }

  .hero-section {
    height: auto;
    padding: 20px 0;
  }

  .custom-ppv-button {
    font-size: 0.9rem;
    padding: 14px 36px;
    max-width: 220px;
  }

   .footer {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #000;
  color: white;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.social-icon img {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.social-icon img:hover {
  transform: scale(1.2);
}

.footer-credit {
  font-size: 10px;
  color: #ccc;
}
}

@media (max-width: 480px) {
  .logo img {
    height: 45px;
  }

  .custom-ppv-button {
    font-size: 0.85rem;
    padding: 12px 30px;
  }
}
