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

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.navbar {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px; /* adjust as needed */
  width: auto;
}

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

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #5c3ac1;
}

.contact-btn {
  background: #020202;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #5d5a5a;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  transition: transform 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('https://images.pexels.com/photos/261395/pexels-photo-261395.jpeg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45); /* overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  padding: 20px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero p {
  font-size: clamp(14px, 2.5vw, 20px);
  margin-bottom: 30px;
  color: #f1f1f1;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
  text-align: center;
  min-width: 150px;
}

.book {
  background: #f44336;
  color: white;
}

.book:hover {
  background: #c62828;
}

.explore {
  background: transparent;
  border: 2px solid #fdd835;
  color: #fdd835;
}

.explore:hover {
  background: #fdd835;
  color: black;
}

/* Responsive Navbar & Hero */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    background: white;
    width: 100%;
    flex-direction: column;
    align-items: center;
    transition: left 0.3s ease;
    padding: 20px 0;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
    color: #333;
  }

  .contact-btn {
    display: none;
  }

  .hero h1 {
    font-size: clamp(26px, 6vw, 40px);
  }

  .hero p {
    font-size: clamp(14px, 3vw, 18px);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }
}


/* -----------------------------------------------------About US-------------------------------------------------------- */
/* About Us Section */
.about {
  padding: 80px 40px;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-content {
  flex: 1;
  min-width: 280px;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.about-btn {
  background: #020202;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.about-btn:hover {
  background: #595555;
}

.about-image {
  flex: 1;
  min-width: 280px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    order: 1;
  }

  .about-image {
    order: 2;
    margin-top: 20px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 15px;
  }
}


/* -----------------------------------------------------Why Choose Us-------------------------------------------------------- */
/* Why Choose Us Section */
.why-choose {
  padding: 80px 40px;
  background: #f9fafc;
  text-align: center;
}

.choose-container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-choose h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #222;
}

.why-choose p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.choose-features {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  flex: 1;
  min-width: 260px;
  transition: transform 0.3s;
}

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

.feature-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: white;
}

.icon.purple {
  background: linear-gradient(135deg, #7b4dff, #b06cff);
}

.icon.red {
  background: linear-gradient(135deg, #f44336, #ff7961);
}

.icon.yellow {
  background: linear-gradient(135deg, #ffb300, #ffeb3b);
  color: #333;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .choose-features {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .why-choose h2 {
    font-size: 26px;
  }

  .why-choose p {
    font-size: 14px;
  }

  .feature-card {
    min-width: 100%;
    max-width: 100%;
  }
}


/* -----------------------------------------------------Choose perfect stay-------------------------------------------------------- */
/* Choose Your Perfect Stay Section */
.stay-section {
  padding: 80px 40px;
  background: #fff;
  text-align: center;
}

.stay-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stay-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.stay-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.stay-cards {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stay-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  transition: transform 0.3s;
}

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

.stay-image {
  position: relative;
}

.stay-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border-radius: 6px;
}

.tag.purple {
  background: #6c63ff;
}

.tag.red {
  background: #e53935;
}

.tag.yellow {
  background: #fbc02d;
  color: #222;
}

.stay-content {
  padding: 20px;
  text-align: left;
}

.stay-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.stay-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .stay-cards {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .stay-section h2 {
    font-size: 26px;
  }

  .stay-section p {
    font-size: 14px;
  }

  .stay-card {
    min-width: 100%;
  }
}

/* -----------------------------------------------------Testimonial-------------------------------------------------------- */
 .testimonial-section {
      max-width: 1200px;
      margin: auto;
      padding: 50px 20px;
      text-align: center;
    }

    .testimonial-section h2 {
      font-size: 28px;
      font-weight: 700;
      color: #111827;
    }

    .testimonial-section p {
      color: #6b7280;
      margin-bottom: 40px;
    }

    .testimonial-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .testimonial-card {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease;
    }

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

    .testimonial-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .testimonial-header img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      margin-right: 12px;
    }

    .testimonial-header h3 {
      font-size: 16px;
      margin: 0;
      font-weight: 600;
    }

    .stars {
      color: #fbbf24;
      font-size: 14px;
    }

    .testimonial-text {
      font-size: 14px;
      color: #374151;
      line-height: 1.5;
    }

    @media (max-width: 600px) {
      .testimonial-section h2 {
        font-size: 24px;
      }
      .testimonial-card {
        padding: 15px;
      }
    }

/* -----------------------------------------------------Footer-------------------------------------------------------- */

 footer {
      background: #111827;
      color: #d1d5db;
      padding: 50px 20px 20px;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .footer-logo h2 {
      color: #fff;
      margin: 0 0 15px;
    }

    .footer-logo p {
      font-size: 14px;
      line-height: 1.6;
      color: #9ca3af;
    }

    .footer-column h3 {
      font-size: 16px;
      color: #fff;
      margin-bottom: 15px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #d1d5db;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #fbbf24;
    }

    .footer-contact p {
      font-size: 14px;
      margin: 6px 0;
    }

    .footer-bottom {
      text-align: center;
      border-top: 1px solid #374151;
      margin-top: 30px;
      padding-top: 15px;
      font-size: 13px;
      color: #9ca3af;
    }

    @media (max-width: 600px) {
      footer {
        padding: 30px 15px;
      }
    }