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

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}


header {
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar {
  height: 80px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);

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

  padding: 0 8%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 2rem;
  font-weight: bold;
}

.logo i {
  color: #ffc107;
}

.yellow {
  color: #ffc107;
}

.nav-links {
  display: flex;
  gap: 60px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #ffc107;
}

.book-btn {
  background: #ffc107;
  color: #000;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: bold;
  transition: 0.3s;
}

.book-btn:hover {
  transform: translateY(-3px);
}

.menu-btn {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("image/Image 2026-06-19 at 22.14.44.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1);
  filter: blur(3px);

  z-index: -2;
}

@media (max-width: 768px) {
  .hero::before {
    background-position: 70%;
    transform: scale(1);
  }

}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.hero-content {
  width: 100%;
  max-width: 1600px;
  margin: auto;

  padding: 120px 8% 80px;
}

.hero-text {
  max-width: 700px;
}

.hero-text h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  margin-bottom: 30px;
  font-weight: 800;
  font-family: 'Times New Roman', Times, serif;
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.4rem);
  line-height: 1.7;
  max-width: 650px;
  font-family: 'Times New Roman', Times, serif;
}

.hero-buttons {
  display: flex;
  gap: 25px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 18px 35px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: 0.3s;
}

.whatsapp {
  background: #ffc107;
  color: #000;
}

.whatsapp:hover {
  transform: translateY(-3px);
}

.call {
  border: 2px solid #ffc107;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
}

.call:hover {
  background: #ffc107;
  color: #000;
}

.why-us {
  background: #050505;
  padding: 100px 8%;
  text-align: center;
}

.why-us h2 {
  font-size: 3rem;
  color: #ffc107;
}

.title-line {
  width: 80px;
  height: 4px;
  background: #ffc107;
  margin: 20px auto 60px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.card {
  background: #111;
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 20px;
  padding: 50px 35px;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px);
}

.icon {
  width: 90px;
  height: 90px;
  background: #ffc107;
  border-radius: 50%;

  margin: auto;

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

  font-size: 2rem;
  color: black;
}

.card h3 {
  margin: 35px 0 20px;
  font-size: 2rem;
}

.card p {
  color: #ddd;
  line-height: 1.7;
  font-size: 1.1rem;
  font-family: 'Times New Roman', Times, serif;
}

.book-section {
  background: #ffc107;
  color: black;

  padding: 100px 8%;

  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.book-left,
.book-right {
  flex: 1;
}

.book-left h2 {
  font-size: 3rem;
}

.small-line {
  width: 80px;
  height: 5px;
  background: black;
  margin: 25px 0;
}

.book-left p {
  font-size: 1.3rem;
  line-height: 1.8;
}

.book-buttons {
  display: flex;
  gap: 20px;
}

.book-action {
  flex: 1;

  text-decoration: none;
  background: black;
  color: white;

  padding: 20px;
  text-align: center;

  border-radius: 15px;

  font-size: 1.1rem;
  font-weight: bold;
  transition: 0.3s;
}

.book-action:hover {
  transform: translateY(-3px);
}

.contact-info {
  margin-top: 50px;
}

.contact-info p {
  font-size: 1.5rem;
  margin-bottom: 25px;
}


footer {
  background: #050505;
  padding: 70px 8% 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-box {
  flex: 1;
  min-width: 280px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.footer-logo i,
.footer-logo span {
  color: #ffc107;
}

.footer-box p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 20px;
}

.copyright {
  text-align: center;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid #222;
  color: #aaa;
}


@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 4rem;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 1000px) {
  .book-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;

    width: 100%;
    background: rgba(0, 0, 0, 0.95);

    flex-direction: column;
    align-items: center;
    gap: 30px;

    padding: 30px 0;

    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .hero-content {
    text-align: center;
    padding: 140px 30px 80px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .book-section {
    flex-direction: column;
    text-align: center;
  }

  .small-line {
    margin: 25px auto;
  }

  .book-buttons {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }
}



@media (max-width: 600px) {
  .navbar {
    padding: 0 5%;
  }

  .logo {
    font-size: 1.5rem;
  }

  .hero-text h1 {
    font-size: 2.6rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .why-us {
    padding: 80px 5%;
  }

  .why-us h2,
  .book-left h2 {
    font-size: 2.3rem;
  }

  .card {
    padding: 40px 25px;
  }

  .card h3 {
    font-size: 1.6rem;
  }

  .book-section {
    padding: 80px 5%;
  }

  .contact-info p {
    font-size: 1.2rem;
  }

  footer {
    padding: 60px 5% 30px;
  }

  .footer-logo {
    font-size: 1.7rem;
  }
}