* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #1f1f1f;
  background-image: url('images/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #f5f5f5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 34px 24px 24px;
  background-color: transparent;
  border-bottom: none;
}

.site-header > a {
  display: inline-block;
}

.logo {
  width: min(86vw, 880px);
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.66));
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px auto 0;
  padding: 0 12px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  color: #fff7a7;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  background: rgba(30, 30, 30, 0.34);
  border: 1px solid rgba(212, 176, 106, 0.45);
  border-radius: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(212, 176, 106, 0.9);
  color: #1f1f1f;
  text-shadow: none;
}

main {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.intro,
.page-heading,
.contact-card,
.review-card,
.details div,
.gallery h2,
footer {
  background-color: rgba(30, 30, 30, 0.36);
  border: 1px solid rgba(212, 176, 106, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(2px);
}

.intro,
.page-heading {
  text-align: center;
  max-width: 980px;
  margin: 34px auto;
  padding: 38px 32px;
  border-radius: 18px;
}

.intro h1,
.page-heading h1 {
  margin: 0 0 18px;
  font-size: 3rem;
  line-height: 1.15;
  color: #fff7a7;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.62);
}

.intro p,
.page-heading p {
  max-width: 920px;
  margin: 0 auto;
  font-size: 1.35rem;
  line-height: 1.75;
  font-weight: 700;
  color: #f5f5f5;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.72);
}

.button-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.cta-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 58px;
  padding: 16px 34px;
  color: #1f1f1f;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: 8px;
  transition: transform 0.2s, background-color 0.2s;
}

.cta-button {
  background-color: #fff7a7;
}

.secondary-button {
  background-color: rgba(255, 247, 167, 0.86);
}

.cta-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  background-color: #ffffff;
}

.cta-button:active,
.secondary-button:active {
  transform: scale(0.97);
}

.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 34px 40px 72px;
  text-align: center;
}

.details div,
.contact-card,
.review-card {
  border-radius: 16px;
  padding: 34px;
}

.details h2,
.contact-card h2 {
  margin: 0 0 15px;
  font-size: 1.8rem;
  color: #fff7a7;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

.details p,
.contact-card p {
  margin: 0;
  color: #f5f5f5;
  font-size: 1.15rem;
  line-height: 1.65;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.gallery {
  padding: 22px 32px 72px;
  text-align: center;
}

.gallery h2 {
  display: inline-block;
  margin: 0 auto 30px;
  padding: 18px 36px;
  border-radius: 16px;
  font-size: 2.4rem;
  color: #fff7a7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-grid img {
  width: 100%;
  height: 310px;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 247, 167, 0.28);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s, box-shadow 0.25s;
}

.gallery-grid img:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 10px 40px 72px;
}

.contact-card {
  text-align: center;
}

.contact-card .cta-button {
  width: 100%;
  margin-top: 24px;
}

.michigan-map {
  display: block;
  width: min(76%, 260px);
  margin: 26px auto 0;
  opacity: 0.9;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.42));
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 10px 40px 72px;
}

.review-card p {
  margin: 0 0 20px;
  color: #f5f5f5;
  font-size: 1.35rem;
  line-height: 1.6;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.review-card span {
  color: #fff7a7;
  font-weight: 800;
}

footer {
  text-align: center;
  padding: 34px 20px;
  border-right: none;
  border-bottom: none;
  border-left: none;
  border-radius: 0;
}

footer p {
  margin: 10px 0;
  color: #f5f5f5;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

@media (max-width: 950px) {
  .details,
  .gallery-grid,
  .contact-layout,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .details,
  .gallery,
  .contact-layout,
  .reviews-grid {
    padding-right: 20px;
    padding-left: 20px;
  }

  .intro h1,
  .page-heading h1 {
    font-size: 2.15rem;
  }

  .intro p,
  .page-heading p {
    font-size: 1.12rem;
  }
}

@media (max-width: 560px) {
  body {
    background-attachment: scroll;
  }

  .site-header {
    padding: 24px 14px 16px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .site-nav a {
    padding: 10px 8px;
    font-size: 0.95rem;
  }

  .intro,
  .page-heading {
    margin: 22px 16px;
    padding: 30px 22px;
  }

  .gallery-grid img {
    height: 260px;
  }
}
