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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f9fc;
  color: #111;
  line-height: 1.6;
  padding: 20px;
}

/* Layout Container */
.container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

/* Logo Styling */
.logo {
  height: 60px;              /* controls size */
  width: auto;               /* keeps aspect ratio */
  border-radius: 50%;        /* makes it circular if square */
  border: 2px solid #2ecc71; /* green border for branding */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* subtle shadow */
  padding: 5px;              /* breathing space inside border */
  background-color: #fff;    /* clean background */
  transition: transform 0.3s ease;
}

/* Hover effect */
.logo:hover {
  transform: scale(1.1);     /* slight zoom on hover */
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}
.site-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0ad46f;
  margin-left: 15px;
}

.header nav a {
  margin-left: 12px;
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

.header nav a:hover {
  text-decoration: underline;
}

/* Sections */
section {
  margin: 40px 0;
}

h1, h2, h3 {
  margin-bottom: 15px;
  font-weight: bold;
}

p {
  margin-bottom: 12px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 20px;
  background: #eef5ff;
  border-radius: 10px;
}

.hero h1 {
  font-size: 1.7rem;
  margin-bottom: 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}

.btn:hover {
  background: #005fcc;
}

/* Mission Quote */
blockquote {
  border-left: 4px solid #007bff;
  padding: 12px 15px;
  background: #f0f8ff;
  margin-bottom: 15px;
  font-style: italic;
}

/* How It Works */
.steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 20px;
}

.step {
  background: #f7f9ff;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #007bff;
}

/* Why Join */
.why-join ul {
  list-style: none;
}

.why-join li {
  padding: 8px 0;
}

/* CTA */
.cta {
  text-align: center;
  padding: 25px;
  background: #eef5ff;
  border-radius: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}
footer p {
  color: #555;
  font-size: 0.9rem;
}

/* Hamburger Button */
.hamburger {
  display: none;
  width: 30px;
  height: 25px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.4s ease;
}

/* When hamburger is active (turn into X) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile menu hidden by default */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 15px;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.3s ease;
  position: absolute;
  z-index: 999;
  right: 20px;
  top: 88px;
  
}

/* When menu opens */
.nav-mobile.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 700px) {
  .nav-desktop {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (min-width: 701px) {
  .nav-mobile {
    display: none !important;
  }
}
@media (max-width: 500px) {
  .hero h1 {
    font-size: 75%;
    font-weight: 800;
    
  }
}
