* {
  font-family: "Montserrat", sans-serif;
}

.text-orange {
  color: #e4a00e !important;
}

img.img-fluid.logo {
  width: 100px;
  border-radius: 20px 5px;
}

/* Hotel Logo Name */
.hotel-logo {
  text-decoration: none !important;
}

.hotel-name {
  display: inline-block;
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  color: #3498db;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hotel-logo:hover .hotel-name {
  color: #2980b9;
  transform: scale(1.03);
}

.nav-link.active,
.nav-link:hover {
  border-bottom: 2px solid black;
}

.nav-link {
  border-bottom: 2px solid transparent;
}

/* hero */
.hero {
  min-height: 600px;
  padding-top: 400px;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.bg-orange {
  background-color: #e4a00e;
}

.btn-orange {
  background-color: #e4a00e;
  border: none;
  color: white;
  padding: 15px 25px;
}

.btn-orange:hover {
  background-color: #c98b0c;
  color: white;
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/hero.jpg') center center;
  background-size: cover;
}

/* Hero content */
.hero-content {
  position: relative;
  top: -200px;
  margin-bottom: -150px;
}

/* Room type cards */
.room-type-card {
  transition: all 0.3s ease;
}

.room-type-card:hover {
  background-color: #f8f9fa;
}

/* Statistics */
.stat-item {
  padding: 20px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #e4a00e 0%, #c98b0c 100%);
}

input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: unset !important;
}

#promo {
  cursor: pointer;
  display: block;
}

#promo.inactive {
  display: none;
}

#promo-holder {
  display: none;
}

#promo-holder.active {
  display: block;
}

.availability input {
  font-size: 20px;
}

.availability.mt-4 {
  position: relative;
  top: 50px !important;
  margin-top: 0px !important;
  margin-bottom: 100px !important;
}

.ls-3 {
  letter-spacing: 5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.6s;
  transform: translateY(100%);
}

.img-holder:hover .info {
  transform: translateY(0%);
}

.hotel-icons p {
  font-size: 14px;
}

.navbar-toggler {
  border: unset !important;
}

button:focus {
  outline: unset !important;
  box-shadow: unset !important;
}

@media screen and (max-width: 992px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  li.nav-item.ms-4 {
    margin-left: 5px !important;
    margin-top: 10px;
    margin-right: 5px !important;
  }

  .topbar .d-flex {
    flex-direction: column;
    text-align: center;
  }

  .topbar p:first-child {
    margin-bottom: 10px !important;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .reservation .col-md-6,
  .reservation .col-md-3 {
    padding: 25px !important;
  }
}