* {
  box-sizing: border-box;
}

html {
  background: #000;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #18120a 0%, #000 45%, #000 100%);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  animation: pageFadeIn 700ms ease both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-shell {
  position: relative;
  width: min(100%, 1400px);
  margin: 0 auto;
  overflow: hidden;
}

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

.desktop-hotspots {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.hotspot {
  position: absolute;
  bottom: 5.5%;
  height: 18.5%;
  border-radius: 16px;
  outline: 0;
  transition: background 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.hotspot:hover,
.hotspot:focus-visible {
  background: rgba(255, 215, 0, 0.18);
  box-shadow:
    0 0 18px rgba(255, 215, 0, 0.8),
    0 0 42px rgba(255, 215, 0, 0.45),
    inset 0 0 18px rgba(255, 255, 255, 0.15);
  transform: scale(1.04);
}

.about {
  left: 4.2%;
  width: 13.5%;
}

.ministries {
  left: 20%;
  width: 13.5%;
}

.sermons {
  left: 35.9%;
  width: 13.5%;
}

.events {
  left: 51.7%;
  width: 13.5%;
}

.give {
  left: 67.5%;
  width: 13.5%;
}

.contact {
  left: 83.4%;
  width: 12.4%;
}

.mobile-menu {
  display: none;
  padding: 18px;
  gap: 12px;
  grid-template-columns: 1fr;
}

.mobile-menu a,
.page-card a.button {
  display: block;
  text-decoration: none;
  color: #111;
  background: linear-gradient(135deg, #ffe680, #c99823);
  border-radius: 12px;
  padding: 15px 18px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.25);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.page-card a.button:hover,
.page-card a.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(255, 215, 0, 0.5);
}

.page-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.page-card {
  width: min(92vw, 880px);
  padding: clamp(28px, 6vw, 70px);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    rgba(0,0,0,0.72);
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.12);
  text-align: center;
}

.page-card h1 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 6vw, 4.5rem);
  color: #f5d46a;
}

.page-card p {
  margin: 0 auto 26px;
  max-width: 680px;
  line-height: 1.7;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
}

.page-card a.button {
  display: inline-block;
  min-width: 180px;
}

@media (max-width: 800px) {
  .desktop-hotspots {
    display: none;
  }

  .mobile-menu {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}