/* General Reset and Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #fef3c7 0%, #d1fae5 100%); /* Inspired by Tanzanian colors */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #1f2937;
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
}

.hero-content {
  max-width: 36rem; /* Slightly wider for better content fit */
}

.logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.countdown {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e3a8a; /* Blue accent */
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.countdown-segment {
  background: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.countdown-label {
  font-size: 0.9rem;
  margin-left: 0.25rem;
  color: #4b5563;
}

/* Contact Button */
.contact-btn {
  display: inline-block;
  background-color: #1e3a8a; /* Darker blue */
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
  background-color: #1e40af;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact-section {
  max-width: 48rem; /* Slightly wider */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 4rem 1rem;
}

.newsletter input {
  transition: all 0.3s ease;
}

.newsletter input:focus {
  border-color: #1e3a8a;
}

.newsletter button {
  transition: all 0.3s ease;
}

/* Social Media Links */
.social-icon {
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

/* Footer */
footer {
  background-color: #1f2937; /* Slightly lighter dark tone */
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 640px) {
  .countdown {
    font-size: 1.25rem;
    gap: 0.5rem;
  }
  .countdown-segment {
    padding: 0.4rem 0.8rem;
  }
  .logo {
    max-width: 140px;
  }
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .hero-content .subheading {
    font-size: 1rem;
  }
  .contact-section h2 {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .hero-content .subheading {
    font-size: 1.25rem;
  }
  .contact-section h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 4rem 2rem;
  }
  .contact-section {
    padding: 5rem 2rem;
  }
}