* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ===== HEADER ===== */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #ffffff, #6d0303);
  padding: 6px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.header-top img {
  width: 120px;
}

.info-top {
  display: flex;
  gap: 15px;
}

.info {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  transition: 0.3s;
}

.info:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.info a {
  color: #fff;
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: center;
}

.info i {
  font-size: 22px;
}

.info p {
  font-size: 14px;
  line-height: 16px;
}

.info p span {
  font-size: 12px;
  display: block;
  opacity: 0.9;
}

/* ===== BANNER ===== */
.banner-top {
  height: 100vh;
  background: url(images/banner-top.webp) center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 70px;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(0 0 0 / 0%), #00000060);
}

/* Center content */
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-40px);
}

.banner-content img {
  width: 60%;
  margin-bottom: 20px;
}

.banner-text h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 20px;
  margin-bottom: 28px;
}

/* Button */
.banner-btn .btn {
  background-color: #ff0000;
  color: #fff;
  padding: 14px 32px;
  font-size: 17px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.banner-btn .btn:hover {
  transform: scale(1.08);
}

/* ===== MOBILE RESPONSIVE ===== */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 12px;
    padding: 10px;
  }

  .info-top {
    display: none;
  }

  .banner-content img {
    width: 100%;
  }

  .banner-text h2 {
    font-size: 26px;
  }

  .banner-text p {
    font-size: 15px;
  }

  .mobile-bottom-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 15px;
    background: #700202;
    z-index: 50;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.3);
  }

  .mobile-bottom-bar a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    gap: 20px;
    align-items: center;
  }
}
