/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: 'Cairo', sans-serif;
  color: white;
  background: url("../images/bg-animation.svg") center / cover no-repeat fixed;
}

/* ================= NAVBAR ================= */
.navbar {
  height: 80px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;

  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.nav-logos {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-logos img {
  height: 55px;
}

.nav-logos span {
  font-size: 36px;
  color: #ff0008;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  font-family: 'Poppins', 'Cairo', sans-serif;
}

.nav-links a:hover {
  color: #c4161c;
}

.nav-links .active {
  color: #c4161c;
  font-weight: 900;
}

/* ================= HAMBURGER MENU ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 5px;
  margin-top: 0;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 10px;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ================= HERO ================= */

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-family: 'Poppins', 'Cairo', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ff2d2d;
}

.hero p {
  font-family: 'Cairo', sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: #ddd;
  letter-spacing: 0.5px;
  max-width: 600px;
  margin: auto;
}

/* ================= BUTTON (Hero + Booking) ================= */
button {
  margin-top: 40px;
  padding: 16px 45px;

  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;

  border-radius: 60px;
  border: none;
  background: linear-gradient(135deg, #c4161c, #ff2d2d);
  color: white;

  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,45,45,0.6);
}

.cssbuttons-io-button {
  background: #df0808;
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #e03105;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #f2032b;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.lottie-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

.lottie-wrapper.active {
  opacity: 1;
  pointer-events: all;
}

lottie-player {
  width: 220px;
}

/* ================= FOOTER ================= */
footer {
  background: #000;
  padding: 20px;
  text-align: center;
  font-size: 16px;
}

footer a {
  color: #c4161c;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

/* ================= MEDIA QUERIES ================= */

/* ===== TABLET ===== */
@media (max-width: 992px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 25px;
    transition: 0.4s ease;
    border-left: 2px solid rgba(255, 45, 45, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 20px;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }

  .nav-links a:hover {
    background: rgba(255, 45, 45, 0.15);
  }

  .hero {
    padding: 120px 20px 40px;
    min-height: 100vh;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 17px;
    max-width: 90%;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .navbar {
    height: 70px;
    padding: 0 20px;
  }

  .nav-logos img {
    height: 40px;
  }

  .nav-logos span {
    font-size: 24px;
  }

  .nav-links {
    top: 70px;
    height: calc(100vh - 70px);
    width: 260px;
  }

  .nav-links a {
    font-size: 18px;
  }

  .hero {
    padding: 100px 15px 30px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 15px;
    max-width: 100%;
  }

  .cssbuttons-io-button {
    font-size: 15px;
    padding: 0.3em;
    padding-left: 1em;
    height: 2.6em;
    padding-right: 3em;
  }

  .cssbuttons-io-button .icon {
    height: 2em;
    width: 2em;
  }

  footer {
    padding: 15px;
    font-size: 14px;
  }
}

/* ===== SMALL PHONES ===== */
@media (max-width: 480px) {

  .navbar {
    padding: 0 15px;
  }

  .nav-logos img {
    height: 32px;
  }

  .nav-logos span {
    font-size: 20px;
  }

  .nav-links {
    width: 220px;
  }

  .nav-links a {
    font-size: 16px;
    padding: 8px 15px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero p {
    font-size: 14px;
  }

  .cssbuttons-io-button {
    font-size: 13px;
    height: 2.4em;
    padding-right: 2.8em;
  }

  .cssbuttons-io-button .icon {
    height: 1.8em;
    width: 1.8em;
  }
}