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

:root {
  --dengage-blue: #125cfa;
  --dengage-blue-dark: #0d4bc4;
  --dengage-navy: #0a3a9e;
}

img.img-fluid.logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-lockup .brand-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: #12263a;
  letter-spacing: -0.02em;
}

.brand-lockup .brand-text span {
  color: var(--dengage-blue);
}

.nav-link.active,
.nav-link:hover {
  border-bottom: 2px solid var(--dengage-blue);
  color: var(--dengage-blue) !important;
}

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

/* hero */
.hero {
  padding-top: 400px;
  background: linear-gradient(180deg, rgba(10, 58, 158, 0.35), rgba(18, 92, 250, 0.25)),
    url("../img/hero.jpg") no-repeat center center;
  background-size: cover;
}

.bg-orange,
.bg-dengage {
  background-color: var(--dengage-blue);
  color: #fff;
}

.btn-orange,
.btn-dengage {
  background-color: var(--dengage-blue);
  border: none;
  color: white;
  padding: 15px 25px;
}

.btn-orange:hover,
.btn-dengage:hover {
  background-color: var(--dengage-blue-dark);
  color: white;
}

.topbar {
  background: linear-gradient(90deg, #0a3a9e, #125cfa) !important;
}

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(10, 58, 158, 0.72);
  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;
}

.footer-brand {
  opacity: 0.9;
}

@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;
  }

  .hero {
    padding-top: 220px;
  }
}
