/* ========================================
   Top Bar — Dirección, Teléfono & Redes
   ======================================== */

:root {
  --topbar-bg: #13203b;
  --topbar-text: #f9f5f2;
  --topbar-accent: #aa8432;
  --topbar-h: 42px;
}

.topbar {
  position: relative;
  z-index: 30;
  /* background-color: var(--topbar-bg); */
  background-color: #311014;
  color: var(--topbar-text);
  font-size: 0.8rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--topbar-h);
  padding-top: 6px;
  padding-bottom: 6px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--topbar-text);
  white-space: nowrap;
}

a.topbar-item {
  text-decoration: none;
  transition: color 0.3s;
}

a.topbar-item:hover {
  color: var(--topbar-accent);
}

.topbar-item i {
  color: var(--topbar-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.topbar-address span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(249, 245, 242, 0.35);
  color: var(--topbar-text);
  font-size: 0.85rem;
  transition: 0.3s;
}

.topbar-socials a:hover {
  background-color: var(--topbar-accent);
  border-color: var(--topbar-accent);
  color: var(--topbar-bg);
}

@media (max-width: 575px) {
  .topbar-address {
    display: none;
  }
}

@media (max-width: 420px) {
  .topbar-phone span {
    display: none;
  }
}

/* Empuja el header debajo del topbar solo cuando el topbar es visible (md+) */
#header {
  top: 0;
}

@media (min-width: 768px) {
  #header {
    top: var(--topbar-h);
  }
}

#header.fixed {
  top: 0 !important;
}

/* En móvil: sin hueco al fijar el menú (la animación fadeInUp usa top:-100px) */
@media (max-width: 767.98px) {
  #header,
  #header.fixed,
  .header.fixed {
    top: 0 !important;
    animation: none !important;
    margin-top: 0 !important;
    transform: none !important;
  }
}

/* ========================================
   Navbar centrado — Logo + links en el centro
   Botón Reservas anclado a la derecha (no desplaza el centro)
   ======================================== */

.amour-navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  width: 100%;
}

.amour-navbar__cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.75rem);
  margin: 0 auto;
}

.amour-navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1;
}

.amour-navbar__logo img {
  height: 3.5rem;
  width: auto;
  display: block;
}

@media (min-width: 1200px) {
  .amour-navbar__logo img {
    height: 5.5rem;
  }
}

.amour-navbar__links {
  display: none !important;
}

@media (min-width: 992px) {
  .amour-navbar__links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    padding: 0 !important;
  }
}

.amour-navbar__cta {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  border-radius: 50px;
  padding: 0.55rem 1.15rem;
}

@media (min-width: 1200px) {
  .amour-navbar__cta {
    display: inline-flex;
  }
}

/* En móvil: logo a la izquierda, hamburguesa a la derecha */
@media (max-width: 991.98px) {
  .amour-navbar {
    justify-content: space-between;
  }

  .amour-navbar__cluster {
    margin: 0;
    justify-content: flex-start;
  }

  .amour-navbar .toggle-menu {
    position: relative;
    margin-left: auto;
    color: #222e48;
  }
}

/* Desktop: hamburguesa oculta; CTA absoluto no empuja el cluster */
@media (min-width: 992px) {
  .amour-navbar .toggle-menu {
    display: none;
  }
}

/* Botón Reservas con bordes redondeados */
.reservas-btn {
  border-radius: 50px !important;
}

/* ========================================
   Banner slider — evita textos traslapados
   (crossFade en JS + aislamiento visual)
   ======================================== */
.banner6Swiper {
  overflow: hidden;
  width: 100%;
}

.banner6Swiper .swiper-slide {
  pointer-events: none;
}

.banner6Swiper .swiper-slide-active {
  pointer-events: auto;
  z-index: 2;
}

/* Modo slider de imágenes: fondo full-bleed por slide */
.banner.banner-6--slider .banner6Swiper,
.banner.banner-6--slider .swiper-wrapper,
.banner.banner-6--slider .swiper-slide {
  min-height: 100%;
}

.banner.banner-6--slider .swiper-slide {
  position: relative;
}

.banner.banner-6 .banner-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.banner.banner-6--slider .container {
  position: relative;
  z-index: 2;
}

.banner.banner-6--slider .hero6-pagination {
  z-index: 3;
}
