:root {
  --gold: #D4AF37;
  --gold-600: #C19A2A;
  --text: #111;
  --text-soft: #fffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  min-height: 100vh;
  background: url('museum-of-future.webp') center center / cover no-repeat fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  overflow-y: scroll;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.75) 35%,
    rgba(0, 0, 0, 0.85) 65%,
    rgba(0, 0, 0, 0.75) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: transparent;
}

.logo {
  width: clamp(320px, 45vw, 860px);
  max-width: 100%;
  margin: 10px auto 28px;
  display: block;
}

h1 {
  color: white;
  font-size: clamp(28px, 3.4vw, 44px);
  font-family: 'Playfair Display', serif;
  letter-spacing: .2px;
}

.quote{
  font-size: 24px;
  color: rgb(214, 214, 214) !important;
}

.paragraph{
  color: white !important;
  margin-top: 28px;
}

p.lede {
  color: var(--text-soft);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 28px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background-color: var(--gold);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  transition: transform .08s ease, background-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 18px rgba(212, 175, 55, 0.28);
}

.logo{
  font-family: 'Epunda Slab', serif;
  color: white;
  font-size: 90px;
  font-weight: 300;
}

h3{
  font-size: 20px;
  color: white;
  margin-top: 28px;
}

.playfield-groups{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 28px;
  align-items: center;
  justify-content: center;
}

.playfield-group-item{
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .08s ease;
}


.playfield-group-item:hover{
  transform: scale(1.02);
}

.playfield-group-item img{
  width: 100%;
}

.contact-btn:hover {
  background-color: var(--gold-600);
}
@media (max-width: 1366px) {
.logo{
  font-size: 50px;
}
}

@media (max-width: 1024px) {
  .playfield-groups{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 28px;
    align-items: center;
    justify-content: center;
  }
  
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  .overlay {
    padding: 24px 16px;
    max-width: 100%;
  }

  .logo {
    width: clamp(180px, 65vw, 420px);
    margin-bottom: 20px;
    font-size: 20px;
  }


  h1 {
    font-size: clamp(22px, 5vw, 30px);
    margin-bottom: 16px;
  }



  p.lede {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 12px;
    margin-bottom: 24px;
  }

  .contact-btn {
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 8px;
    width: auto;
    min-width: 60%;
    justify-content: center;
    text-align: center;
  }

  .playfield-groups{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 28px;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-btn {
    width: 90%;
    font-size: 1rem;
    padding: 14px 20px;
  }

  h1 {
    font-size: 20px;
  }

  .logo {
    width: clamp(160px, 90vw, 360px);
  }
}
