* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(38, 69, 122, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.main-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
}

.menu-toggle {
  display: none;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.menu-label {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 1.25rem;
  display: block;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  transition: background 0.2s;
}

.nav-links > li > a:hover {
  background: rgba(255,255,255,0.15);
}

.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 8px;
  vertical-align: middle;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: #93c93e;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  display: block;
  transition: background 0.2s, padding-left 0.2s;
}

.dropdown li a:hover {
  background: rgba(0,0,0,0.15);
  padding-left: 1.5rem;
}

.dropdown li:not(:last-child) a {
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .site-header {
    background: rgba(38, 69, 122, 0.95);
  }
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    justify-content: flex-end;
    padding: 0.75rem;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(38, 69, 122, 0.98);
    flex-direction: column;
    padding: 0;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links > li > a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-shadow: none;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(0,0,0,0.3);
    border-radius: 0;
    box-shadow: none;
  }
  .has-dropdown.open .dropdown {
    display: block;
  }
  .dropdown li a:hover {
    padding-left: 1.25rem;
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  animation: kenburns 30s ease-in-out infinite alternate;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.hero-slide.active {
  opacity: 1;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem 2rem;
  z-index: 5;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  max-width: 900px;
}

.hero .tagline {
  font-size: 1.35rem;
  color: #fff;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  max-width: 700px;
}

@media (max-width: 768px) {
  .hero {
    display: none;
  }
  .site-header {
    position: relative;
  }
}

.selector {
  padding: 3rem 1rem;
  background: #f5f5f5;
}

.selector-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.selector-card {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  border: 1px solid rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
}

.selector-card h2 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.card-image {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.book-btn {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fb7e37;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
}

.selector-card p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.selector-card .contact {
  font-weight: 600;
  margin-top: auto;
}

.selector-card a {
  color: #fb7e37;
}

.galleries {
  padding: 3rem 1rem;
  background: #fff;
}

.gallery-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-column {
  flex: 1;
  min-width: 0;
}

.gallery-column h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: #333;
}

@media (max-width: 768px) {
  .gallery-grid {
    flex-wrap: wrap;
  }
  .gallery-column {
    min-width: 100%;
  }
}

.about {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

.about h2 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.reviews {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.reviews h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.site-footer {
  background: #000;
  color: #fff;
}

.footer-main {
  padding: 3rem 1rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
  transition: transform 0.3s;
}

.footer-logo a:hover img {
  transform: scale(1.05);
}

.footer-contact h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-contact h4 a {
  text-decoration: none;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-contact .icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.7;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom a {
  color: #93c93e;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo img {
    max-width: 120px;
  }
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}
