body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #333;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

.navbar {
  background-color: #1e1e1e;
  padding: 0.2rem 2rem;
  width: cover;
}

.logo-img {
  background-color:#1e1e1e;
  max-height: 70px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.navbar-brand {
  font-weight: bold;
  font-size: 35px;
  color: #0bb185;
}

.nav-link {
  color: #ffffff !important;
  margin-left: 20px;
  font-weight: 500;
}

.nav-link:hover {
  color: #f8c102 !important;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url('assets/home-bg.webp') center/cover no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.btn-book, .booking-button {
  margin-top: 30px;
  background-color: #ff4d4d;
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  transition: 0.3s ease;
}

.btn-book:hover, .booking-button {
  background-color: #e0aa00;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.info-card {
  background-color: #fdf7e3;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-card h5 {
  color: #cc8400;
  font-weight: 600;
}

.info-card p {
  color: #444;
}

#about {
  padding: 50px 20px;
}

.desktop-about-us {
  display: block;
  text-align: center;
}

.text-about-us {
  margin: 0 auto 20px auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
}

.mobile-about-us,
.mobile-only {
  display: none;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

footer{
  background-color: #1e1e1e;
  padding: 3px;
  margin-bottom: 0;
}

footer p, .contact-p{
  margin-top: 8px;
  text-align: center;
  color: #fdf7e3;
  font-size: 1rem;
  font-weight: 500;
}

.contact-p:hover, .whatsapp-icon:hover{
  font-size: 1.2rem;
}

.footer-p{
  color: #fdf7e3;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.whatsapp-contact-only{
  font-size: large;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
}

.whatsapp-icon {
  background-color: #25D366;
  color: white;
  font-size: 20px;
  padding: 10px;
  border-radius: 50%;
  margin-right: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Responsive */
@media (min-width: 300px) and ( max-width: 500px) {
  body {
    font-size: 17px;
  }

  .logo-img {
    max-height: 60px;
  }

  .navbar-collapse {
    background-color: #e8d9d9;
    padding: 15px 0;
  }

  button.navbar-toggler{
    background-color: white;
    padding: 2px 4.5px;
  }

  .hero {
    background-position: center center;
    background-size: cover;
    min-height: 60vh;
    padding: 2rem 0rem;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
    margin-top: 15px;
  }

  .desktop-about-us {
    display: none;
  }

  .mobile-about-us,
  .mobile-only{
    display: block;
    text-align: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .info-card {
    margin-bottom: 20px;
  }

  .row {
    flex-direction: column;
    align-items: center;
  }

  .col-md-4 {
    width: 100%;
    max-width: 95%;
    margin-bottom: 20px;
  }

  .navbar-brand {
    font-size: 28px;
  }

  .nav-link {
    margin-left: 0;
    text-align: center;
    padding: 8px 0;
  }

  .navbar-collapse .btn {
  display: block;
  margin: 10px 10px;
  width: cover;
  text-align: center;
  }

  .contact-section {
    font-size: 0.95rem;
    padding: 20px 15px;
    width: cover;
  }
}