/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #0a1630;
  --color-primary: #00aaff;
  --color-secondary: #ffbd2e;
  --color-highlight: #00d1b2;
  --color-text: #ffffff;
  --transition-fast: 0.2s ease;
  --transition-med: 0.4s ease;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--color-text);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-secondary);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

nav .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav .nav-links li a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  font-size: 22px;
}

nav .nav-links li a:hover {
  color: var(--color-secondary);
}

nav .menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--color-text);
  background: none;
  border: none;
}

/* Hero section */
#hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  overflow: hidden;
  /* The hero image shows through without overlays; background fallback color */
  background: var(--color-bg);
  /* reserve space below the transparent nav so the hero starts after the menu */
  padding-top: 6rem;
}

/* Hero background image container */
#hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* place the background just behind the floating coins, but above the default section background */
  z-index: 0;
  overflow: hidden;
}

#hero .hero-bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

#hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 1rem;
}

#hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

#hero h2 {
  font-size: 1.6rem;
  font-weight: 500;
  height: 2rem;
  color: var(--color-secondary);
  min-height: 1.8rem;
}

#hero .cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: var(--color-secondary);
  color: var(--color-bg);
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

#hero .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 189, 46, 0.4);
}

/* Floating coins container */
#hero .floating-coins {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* place coins above the hero background */
  z-index: 1;
}

.coin {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* golden coins */
  background: radial-gradient(circle at center, #ffde7d 0%, #ffbd2e 40%, #d58c00 100%);
  box-shadow: 0 0 8px rgba(255, 189, 46, 0.7);
  animation: floatCoin linear infinite;
  opacity: 0;
}

@keyframes floatCoin {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh) scale(1.2);
    opacity: 0;
  }
}

/* Content sections */
.content-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity var(--transition-med), transform var(--transition-med);
}

.content-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Alternate background styling */
.content-section.alt {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Large decorative icons for sections */
.section-icon {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

/* Ensure content appears above the icon */
.content-section.alt > *:not(.section-icon) {
  position: relative;
  z-index: 1;
}

.content-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
  text-align: center;
}

.content-section p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Card layout */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

/* Placeholder images inside cards */
.card-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
  object-fit: cover;
}

/* Image for seed or section placeholders */
.section-image {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto 1rem auto;
  border-radius: 12px;
  object-fit: cover;
}

.card p {
  font-size: 1rem;
}

/* Ordered & unordered lists */
ol {
  margin-left: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

ol li {
  margin-bottom: 0.6rem;
}

ul.values-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}

ul.values-list li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

ul.values-list li i {
  color: var(--color-secondary);
}

/* Join section styling */
.join-section {
  text-align: center;
}

.join-section .cta-btn {
  margin-top: 1rem;
}

.cta-btn.secondary {
  background: var(--color-primary);
  color: var(--color-bg);
}

.cta-btn.secondary:hover {
  box-shadow: 0 10px 20px rgba(0, 170, 255, 0.4);
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.6);
  padding: 1.5rem 1rem;
  color: var(--color-text);
}

footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

footer .socials a {
  color: var(--color-text);
  margin: 0 0.5rem;
  font-size: 1.4rem;
  transition: color var(--transition-fast);
}

footer .socials a:hover {
  color: var(--color-secondary);
}

/* Responsive design */
@media (max-width: 768px) {
  nav .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(10, 22, 48, 0.95);
    flex-direction: column;
    width: 200px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-med);
  }
  nav .nav-links.open {
    max-height: 300px;
  }
  nav .nav-links li {
    padding: 0.8rem 1rem;
    text-align: right;
  }
  nav .menu-toggle {
    display: block;
    cursor: pointer;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav .nav-links {
    display: none;
    position: absolute;
    top: 4.5rem;
    right: 1rem;
    background: rgba(10, 22, 48, 0.95);
    border-radius: 12px;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
  }

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

  .menu-toggle {
    display: block;
  }

  nav .nav-links li {
    text-align: right;
  }
}
.get-involved-list {
  list-style: none;
  padding-left: 0;
  text-align: center;
}
