body {
  font-family: "Inter", sans-serif;
  color: #212529;
}

/* Navbar */
.navbar {
  background-color: rgba(13, 27, 102, 0.9);
  transition: background-color 0.3s ease;
}
.navbar.scrolled {
  background-color: #0d1b66 !important;
}
.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin-right: 1rem;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #f5c542 !important;
}

/* Footer */
footer {
  background-color: #0b163f;
  font-family: "Poppins", sans-serif;
}
.footer-link {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #f5c542;
}
.footer-bottom {
  color: #adb5bd;
  font-size: 0.9rem;
}
/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0d1b66 40%, #132472 100%);
  color: #fff;
  min-height: 90vh;
  overflow: hidden;
  position: relative;
}
.text-accent {
  color: #f5c542;
}
.btn-accent {
  background-color: #f5c542;
  color: #0d1b66;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}
.btn-accent:hover {
  background-color: #fff;
  color: #0d1b66;
}
.btn-outline-light {
  border-radius: 50px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  background-color: #f5c542;
  color: #0d1b66;
  border-color: #f5c542;
}

/* Animations */
.fade-slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s forwards;
}
.fade-slide-up.delay-1 {
  animation-delay: 0.3s;
}
.fade-slide-up.delay-2 {
  animation-delay: 0.6s;
}
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s 0.8s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive tweaks */
/* Improve hero spacing for mobile */
@media (max-width: 991px) {
  .hero {
    min-height: 60vh; /* gives breathing room */
    padding: 7rem 1.5rem 4rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-img {
    max-height: 380px;
    margin-top: 2rem;
  }
}

/* Amenities Section */
.amenities {
  background-color: #f8f9fc;
}
.section-title {
  color: #0d1b66;
  position: relative;
}
.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #f5c542;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* Amenity Cards */
.amenity-card {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}
.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.icon-wrapper {
  font-size: 2rem;
  color: #f5c542;
}

/* Location Section */
.location-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.location-section .section-title {
  color: #0d1b66;
}
.location-section ul li {
  font-size: 0.95rem;
  color: #444;
}
.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  transition: transform 0.4s ease;
}
.map-wrapper:hover iframe {
  transform: scale(1.02);
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .location-section {
    text-align: center;
  }
  .location-section ul {
    text-align: left;
    display: inline-block;
  }
  .map-wrapper {
    margin-top: 2rem;
  }
}

/* Gallery Section */
.gallery-section {
  background-color: #f8f9fc;
}
.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}
.gallery-item img {
  transition: transform 0.5s ease, filter 0.3s ease;
  width: 100%;
  height: auto;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

/* Layout Section */
.layout-section {
  background-color: #f8f9fc;
}
.layout-card {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}
.layout-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.layout-image {
  display: none;
  width: 100%;
  transition: opacity 0.4s ease;
}
.layout-image.active {
  display: block;
  opacity: 1;
}
.btn-outline-primary {
  border-radius: 30px;
  color: #0d1b66;
  border-color: #0d1b66;
}
.btn-outline-primary:hover,
.btn-check:checked + .btn-outline-primary {
  background-color: #0d1b66;
  color: #fff;
  border-color: #0d1b66;
}

/* Contact Section */
.contact-section {
  background-color: #0d1b66;
  color: #fff;
}
.contact-section .card {
  background-color: #ffffff;
}
.contact-section input,
.contact-section textarea {
  border-radius: 8px;
  border: 1px solid #ced4da;
  font-size: 0.95rem;
}
.contact-section input:focus,
.contact-section textarea:focus {
  border-color: #f5c542;
  box-shadow: 0 0 0 0.25rem rgba(245, 197, 66, 0.25);
}
.social-icons a:hover {
  opacity: 0.8;
}
