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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  overflow: hidden;
  height: 100vh;
}

/* African Color Palette */
:root {
  --primary-orange: #e67e22;
  --secondary-red: #c0392b;
  --accent-yellow: #f39c12;
  --earth-brown: #8b4513;
  --deep-green: #27ae60;
  --warm-gold: #f1c40f;
  --rich-purple: #8e44ad;
  --text-dark: #2c3e50;
  --text-light: #ecf0f1;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

/* Main Container */
.coming-soon-container {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero-section {
  flex: 1;
  background: linear-gradient(
    135deg,
    rgba(230, 126, 34, 0.9) 0%,
    rgba(192, 57, 43, 0.9) 50%,
    rgba(139, 69, 19, 0.9) 100%
  );
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 2rem;
}

/* Diagonal Slant removed */

/* Background Pattern for left section */
.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 2rem 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hover effects removed - static page */

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  padding: 2rem;
}

/* Signup form container */
.signup-form-container {
  text-align: center;
  max-width: 500px;
  width: 100%;
}

.right-content-wrapper {
  max-width: 500px;
  width: 100%;
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

/* Hero Section */
.hero-section {
  margin-bottom: 3rem;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.subtitle {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--warm-gold);
  margin-bottom: 0.8rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.description {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  opacity: 0.9;
  font-weight: 400;
}

.tagline {
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0.8;
  font-weight: 300;
}

/* Countdown Section removed */

/* Signup Section */
.signup-section {
  margin-bottom: 1.5rem;
}

.signup-title {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.signup-description {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* User Type Toggle */
.user-type-toggle {
  display: flex;
  justify-content: center;
  margin: 2rem auto 1.5rem auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 300px;
}

.toggle-btn {
  flex: 1;
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 16px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.toggle-btn.active {
  background: var(--white);
  color: var(--primary-orange);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.toggle-btn[data-type='shopper'] {
  color: var(--accent-gold) !important;
}

/* Signup Forms */
.signup-forms {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.signup-form {
  display: none;
}

.signup-form.active {
  display: block;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.form-group input {
  padding: 10px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.85rem;
}

.form-group input::placeholder {
  color: #999;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.signup-btn {
  width: 100%;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.vendor-btn {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-red)
  );
  color: var(--white);
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.shopper-btn {
  background: linear-gradient(135deg, var(--deep-green), var(--accent-yellow));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

/* Button hover effects removed - static page */

/* Features Preview removed */

/* Footer */
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  padding: 1rem 2rem 2rem;
  background: linear-gradient(
    135deg,
    var(--text-dark) 0%,
    var(--earth-brown) 100%
  );
  color: var(--text-light);
}

.footer p {
  color: var(--white);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Animations removed - static page */

/* Responsive Design */
@media (max-width: 768px) {
  .coming-soon-container {
    flex-direction: column;
  }

  .hero-section {
    flex: none;
    height: 100vh;
  }

  .header {
    padding: 1.5rem 1rem 0;
  }

  .logo h1 {
    font-size: 2rem;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .main-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.8rem;
  }

  .description {
    font-size: 1rem;
  }

  .signup-title {
    font-size: 1.1rem;
  }

  .user-type-toggle {
    max-width: 250px;
  }

  .toggle-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  /* Features preview responsive styles removed */
}

@media (max-width: 480px) {
  .main-content {
    padding: 1rem;
  }

  .main-title {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1.6rem;
  }

  .description {
    font-size: 0.9rem;
  }

  /* Countdown mobile styles removed */

  .form-group input {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .signup-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

/* Loading states */
.form-loading {
  opacity: 0.7;
  pointer-events: none;
}

.form-loading .signup-btn {
  position: relative;
}

.form-loading .signup-btn::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spin animation removed - static page */
