html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Inline styles moved from layout and index for maintainability */
/* Menu: quitar subrayado y texto más grueso */
.main-header__nav .main-menu__list a,
.main-header .navbar-nav .nav-link,
.main-menu__list li a {
  text-decoration: none !important;
  font-weight: 600 !important;
}
.main-header__nav .main-menu__list a:hover,
.main-header .navbar-nav .nav-link:hover,
.main-menu__list li a:hover {
  text-decoration: none !important;
}
/* Topbar email blanco y botón reservar texto blanco */
.topbar-one__info a {
  color: #ffffff !important;
}
.main-header__btn .travhub-btn,
.main-header__btn .travhub-btn span {
  color: #ffffff !important;
}

/* Mobile hero: mostrar furgoneta de fondo */
@media (max-width: 767.98px) {
  .hero-mobile-van {
    display: block;
    position: absolute;
    right: 6%;
    top: 150px; /* lower on screen */
    width: 85%; /* slightly larger per request */
    height: 330px; /* slightly larger per request */
    background-image: url('/images/shapes/furgonetabanner.png');
    background-size: contain; /* natural size */
    background-repeat: no-repeat;
    background-position: right bottom;
    pointer-events: none;
    z-index: 0; /* behind content */
    transform: translateX(6%);
    filter: none; /* removed filter per request */
    opacity: 0.50; /* slightly transparent but clearer */
  }
}

/* Ensure hero is positioned so absolute mobile van sits relative to it */
.hero-one { position: relative; }
.hero-one__content { position: relative; z-index: 12; }