:root {
  --primary-green: #2C6B3C;
  --primary-navy: #1F3F6D;
  --bg-color: #F5F5F0;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #666666;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-navy);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header-coming-soon {
  background-color: var(--white);
  padding: 1.5rem 0;
  flex-shrink: 0;
}

.nav-container {
  display: flex;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-svg {
  height: 50px;
  width: auto;
}

/* Coming Soon Hero */
.hero-coming-soon {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(rgba(31, 63, 109, 0.85), rgba(31, 63, 109, 0.85)), url('./assets/hero.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 4rem 0 2rem 0;
}

.hero-content-coming-soon {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.hero-text-block h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  line-height: 1.1;
  animation: fadeUp 1s ease-out;
}

.hero-text-block p {
  font-size: 1.15rem;
  margin-bottom: 3rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  animation: fadeUp 1s ease-out 0.2s backwards;
  color: rgba(255, 255, 255, 0.9);
}

/* Countdown */
.countdown-container {
  background-color: rgba(44, 107, 60, 0.8);
  border: 1px solid rgba(44, 107, 60, 0.9);
  border-radius: 6px;
  padding: 1.5rem 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeUp 1s ease-out 0.4s backwards;
}

.countdown-title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.time-block .number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.time-block .label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.9);
}

.divider {
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -15px;
}

/* Signup */
.signup-container {
  margin-bottom: 4rem;
  width: 100%;
  max-width: 600px;
  animation: fadeUp 1s ease-out 0.6s backwards;
}

.signup-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.signup-form {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.signup-form input {
  flex-grow: 1;
  padding: 1rem 1.5rem;
  border: none;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  min-width: 0;
}

.btn-notify {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-notify:hover {
  background-color: #245831;
}

/* Signup Feedback */
.signup-feedback {
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.signup-feedback.success {
  background-color: rgba(44, 107, 60, 0.9);
  border: 1px solid rgba(44, 107, 60, 1);
  color: #fff;
}

.signup-feedback.error {
  background-color: rgba(180, 50, 50, 0.85);
  border: 1px solid rgba(180, 50, 50, 1);
  color: #fff;
  margin-bottom: 0.75rem;
}

/* Bottom Icons */
.hero-icons {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: auto;
  padding-top: 2rem;
  animation: fadeUp 1s ease-out 0.8s backwards;
}

.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.icon-svg svg {
  width: 40px;
  height: 40px;
}

.hero-icon-item span {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Footer */
.footer-coming-soon {
  background-color: var(--white);
  padding: 1.5rem 0;
  color: var(--text-dark);
  flex-shrink: 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo .logo-svg {
  height: 35px;
}

.copyright {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.call-us {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-text-block h1 {
    font-size: 2.8rem;
  }

  .countdown-container {
    padding: 1.5rem;
  }

  .time-block {
    min-width: 60px;
  }

  .time-block .number {
    font-size: 2.2rem;
  }

  .hero-icons {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-coming-soon {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .signup-form {
    flex-direction: column;
    gap: 0.5rem;
    background: transparent;
    box-shadow: none;
  }

  .signup-form input {
    border-radius: 4px;
    width: 100%;
  }

  .btn-notify {
    border-radius: 4px;
    width: 100%;
  }

  .hero-text-block h1 {
    font-size: 2.2rem;
  }
  .hero-text-block h1 br,
  .hero-text-block p br {
    display: none;
  }

  .hero-text-block p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .countdown-container {
    padding: 1.25rem 1rem;
    margin-bottom: 2rem;
    width: 100%;
  }

  .countdown-timer {
    gap: 0.5rem;
  }

  .time-block {
    min-width: 0;
    flex: 1;
  }

  .time-block .number {
    font-size: 1.8rem;
  }

  .divider {
    font-size: 1.5rem;
    margin-top: -10px;
  }

  .signup-container {
    margin-bottom: 2.5rem;
  }

  .hero-icons {
    gap: 1.5rem 1rem;
    justify-content: center;
  }

  .hero-icon-item {
    flex-basis: calc(50% - 1rem);
    gap: 0.5rem;
  }
}

@media (max-width: 400px) {
  .hero-text-block h1 {
    font-size: 1.8rem;
  }

  .time-block .number {
    font-size: 1.5rem;
  }

  .time-block .label {
    font-size: 0.7rem;
  }

  .divider {
    font-size: 1.2rem;
  }
}
