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

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  overflow-x: hidden;
}

.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)),
    url("../img/banner.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #c8a96b !important;
  font-weight: 700;
}

.contact-top {
  color: #fff;
  font-size: 14px;
}

.hero-content {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
}

.hero-content h5 {
  color: #c8a96b;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.85);
}

.coming-badge {
  display: inline-block;
  background: #c8a96b;
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 20px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px;
}

.countdown-box {
  text-align: center;
  padding: 20px;
  padding-inline: 10px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
}

.countdown-box h2 {
  color: #c8a96b;
  font-weight: 700;
  margin-bottom: 0;
}

.countdown-box span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-box {
  text-align: center;
  padding: 25px;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-box i {
  font-size: 40px;
  color: #c8a96b;
}

.feature-box h6 {
  margin-top: 15px;
  margin-bottom: 0;
}

.contact-card i {
  color: #c8a96b;
  margin-right: 10px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #c8a96b;
  color: #000;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content p {
    font-size: 16px;
  }
}
