/* =====================
   NAVBAR
===================== */

/* ===== NAVBAR BASE ===== */
.navbar-hotel {
    padding: 0;
    min-height: 80px;
    background-color: rgba(84, 21, 19, 0.75);
}

/* LOGO */
.navbar-logo {
    max-height: 75px;
    width: auto;
}

/* MENÚ */
.navbar-menu {
    height: 100%;
}

/* LINKS DESKTOP */
.navbar-hotel .nav-link {
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

/* HOVER DESKTOP */
.navbar-hotel .nav-link:hover,
.navbar-hotel .nav-link:focus {
    background-color: #ffffff;
    color: rgba(84, 21, 19, 1);
}

/* ACTIVO */
.navbar-hotel .nav-link.active {
    background-color: #ffffff;
    color: rgba(84, 21, 19, 0.75);
}

/* =====================
   MOBILE
===================== */
@media (max-width: 991px) {

    .navbar-hotel {
        min-height: auto;
        padding: 10px 0;
    }

    /* CONTENEDOR SIN FONDO */
    .navbar-hotel .navbar-collapse {
        padding: 12px 0;
    }

    /* UL CENTRADO */
    .navbar-hotel .navbar-nav {
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }

    /* ITEMS FULL WIDTH */
    .navbar-hotel .nav-item {
        width: 100%;
    }

    /* SEPARACIÓN ENTRE BOTONES */
    .navbar-hotel .nav-item:not(:last-child) {
        margin-bottom: 10px;
    }

    /* BOTONES MOBILE */
    .navbar-hotel .nav-link {
        height: auto;
        padding: 14px 16px;
        justify-content: center;

        background-color: rgba(84, 21, 19, 0.5);
        border-radius: 6px;
    }

    /* HOVER MOBILE */
    .navbar-hotel .nav-link:hover,
    .navbar-hotel .nav-link:focus {
        background-color: #ffffff;
        color: rgba(84, 21, 19, 1);
    }
}

/* =====================
   HEADER
===================== */
.header {
  background: #8b2c2c;
  color: white;
}

.topbar {
  padding: 6px 20px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.menu nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
}

.menu nav a:hover {
  text-decoration: underline;
}