/* Custom font for a clean, modern look */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Momo+Trust+Display&display=swap');

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    /* Set the background to solid white for maximum contrast */
    background-color: #ffffff; 
}

.nav-font {
  font-family: "Momo Trust Display", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* .gradient-text {
    font-weight: 800;
    background: linear-gradient(45deg, #DE0F0F, #FF7B2C,#FAA300, #3A2D78);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s ease-in-out infinite;
}
@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%;}
    50% { background-position: 100% 50%;}
} */

/* Floating Blob Animation */
.blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    animation: float 20s infinite ease-in-out alternate;
    mix-blend-mode: multiply;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -50px) scale(1.2);
    }
    100% {
        transform: translate(-30px, 50px) scale(1);
    }
}

/* Optional: Gradient text for "Coming Soon" */
.gradient-text {
    font-weight: 600;
    background: linear-gradient(90deg, #DE0F0F, #FF7B2C,#FAA300, #FFE7BB);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite ease-in-out;
    background-size: 200%;
}

@keyframes shine {
    0%, 100% { background-position: 0% 50%;}
    50% { background-position: 100% 50%;}
}

/* Route links styling */
.routes-section {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.route-card {
  background: white;
  border: 2px solid #f4f4f5;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  text-align: left;
}

.route-card:hover {
  border-color: #FF7B2C;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 123, 44, 0.2);
}

.route-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.route-label {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.route-url {
  color: #FF7B2C;
  text-decoration: none;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  word-break: break-all;
  display: inline-block;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}

.route-url:hover {
  color: #f97316;
  text-decoration: underline;
}

.route-note {
  color: #9ca3af;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .routes-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .route-card {
    padding: 1.25rem;
  }
}
