/* Navigation */
.navbar {
  background-color: #ffffff;
  padding: 1rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo,
.logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
  text-decoration: none;
}

.nav-links a {
  margin-left: 2rem;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* Hero Section */
.hero {
  background: linear-gradient(-45deg, #1a5f7a, #2c3e50, #234666, #2980b9);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  padding: 8rem 5% 5rem 5%;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  /* animation: float-content 6s ease-in-out infinite; */
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  animation: glow 2s ease-in-out infinite alternate;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #ffffff, #f0f0f0, #ffffff);
  background-size: 200% auto;
  color: white;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shine 3s linear infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s infinite;
}

/* Animations */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes float-content {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2),
      0 0 20px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.2);
  }

  to {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
      0 0 30px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.3);
  }
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) translateX(20px);
    opacity: 0;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .hero {
    padding: 6rem 2% 3rem 2%;
  }
}

/* Features Section */
.features {
  padding: 5rem 5%;
  background-color: #f9f9f9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card i {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.coming-soon-ribbon {
  position: absolute;
  top: 25px;
  right: -35px;
  padding: 5px 30px;
  background-color: #08457e;
  color: white;
  font-size: 0.8rem;
  transform: rotate(45deg);
  /* Add these properties for better appearance */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 150px; /* Fixed width to ensure consistency */
}
/* Benefits Section */
.benefits {
  padding: 5rem 5%;
  background-color: white;
}

.benefits-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

/* App Store Section */
.app-store {
  padding: 5rem 5%;
  background-color: #f9f9f9;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  padding: 3rem 5%;
  text-align: center;
}

/* Login Button Styles */
.login-button {
  background-color: transparent;
  color: #2c3e50;
  padding: 0.7rem 1.5rem;
  border: 2px solid #2c3e50;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.login-button:hover {
  background-color: #2c3e50;
  color: white;
}

.login-button.subtle {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-width: 1px;
  opacity: 0.8;
}

/* Mobile Menu Button Styles */
.mobile-menu-button {
  display: none;
  /* Hide by default on larger screens */
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #2c3e50;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .mobile-menu-button {
    display: block;
    /* Show only on mobile */
  }

  .nav-content {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-links {
    order: 3;
    width: 100%;
    margin-top: 1rem;
    display: none;
  }

  .nav-links.active {
    display: block;
  }
}

.cta-button {
  background-color: #27ae60;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  display: inline-block;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
}

.cta-button:hover {
  background-color: #219a52;
  /* Darker shade for hover */
}

.regular-button {
  background-color: #295ca5;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(39, 75, 174, 0.7);
}

.regular-button:hover {
  background-color: #1c4b8c;
  /* Darker shade for hover */
}

/* Mobile responsiveness fixes */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .nav-content {
    position: relative;
    padding: 0 1rem;
  }

  .nav-links {
    display: none;
  }

  .login-button {
    margin-left: 0;
    display: inline-block;
    position: static;
    /* Changed from absolute */
  }

  /* Adjust navbar padding for mobile */
  .navbar {
    padding: 1rem 2%;
  }

  /* Make sure buttons are visible on mobile */
  .cta-button,
  .login-button {
    display: inline-block;
    margin: 0.5rem;
  }

  /* Adjust hero section padding for mobile */
  .hero {
    padding: 6rem 2% 3rem 2%;
  }
}

/* Blurb Section Styles */
.blurb {
  padding: 5rem 5%;
  background-color: white;
}

.blurb-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.blurb-content h1 {
  color: #2c3e50;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.blurb-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legacy-link {
  text-align: center;
  padding: 2rem 5%;
  background-color: #f0f0f0;
  border-top: 1px solid #e0e0e0;
}

.legacy-link p {
  margin-bottom: 1rem;
  color: #666;
}

.legacy-link a {
  color: #2c3e50;
  text-decoration: underline;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.legacy-link a:hover {
  color: #1a5f7a;
}
