
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: #e9e9e9;
      color: #111;
      padding-top: 70px;	
    }

    /* NAVBAR */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      height: 70px;
      background: #000;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      z-index: 1000;
    }

    nav .logo {
      font-weight: bold;
      font-size: 18px;
      color: #ff4d00;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    nav ul li {
      cursor: pointer;
    }

    nav ul li:hover {
      color: #ff4d00;
    }

nav ul li a[href="gallery.php"] {
  color: #ff4757;
  font-weight: bold;
}


nav ul li a {
  color: #ff4d00;
  font-weight: bold;
  text-decoration: none;
}

nav ul li a:hover {
  color: #ff6a2a;
}



    /* HERO SECTION */
    .hero {
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-top: 70px;
      text-align: center;
    }

    .title {
      font-size: 90px;
      font-weight: 900;
      color: #ff4d00;
      text-shadow: 0 0 20px rgba(255, 77, 0, 0.5);
      margin-bottom: 60px;
    }

    /* COUNTDOWN */
    .countdown {
      display: flex;
      gap: 30px;
      margin-bottom: 40px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .box {
      background: #111;
      color: white;
      padding: 40px 30px;
      border-radius: 20px;
      width: 160px;
    }

    .box span {
      font-size: 48px;
      font-weight: bold;
      display: block;
    }

    .box p {
      font-size: 14px;
      margin-top: 10px;
      opacity: 0.7;
    }

    .box.highlight span {
      color: #ff4d00;
    }

    /* BUTTON */
    .btn {
      background: #ff4d00;
      color: black;
      padding: 12px 30px;
      border-radius: 30px;
      border: none;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn:hover {
      background: #ff6a2a;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .title {
        font-size: 50px;
      }

      .box {
        width: 120px;
        padding: 25px;
      }

      .box span {
        font-size: 32px;
      }
    }

/* INFO SECTION */
.info {
  padding: 100px 40px;
  background: #fff;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.info-text {
  flex: 1;
}

.info-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.info-text p {
  font-size: 18px;
  margin-bottom: 15px;
}

.info-image {
  flex: 1;
}

.info-image img {
  width: 100%;
  border-radius: 20px;
}


/* LINEUP */
.lineup {
  padding: 100px 20px;
  background: #f3f3f3;
  text-align: center;
  	
}

.lineup {
  scroll-margin-top: 70px; /* adjust to navbar height */
}

.lineup h2 {
  font-size: 40px;
  margin-bottom: 50px;
}

.cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}

.card {
  min-width: 300px;
  background: #111;
  color: white;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: center;
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card h3 {
  padding: 20px;
}

.card:hover {
  transform: scale(1.05);
}


/* MOBILE */
@media (max-width: 768px) {

  .info-container {
    flex-direction: column;
  }

  .info-text h2 {
    font-size: 28px;
  }

  .info-text p {
    font-size: 16px;
  }

  .cards {
    gap: 10px;
  }

  .card {
    min-width: 85%;
  }
}

html {
  scroll-behavior: smooth;
}

.footer {
  background: #ff4d00;
  color: white;
  padding: 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
}

.fab {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;
  border-radius: 50%;

  background-color: #ff4d00;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;
  font-weight: bold;
  text-decoration: none;

  box-shadow: 0 4px 10px rgba(0,0,0,0.3);

  transition: all 0.2s ease;
  z-index: 999;
}

.fab:hover {
  background-color: #ff6b81;
  transform: scale(1.1);
}

.hero img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}