:root {
  --color-brand-blue: #0b396a;
  --color-brand-orange: #f08922;
  --color-brand-light: #f8f9fa;
}

body {
  font-family: 'Inter', "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8fafc;
}

.text-brand-blue {
  color: var(--color-brand-blue);
}

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

.text-brand-orange {
  color: var(--color-brand-orange);
}

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

/* Hero Gallery */
.hero-gallery {
  width: 100%;
}

.hero-gallery__slides {
  background-color: #0b396a;
}

.hero-gallery__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1000ms ease-in-out;
}

.hero-gallery__slide.is-active {
  opacity: 1;
}

.hero-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.hero-gallery__nav--prev {
  left: 20px;
}

.hero-gallery__nav--next {
  right: 20px;
}

/* Wide Carousel */
.wide-carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.25rem;
  cursor: pointer;
}

.wide-carousel__nav--prev {
  left: 20px;
}

.wide-carousel__nav--next {
  right: 20px;
}

/* Map grayscale hover effect */
iframe {
  transition: filter 0.5s ease;
}
iframe:hover {
  filter: grayscale(0%) contrast(1) !important;
}

/* Header sticky animation */
#main-header {
  transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-scrolled {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}
