/* Reset & base styles */
body {
  background: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-padding-top: 80px;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* For fixed navbar */
}
section {
  padding-top: 80px;
}

.navbar-nav .nav-link {
  cursor: pointer;
}
.navbar-nav .nav-link:hover {
  color: #ffc107 !important;
  transform: scale(1.05);
}

.main-heading {
  margin-top: 10px;
}

.box {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Buttons and transitions */
a, button, .card, .nav-link, .dropdown-menu, img, .carousel-item, .hvr, .hvr2, .hvr3 {
  transition: all 0.3s ease-in-out;
}

#bookingForm button:hover {
  background-color: #0056b3;
  color: #fff;
}

section h2:hover {
  color: #b6206c;
}

/* Dropdown menu hover */
.dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

/* Cards and hover styles */
.card:hover, .hvr:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.card-title:hover {
  color: #17a2b8;
}
blockquote:hover, .hvr3:hover {
  background-color: #f8f9fa;
  border-left: 5px solid #007bff;
  padding-left: 15px;
}
