/* Alignment fixes for horizontal / landscape orientation */

/* Center header nav in viewport — equal padding both sides */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: clamp(1rem, 5vw, 2.5rem);
  padding-right: clamp(1rem, 5vw, 2.5rem);
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.5rem;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
}

/* Ensure sections don’t stick to one side on wide screens */
.section {
  padding-left: clamp(1rem, 5vw, 2.5rem);
  padding-right: clamp(1rem, 5vw, 2.5rem);
}

/* Hero: comfortable vertical centering in landscape */
@media (orientation: landscape) and (min-height: 28rem) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .nav {
    gap: 0.75rem 2rem;
  }

  .nav-link {
    white-space: nowrap;
  }
}

/* Google Maps embed */
.map-embed {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45, 42, 38, 0.08);
}

.map-embed iframe {
  display: block;
  min-height: 260px;
}

/* Wide screens: keep content column centered, not stretched */
@media (min-width: 900px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .details,
  .location {
    margin-left: auto;
    margin-right: auto;
  }
}
