* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f6f1ea;
  color: #2f2f2f;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 0 20px;
}

.date {
  font-size: 14px;
  letter-spacing: 2px;
}

.hero h1 {
  font-family: 'Cormorant', serif;
  font-size: 72px;
  font-weight: 300;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 14px;
}

.block {
  padding: 80px 20px;
}

.block h2 {
  font-family: 'Cormorant', serif;
  font-size: 36px;
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: 1px;
}

.block p {
  font-size: 16px;
  line-height: 2;
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  position: relative;
  display: inline-block;
  margin-top: 30px;
  padding: 16px 40px;
  border: 1px solid #2f2f2f;
  text-decoration: none;
  color: #2f2f2f;
  font-size: 13px;
  letter-spacing: 2px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #2f2f2f;
  transition: left 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: #fff;
  transform: translateY(-3px);
}

.btn:hover {
  background: #2f2f2f;
  color: #fff;
}

footer {
  padding: 60px 20px;
  font-size: 13px;
  opacity: 0.7;
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 48px;
  }

  .block {
    padding: 60px 16px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.countdown div {
  text-align: center;
}

.countdown span {
  font-family: 'Cormorant', serif;
  font-size: 40px;
  font-weight: 300;
  display: block;
}

.countdown p {
  font-size: 14px;
  margin-top: 5px;
}
