body {
  font-family: var(--font-family);
  background-color: var(--background-color);
  color: var(--text-color);
}

#hero-carousel .carousel-item img {
  height: 600px;
  object-fit: cover;
}

#hero-carousel .carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: bold;
}

header {
  background-color: var(--header-background);
}

header .fs-4 {
  color: var(--header-text-color) !important;
  font-family: var(--header-font-family) !important;
  font-weight: bold;
}

header .nav-pills .nav-link {
  color: var(--text-color) !important;
  border-radius: 0 !important;
}

header .nav-pills .nav-link:hover {
  color: var(--color-primary-end) !important;
}

header .nav-pills .nav-link.active {
  color: var(--color-primary-end) !important;
  border-bottom: 2px solid var(--color-primary-end) !important;
  background-color: transparent !important;
}

.card {
  border: none;
  box-shadow: var(--card-shadow);
  background-color: var(--card-background);
}

.card .card-img-top {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--button-text-color) !important;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  filter: brightness(90%);
}

.card a {
  color: var(--text-color);
  text-decoration: none;
}

.card a:hover {
  color: var(--primary-color);
}

body.theme-desert-rose .btn-primary {
  background-color: var(--color-primary-end);
  border-color: var(--color-primary-end);
  color: #fff;
}

footer {
  background-color: var(--footer-background);
}

footer a {
  color: var(--text-color) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--color-primary-end) !important;
}

.theme-switcher .dropdown-toggle {
  background-color: transparent !important;
  border: none !important;
  color: var(--text-color) !important;
}

.theme-switcher .dropdown-toggle::after {
  display: none;
}

.theme-switcher .dropdown-menu {
  min-width: auto;
}

.theme-switcher .dropdown-item i {
  margin-right: 10px;
}

.booking-widget-container {
  position: relative;
  width: 100%;
  padding-top: 150%; /* 3:2 aspect ratio */
}

.booking-widget-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sticky-top {
  top: 20px;
}

.amenities i {
  color: var(--color-primary-end);
}

.gallery .img-fluid {
  cursor: pointer;
}

#gallery-modal .modal-body {
  background-color: #000;
}

#gallery-modal .carousel-item img {
  max-height: 90vh;
  object-fit: contain;
  margin: auto;
}
.text-center {
  text-align: center;
}