/* Text Logo Styling */
.text-logo {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
  transition: all 0.3s ease;
}

/* Logo normal (white for dark backgrounds) */
.logo_normal.text-logo {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Logo sticky (dark for light backgrounds) */
.logo_sticky.text-logo {
  color: #333;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Hover effects */
.text-logo:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

/* Menu panel logo */
.logo_panel .text-logo {
  color: #333;
  display: block;
  text-align: center;
  padding: 10px 0;
}

/* Responsive sizing */
@media (max-width: 767px) {
  .text-logo {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .text-logo {
    font-size: 1.25rem;
  }
}

/* Ensure text logo fits well in header */
.col-md-3 .text-logo,
.col-5 .text-logo {
  max-width: 100%;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: break-word;
}

/* Hero section OTA logos */
.hero-logos-wrapper {
  text-align: center;
}

.hero-logos-wrapper .find-us-text {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.9;
  margin: 2rem auto 0.5rem;
  text-transform: none;
}

.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-logo-link {
  display: inline-block;
  text-decoration: none;
  margin: 0 0.75rem;
}

.hero-logo-link img {
  max-height: 35px;
  width: auto;
  object-fit: contain;
}
