:root {
  --bg-color: #2b3e75;
  --text-color: #f1f5f9;
  --link-color: #f1f5f9;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: clamp(20px, 6.5vw, 28px);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(32px, 8vw, 56px) clamp(16px, 5vw, 24px);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.logo-container {
  background-color: #ffffff;
  display: inline-flex;
  padding: clamp(24px, 6vw, 32px) clamp(32px, 10vw, 48px);
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 95%;
  max-width: 650px;
  box-sizing: border-box;
}

.logo-container img {
  max-height: clamp(120px, 30vw, 160px);
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block;
  object-fit: contain;
  transform: scale(1.48);
}

.info-section {
  margin-bottom: 36px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}

.info-section p:first-child {
  font-weight: 600;
  font-size: 1.15em;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.info-section p {
  margin: 0 0 8px 0;
  color: #e2e8f0;
}

.info-section a {
  display: inline-block;
  margin-top: 8px;
  color: #38bdf8;
  font-weight: 500;
  text-decoration: none;
  background: rgba(56, 189, 248, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.info-section a:hover {
  background: rgba(56, 189, 248, 0.2);
  transform: translateY(-2px);
  color: #bae6fd;
}

.hours-section {
  margin-bottom: 40px;
}

.hours-section p {
  margin: 0;
  color: #cbd5e1;
}

.map-container {
  width: 95%;
  max-width: 650px;
  aspect-ratio: 1 / 1;
  border-radius: clamp(16px, 5vw, 24px);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (min-width: 600px) {
  .map-container {
    aspect-ratio: 13 / 9;
  }
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  background-color: transparent;
}

.footer-content {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 24px clamp(16px, 5vw, 24px);
  box-sizing: border-box;
  text-align: center;
}

.footer-content p {
  margin: 0;
  font-size: 15px;
  color: #94a3b8;
}

@media (min-width: 1024px) {

  .container,
  .footer-content {
    width: 80%;
    max-width: 800px;
  }

  body {
    font-size: 18px;
  }

  .logo-container {
    width: 95%;
    max-width: 650px;
    padding: 24px 40px;
  }

  .logo-container img {
    max-height: 100px;
    width: 100%;
  }

  .map-container {
    width: 95%;
    max-width: 650px;
  }
}

/* Screen reader only class for SEO and accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}