* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
}

.poster {
  position: relative;
  width: 480px;
  min-height: 680px;
  background-image: url('https://images.pexels.com/photos/3997989/pexels-photo-3997989.jpeg?auto=compress&cs=tinysrgb&w=800');
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(50, 40, 30, 0.45);
}

.card {
  position: relative;
  z-index: 1;
  background: rgba(180, 170, 155, 0.30);
  border-radius: 12px;
  margin: 32px;
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: calc(100% - 64px);
}

.renovation-text {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.headline {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.exclaim {
  color: #ffffff;
}

.hours {
  margin-bottom: 28px;
}

.open {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.closed {
  color: #e8e0d8;
  font-size: 1rem;
  font-weight: 400;
}

.website {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

@media (max-width: 520px) {
  .poster {
    width: 100vw;
    min-height: 100vh;
    border-radius: 0;
  }

  .card {
    margin: 24px;
    padding: 32px 20px;
    width: calc(100% - 48px);
  }

  .headline {
    font-size: 2.2rem;
  }

  .renovation-text {
    font-size: 1.1rem;
  }
}
