
:root {
  --brand-primary: #0d6efd;
  --brand-secondary: #0b3b6f;
  --brand-soft: #f5f7fb;
  --radius-xl: 1.5rem;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  padding-top: 72px;
}

.bg-gradient-primary {
  background: linear-gradient(90deg, #0b3b6f, #1b6fdc);
}

.navbar-brand .brand-mark {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.navbar-brand .brand-sub {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-left: 0.35rem;
}

.language-switcher {
  gap: 0.1rem;
}

.language-switcher .nav-link {
  padding: 0.1rem 0.35rem;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.85;
}

.language-switcher .nav-link .flag {
  display: inline-block;
}

.language-switcher .nav-link.active {
  opacity: 1;
  background-color: rgba(255,255,255,0.18);
  border-radius: 999px;
}

.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1), transparent 55%),
              linear-gradient(120deg, rgba(4,33,74,0.9), rgba(9,71,137,0.85));
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  opacity: .9;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .2rem .75rem;
  border-radius: 999px;
  font-size: .75rem;
  background-color: rgba(15,51,94,0.85);
  margin-right: .35rem;
  margin-bottom: .35rem;
}

.section-padding {
  padding: 4.5rem 0;
}

.section-title {
  font-weight: 700;
  margin-bottom: .75rem;
}

.section-lead {
  font-size: .98rem;
  color: #555;
}

.bg-soft {
  background-color: var(--brand-soft);
}

.small-cards .info-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15,23,42,.06);
}

.small-cards .info-card i {
  color: var(--brand-primary);
}

.feature-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15,23,42,.06);
  background-color: #fff;
}

.feature-item i {
  color: var(--brand-primary);
}

.gallery-figure {
  overflow: hidden;
  background-color: #000;
}

.gallery-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease-out;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

#load-more-gallery {
  min-width: 160px;
}

.table > :not(caption) > * > * {
  padding: 0.85rem 1rem;
}

.calendar-wrapper {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15,23,42,.06);
  padding: 1.5rem;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .25rem;
  font-size: .8rem;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}

.calendar-day-name,
.calendar-day {
  text-align: center;
  padding: .35rem 0;
  border-radius: .35rem;
}

.calendar-day-name {
  font-weight: 600;
  color: #6c757d;
}

.calendar-day.disabled {
  opacity: 0.35;
}

.calendar-day.available {
  background-color: rgba(25,135,84,.08);
}

.calendar-day.booked {
  background-color: rgba(220,53,69,.08);
  color: #dc3545;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  margin-right: 1rem;
}

.calendar-legend i {
  width: .75rem;
  height: .75rem;
  border-radius: .2rem;
}

.calendar-legend .legend-free {
  background-color: rgba(25,135,84,.3);
}

.calendar-legend .legend-busy {
  background-color: rgba(220,53,69,.3);
}

.payment-box {
  background-color: #0f172a;
  color: #e5e7eb;
}

.payment-box a {
  color: #e5e7eb;
}

.contact-list a {
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.beach-photo img.object-cover {
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 70vh;
  }
  body {
    padding-top: 64px;
  }
}
