/* Global Styles */
body {
  background-color: #121212;
  color: #f0f0f0;
  font-family: 'Font Medium', sans-serif; /* Replace with your chosen font */
  margin: 0;
  padding: 0;
}

/* Site Header */
.site-header {
  font-size: 2.9rem;
  color: #bbbbbb;
  margin-bottom: 15px;
  text-align: center;
}

/* Hero Section */
.hero {
  background-color: #1e1e1e;
  padding: 60px 20px;
  text-align: center;
  margin: 20px auto;
  max-width: 1200px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero .weather-icon {
  font-size: 100px;
  color: #58c4dc;
  margin: 0 auto 20px;
  display: block;
}

.hero h1 {
  font-size: 3.0rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #cccccc;
}

/* Video Section */
.video-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
}

.video-wrapper {
  background-color: #000;
  border-radius: 10px;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  display: block;
}

/* About Section */
.about {
  background-color: #1e1e1e;
  padding: 40px 20px;
  margin: 20px auto;
  max-width: 1200px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.about p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #cccccc;
}

/* Call-to-Action Section */
.cta {
  text-align: center;
  margin: 40px auto;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.cta a.btn {
  font-size: 1.5rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  background-color: #58c4dc;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta a.btn:hover {
  background-color: #3eaac1;
}

/* Pills container */
.pills {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

/* Pill buttons for Sign Up and Login */
.btn-signup,
.btn-login {
  font-size: 1.2rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Blue filled button for Sign Up */
.btn-signup {
  background-color: #58c4dc;
  color: #121212;
  border: none;
}

.btn-signup:hover {
  background-color: #3eaac1;
}

/* Blue outline button for Login */
.btn-login {
  background-color: transparent;
  border: 2px solid #58c4dc;
  color: #58c4dc;
}

.btn-login:hover {
  background-color: #58c4dc;
  color: #fff;
}

/* Mobile-Friendly Adjustments */
@media (max-width: 576px) {
  .site-header {
    font-size: 2.2rem;
  }
  
  .hero {
    padding: 40px 10px;
    margin: 10px auto;
  }
  
  .hero .weather-icon {
    font-size: 70px;
    margin-bottom: 15px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .video-section {
    flex-direction: column;
    gap: 20px;
    margin: 20px auto;
  }
  
  .about {
    padding: 30px 10px;
    margin: 10px auto;
  }
  
  .about h2 {
    font-size: 2rem;
  }
  
  .about p {
    font-size: 1rem;
  }
  
  .cta {
    margin: 20px auto;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
  
  .cta a.btn {
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
  }
  
  .pills {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }
  
  .btn-signup,
  .btn-login {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
