/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Hind, sans-serif;
  line-height: 1.6;
  background: #1F1B18;
background: linear-gradient(180deg,rgba(31, 27, 24, 1) 0%, rgba(31, 27, 24, 1) 70%, rgba(40, 30, 18, 1) 85%, rgba(60, 37, 12, 1) 95%, rgba(80, 43, 5, 1) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 800px;
  padding: 2rem;
  text-align: center;
}

/* Header */
header {
  margin-bottom: 1rem;
}

.logo h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
  margin-bottom: 2rem;
}

.hero-title {
  font-family: Inknut Antiqua;
  color: #ea7d0f;
  font-weight: 400;
  font-style: Regular;
  font-size: 36px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 1em;
}

.hero-subtitle {
  font-family: Hind;
  color: #fff;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 0.75em;
}

/* Email Form */
.email-form {
  margin-bottom: 2rem;
}

.stay-updated {
  font-family: Hind;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  color: #fff;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

#email {
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  border: none;
  border-bottom: 1px solid #514F4D;
  outline: none;
  transition: all 0.3s ease;
  background: none;
  color: white;
}


.btn-primary {
  color: white;
  border: none;
  padding: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: Hind;
  background: #EA7D0F;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;

}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.form-message {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-message.success {
  color: #27ae60;
  opacity: 1;
}

.form-message.error {
  color: #e74c3c;
  opacity: 1;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.social-link {
  color: #7f8c8d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #667eea;
}

/* Footer */
.footer-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .input-group {
    flex-direction: row;
    max-width: 500px;
  }

  #email {
    flex: 1;
  }

  .btn-primary {
    flex-shrink: 0;
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero {
    padding: 1rem 1.5rem;
  }

  .container {
    padding: 1rem;
  }

  .social-links {
    gap: 1rem;
    
  color: #fff;
  }
}

/* Loading Animation */
.btn-primary.loading {
  opacity: 0.7;
  cursor: not-allowed;
}
.coming-soon{
  font-family: Hind;
  color: #CCC1BB;

font-weight: 300;
font-style: Light;
font-size: 16px;
leading-trim: NONE;
line-height: 150%;
letter-spacing: 0%;
vertical-align: middle;

}

.btn-primary.loading::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 0.5rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
