@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  min-height: 100vh;
  background: url('background.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(240, 237, 233, 1);
  filter: blur(3px);
}

.overlay {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.logo {
  max-width: 500px;
  margin-bottom: 20px;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

h4 {
  font-weight: 400;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #514C44;
}

h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #514C44;
}

.countdown {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.countdown div {
  text-align: center;
  min-width: 70px;
}

.countdown span {
  font-size: 48px;
  font-weight: 600;
  display: block;
  color: #514C44;
}

.countdown small {
  font-size: 14px;
  opacity: 0.8;
}

/* ✅ New Contact Message Styling */
.contact-message {
  font-size: 16px;
  color: #514C44;
  margin-top: 10px;
  max-width: 420px;
  line-height: 1.6;
}

.contact-message a {
  color: #514C44;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #514C44;
  transition: 0.3s;
}

.contact-message a:hover {
  color: #333;
  border-bottom-color: #333;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 10px;
  text-align: center;
  color: #514C44;
  background: rgba(255,255,255,0.3);
  font-size: 14px;
}

/* Tablets */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
  .countdown span {
    font-size: 36px;
  }
  .logo {
    max-width: 200px;
  }
}

/* Phones */
@media (max-width: 480px) {
  h1 {
    font-size: 22px;
  }
  h4 {
    font-size: 14px;
  }
  .countdown {
    gap: 10px;
  }
  .countdown span {
    font-size: 30px;
  }
  .contact-message {
    font-size: 14px;
    max-width: 280px;
  }
  .site-footer {
    font-size: 13px;
    padding: 15px 5px;
  }
}
