/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  overflow: hidden; /* Prevent scrolling if not needed */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

/* Overlay to darken video */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.652) 0%,
    rgba(0, 6, 33, 0.847) 100%
  );
  z-index: -1;
}

/* Content Container */
.content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typography */
.logo {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(45deg, #c5a059, #f9d976);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.tagline {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d1d1d1;
}

.coming-soon h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.coming-soon p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 600px;
  margin: 0 auto;
}

/* Lead Capture Form */
.notify-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.notify-form input[type="email"] {
  padding: 1rem 1.5rem;
  width: 300px;
  border: 1px solid rgba(197, 160, 89, 0.5);
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.notify-form input[type="email"]:focus {
  border-color: #c5a059;
  background: rgba(0, 0, 0, 0.8);
}

.notify-form input[type="email"]::placeholder {
  color: #aaa;
}

.notify-form button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #c5a059, #e6c27a);
  color: #111;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.notify-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
  background: linear-gradient(45deg, #e6c27a, #c5a059);
}

/* Footer & Social */
footer {
  margin-top: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.social-links a {
  color: #c5a059;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #fff;
}

footer p {
  font-size: 0.8rem;
  color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .coming-soon h2 {
    font-size: 2rem;
  }

  .notify-form {
    flex-direction: column;
    align-items: center;
  }

  .notify-form input[type="email"] {
    width: 100%;
    max-width: 350px;
  }

  .notify-form button {
    width: 100%;
    max-width: 350px;
  }
}
