/* assets/styles.css */
:root {
  color-scheme: light;
  font-family: Tahoma, Geneva, sans-serif, Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: #fff;
  color: #444;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.7;
}

a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: #acf904;
}

h1,
.h1 {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 3rem;
  letter-spacing: 2pt;
  line-height: 1.3;
  color: #222;
}

h2,
.h2 {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 1.3;
  color: #222;
}

h3,
.h3 {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.3;
  color: #222;
}

h4,
.h4 {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #222;
}

header {
  color: #222;
}

header a {
  color: #444;
}

header a:hover,
header a:focus {
  color: #acf904;
}

.hero-image {
  background-size: cover;
  background-position: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.25));
  z-index: 1;
  pointer-events: none;
}

.hero-slider-controls {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  pointer-events: none;
  z-index: 10;
}

.hero-slider-controls button {
  pointer-events: auto;
  background: rgba(15, 23, 42, 0.55);
  border: none;
  border-radius: 999px;
  color: white;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  transition: background 0.2s ease;
}

.hero-slider-controls button:hover {
  background: rgba(15, 23, 42, 0.8);
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-slider-dot {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-slider-dot.active {
  background: rgba(255, 255, 255, 1);
}

.lightbox-backdrop {
  background: rgba(15, 23, 42, 0.9);
}

.responsive_map {
  height: 0;
  overflow: hidden;
  padding-bottom: 56%;
  position: relative;
}

.responsive_map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

img,
picture,
video {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  body {
    font-size: 0.8rem;
  }

  h1,
  .h1 {
    font-size: 3rem;
    letter-spacing: 0;
  }

  h2,
  .h2 {
    font-size: 30px;
  }

  h3,
  .h3 {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  h3,
  .h3 {
    font-size: 20px;
  }

  h4,
  .h4 {
    font-size: 18px;
  }
}

nav .dropdown-menu {
  display: none;
}

nav .group:hover > .dropdown-menu {
  display: block;
}

@media (max-width: 767.98px) {
  nav .dropdown-menu {
    display: block !important;
    position: static !important;
    width: auto !important;
    margin-top: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
  }

  nav .dropdown-menu .dropdown-menu {
    padding-left: 1rem !important;
  }
}
