/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #111;
  color: #fff;
}

/* NAVBAR */

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #d4af37;
}

/* HERO */

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-content {
  max-width: 650px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #ddd;
}

.btn {
  display: inline-block;
  padding: 16px 38px;
  background: #d4af37;
  color: #111;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.35s;
}

.btn:hover {
  transform: translateY(-5px);
  background: white;
}

/* MOBILE */

@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    .section-title h2 {
      font-size: 2rem;
    }
  }

  .hero h1 {
    font-size: 2.4rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
    margin: 25px auto;
    max-width: 340px;
  }
}

/* WHY US SECTION */

.why-us {
  padding: 100px 8%;
  background: #151515;
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.section-title p {
  color: #ccc;
  line-height: 1.8;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #1d1d1d;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.feature-card h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.feature-card p {
  color: #bbb;
  line-height: 1.7;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
}

/* MOBILE */

@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr;
  }
}

section {
  padding-left: 5%;
  padding-right: 5%;
}

/* SERVICES SECTION */

.services {
  padding: 100px 8%;
  background: #111;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #1b1b1b;
  padding: 35px;
  border-radius: 20px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #d4af37;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transition: 0.4s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card h3 {
  margin-bottom: 15px;
  color: #fff;
}

.service-card p {
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card span {
  color: #d4af37;
  font-weight: 600;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* PACKAGES */

.packages {
  padding: 100px 8%;
  background: #151515;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background: #1d1d1d;
  padding: 45px 35px;
  border-radius: 25px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: 0.4s;
}

.package-card:hover {
  transform: translateY(-12px);
}

.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.package-card h4 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 30px;
}

.package-card ul {
  list-style: none;
  margin-bottom: 35px;
}

.package-card li {
  margin: 15px 0;
  color: #ccc;
}

.featured {
  border: 2px solid #d4af37;
  transform: scale(1.05);
}

.featured:hover {
  transform: scale(1.05) translateY(-12px);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: #111;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .package-grid {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }

  .featured:hover {
    transform: translateY(-12px);
  }
}

/* GALLERY SECTION */

.gallery {
  padding: 100px 8%;
  background: #111;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-btn {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

footer {
  background: #0b0b0b;
  text-align: center;
  padding: 60px 8%;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer h3 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 15px;
}

footer p {
  color: #bbb;
  margin: 15px 0;
}

.footer-links {
  margin: 25px 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #d4af37;
}

.copyright {
  font-size: 0.9rem;
}

.hero h1,
.section-title h2,
.logo {
  font-family: "Playfair Display", serif;
}

/* ABOUT PREVIEW */

.about-preview {
  padding: 100px 8%;
  background: #151515;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 25px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.about-content p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* TESTIMONIALS */

.testimonials {
  padding: 100px 8%;
  background: #111;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #1d1d1d;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
}

.testimonial-card p {
  color: #ccc;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-card h4 {
  margin-top: 20px;
  color: #d4af37;
}

@media (max-width: 900px) {
  .about-preview {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* PAGE HERO */

.page-hero {
  height: 60vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/services.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding-top: 80px;
}

.page-hero h1 {
  font-size: 3.5rem;
  font-family: "Playfair Display", serif;
  color: #d4af37;
}

.page-hero p {
  margin-top: 20px;
  color: #ddd;
  font-size: 1.1rem;
}

/* BOOKING CTA */

.booking-cta {
  padding: 80px 8%;
  background: #151515;
  text-align: center;
}

.booking-cta h2 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.booking-cta p {
  color: #ccc;
  margin-bottom: 30px;
}

/* GALLERY PAGE HERO */

.gallery-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/gallery-hero.jpg");

  background-size: cover;
  background-position: center;
}

/* BOOKING PAGE */

.booking-section {
  padding: 100px 8%;
  background: #111;
}

.booking-form {
  max-width: 700px;
  margin: auto;
  background: #1d1d1d;
  padding: 45px;
  border-radius: 25px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.input-group {
  margin-bottom: 25px;
}

.input-group label {
  display: block;
  margin-bottom: 10px;
  color: #d4af37;
  font-weight: 500;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: none;
  outline: none;

  background: #111;
  color: white;

  font-family: "Poppins", sans-serif;
}

.input-group textarea {
  resize: none;
}

.booking-form .btn {
  border: none;
  cursor: pointer;
}

.booking-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/booking.jpg");

  background-size: cover;
  background-position: center;
}

/* ABOUT PAGE */

.about-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/about.jpg");

  background-size: cover;
  background-position: center;
}

.about-preview {
  padding: 100px 8%;
  background: #151515;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 25px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.about-content p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .about-preview {
    grid-template-columns: 1fr;
  }
}

/* CONTACT PAGE */

.contact-section {
  padding: 100px 8%;
  background: #111;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  background: #1d1d1d;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
}

.contact-card h3 {
  color: #d4af37;
  margin-bottom: 15px;
}

.contact-card p {
  color: #ccc;
  margin-bottom: 25px;
}

.contact-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/contact.jpg");

  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.btn {
  padding: 16px 30px;
  min-width: 180px;
  text-align: center;
}

/* .gallery-grid {
  grid-template-columns: repeat(2, 1fr);
} */

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.service-card,
.feature-card,
.package-card,
.testimonial-card,
.contact-card {
  padding: 25px;
}

@media (max-width: 768px) {
  section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/* MOBILE MENU */

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #d4af37;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;

    width: 100%;

    background: #111;

    display: none;
    flex-direction: column;

    text-align: center;

    padding: 30px 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }
}

/* MOBILE MENU */

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #d4af37;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;

    width: 100%;

    background: #111;

    display: none;

    flex-direction: column;

    align-items: center;

    padding: 30px 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav-links a {
    display: block;
    padding: 10px 20px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

.whatsapp-btn {
  position: fixed;

  bottom: 25px;
  right: 25px;

  width: 60px;
  height: 60px;

  background: #25d366;

  color: white;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;

  text-decoration: none;

  z-index: 9999;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);

  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* SCROLL ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
