/* Tailwind migration: legacy CTA/jumbotron styles removed to avoid conflicts */


/* Use clamp() for fluid, bounded typography */
.jumbotron h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  margin: 0 0 10px;
  color: #00e5ff;
}

.jumbotron p {
  font-size: clamp(1rem, 3vw, 2rem);
  margin: 0;
  color: #b3e5ff;
}

@media (max-width: 768px) {
  .jumbotron {
    padding: 24px;
    margin: 32px auto;
    width: 92%;
  }
}
/* styles.css */

/* Reset default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Features Section Layout */
.features-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin: 60px auto;
  max-width: 1000px;
  padding: 0 20px;
}

/* Vision section styling */
.vision-section {
  max-width: 1000px;
  margin: 40px auto 20px;
  padding: 28px 24px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
.vision-section h2 {
  color: #00e5ff;
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.vision-section p {
  line-height: 1.7;
  color: #cfe8ee;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
}

body {
  margin: 0;
  background-color: #001f3f; /* Dark blue */
  color: #00ffff; /* Cyan */
  font-family: 'Roboto', sans-serif;
  /* Allow vertical scrolling so footer is reachable; prevent horizontal scroll */
  overflow-x: hidden;
  overflow-y: auto;
}

a {
  color: #00ffff; /* Cyan */
}

header {
  background-color: transparent; /* transparent header */
  color: #c9d6de;
  padding: 10px 20px;
  display: flex;
  justify-content: flex-end; /* nav to the right */
  align-items: center;
  position: relative;
  z-index: 5;
  box-shadow: none;
  border: none;
}

header nav ul li a {
  color: #ffffff; /* light links for contrast */
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5); /* subtle shadow to improve legibility */
}

h1, h2, h3, h4, h5, h6 {
  color: #00ffff; /* Cyan */
}

/* Let Tailwind control nav layout; keep only minimal resets */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li {
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #00ffff; /* Cyan */
}

main {
  position: relative;
  z-index: 0;
}

/* Tailwind migration: legacy 3D overlay positioning removed */

.intro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #00ffff; /* Cyan */
  z-index: 1; /* Ensure content is above the 3D scene */
}

/* Tailwind migration: legacy .cta-button styles removed */

.live-status {
  text-align: center;
  padding: 50px 20px;
  background-color: rgba(0, 31, 63, 0.8); /* Semi-transparent dark blue */
}

.live-status h2 {
  color: #00ffff; /* Cyan */
}

/* Footer links */
footer a {
  color: #00ffff; /* Cyan */
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

/* Footer centering */
footer {
  text-align: center;
}

/* Nav icon sizing */
.nav-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* (Removed enhanced nav button styles to keep header transparent with simple links) */
/* Mobile-specific styles */
@media only screen and (max-width: 768px) {
  /* Make canvas shorter on mobile to reduce scroll */
  #3d-container {
    height: 68vh;
  }

  /* Put status card above CTAs on mobile */
  .dapp-cta-container {
    flex-direction: column;
  }
  .status-column {
    order: 1;
  }
  .cta-column {
    order: 2;
  }

  /* Alternatively, target the intro section directly */
  .intro {
    top: 100px;
  }

  /* Adjust the position of the 3D container if necessary */
  #3d-container {
    margin-top: 20px;
  }

 
}
