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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Custom styles for Hotel Playa theme */
body {
  background-color: #2f6f9f; /* azul moderado, no muy oscuro ni muy claro */
  color: #f8f9fa;
}

.home-hero {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.05));
  padding: 60px 15px;
  border-radius: 8px;
}

.info-panel {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Ensure text in info panels is visible (dark on light background) and bold for readability */
.info-panel {
  color: #222 !important;
  font-weight: 600;
}

/* Make headings across the site bold and high contrast */
h1, h2, h3, h4, .home-hero h1, .container h2 {
  font-weight: 700;
}

/* Ensure section headings inside containers are clearly visible on colored backgrounds */
.container h2 {
  color: #fff;
}

/* Slightly increase opacity of info panels when over colored backgrounds */
.home-hero .info-panel {
  background: rgba(255,255,255,0.95);
}

.more-info-1, .more-info-2 {
  min-width: 160px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .home-hero h1 { font-size: 1.75rem; }
  .info-panel { padding: 15px; }
}

/* Footer tweaks */
.footer { background: transparent; }

/* Gallery styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  align-items: start;
}
.gallery-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gallery-thumb:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.16);
}

