/* assets/css/style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-green: #60bb48;
  --brand-blue: #006dc7;
  --brand-green-dark: #4a9a35;
  --brand-blue-dark: #0055a0;
  --gray-light: #f8fafc;
  --gray-border: #e2e8f0;
  --text-dark: #1a2a3a;
  --text-muted: #475569;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: var(--text-dark);
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== HEADER ===== */
.site-header {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-placeholder {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-blue) 100%);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
}

.logo-placeholder i {
  font-size: 1.6rem;
  margin-right: 6px;
}

.logo-text h1 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--brand-blue);
}

.logo-text span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brand-green);
  display: block;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-dark);
  transition: 0.2s;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-blue);
  border-bottom: 2px solid var(--brand-blue);
  padding-bottom: 4px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-green);
  padding: 8px 22px;
  border-radius: 40px;
  font-weight: 700;
  color: var(--brand-green);
  transition: 0.2s;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--brand-green);
  color: white;
  border-color: var(--brand-green);
}

.btn-primary {
  background: var(--brand-blue);
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  display: inline-block;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 109, 199, 0.25);
}

.btn-secondary {
  background: var(--brand-green);
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--brand-green-dark);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--brand-blue);
}

/* Hero Section with Background Image + Gradient Overlay */
.hero {
  padding: 100px 0 80px;
  position: relative;
  background-image: url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Gradient Overlay - your brand colors */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(0, 109, 199, 0.85) 0%,
      rgba(96, 187, 72, 0.85) 100%);
  z-index: 1;
}

/* Subtle pattern overlay for texture */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path fill="white" d="M20,20 L30,20 L25,28 Z M70,70 L80,70 L75,78 Z M45,10 L50,18 L40,18 Z M10,45 L18,40 L18,50 Z M90,55 L98,50 L98,60 Z"/><circle cx="50" cy="50" r="4"/><circle cx="80" cy="30" r="3"/><circle cx="20" cy="70" r="3"/></svg>');
  background-repeat: repeat;
  background-size: 40px;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-content {
  flex: 1;
}

.hero-content h2 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.hero-content h2 span {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--brand-green);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
  max-width: 550px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.stat-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

.hero-image {
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 50px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
}

.hero-image i {
  font-size: 4.5rem;
  color: white;
  margin: 0 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-image p {
  margin-top: 24px;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Hero button styles */
.hero .btn-primary {
  background: white;
  color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero .btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 60px 0 40px;
  color: var(--text-dark);
}

.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-blue));
  margin: 12px auto 0;
  border-radius: 3px;
}

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 60px;
}

.card {
  background: white;
  border-radius: 24px;
  padding: 32px 28px;
  flex: 1 1 260px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid var(--gray-border);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px -12px rgba(0, 109, 199, 0.12);
  border-color: transparent;
}

.card i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--brand-blue);
}

/* About Page */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: center;
  margin: 40px 0 60px;
}

.about-text {
  flex: 1.4;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--brand-blue);
}

.values-list {
  margin-top: 32px;
  list-style: none;
}

.values-list li {
  margin: 18px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}

.values-list i {
  color: var(--brand-green);
  width: 28px;
  font-size: 1.3rem;
}

.about-image {
  flex: 1;
  background: linear-gradient(145deg, #e6f7e6, #d9efff);
  border-radius: 32px;
  padding: 60px 30px;
  text-align: center;
}

.about-image i {
  font-size: 4rem;
  color: var(--brand-blue);
}

/* Network page */
.network-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid var(--gray-border);
  padding: 8px 28px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  color: var(--text-muted);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--brand-blue);
  color: white;
  border-color: var(--brand-blue);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.member-card {
  background: white;
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--gray-border);
  transition: 0.25s;
}

.member-card:hover {
  box-shadow: 0 12px 28px -10px rgba(0, 109, 199, 0.1);
  border-color: var(--brand-green);
}

.avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #e6f7e6, #d9efff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  color: var(--brand-blue);
}

/* Events page */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}

.event-item {
  background: white;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  border-left: 5px solid var(--brand-green);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-border);
  border-left-width: 5px;
}

.event-date {
  text-align: center;
  min-width: 100px;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-green);
}

.event-details {
  flex: 2;
}

.event-details h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--brand-blue);
}

/* Contact Page */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin: 50px 0;
}

.contact-form {
  flex: 1;
  background: white;
  padding: 36px;
  border-radius: 28px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 109, 199, 0.1);
}

.contact-info {
  flex: 0.8;
  background: linear-gradient(135deg, #f0f9ff, #f0fdf4);
  padding: 36px;
  border-radius: 28px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  align-items: center;
}

.info-item i {
  color: var(--brand-blue);
  font-size: 1.3rem;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

.social-icons i {
  font-size: 1.5rem;
  color: var(--brand-blue);
  cursor: pointer;
  transition: 0.2s;
}

.social-icons i:hover {
  color: var(--brand-green);
}

/* Footer */
.site-footer {
  background: #0a1a2a;
  color: #cbd5e1;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--brand-green);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
  display: block;
  margin: 12px 0;
  transition: 0.2s;
}

.footer-col a:hover {
  color: var(--brand-green);
}

.copyright {
  text-align: center;
  border-top: 1px solid #1e2a3a;
  padding-top: 30px;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 880px) {
  .mobile-menu {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 18px;
    padding: 24px 0 16px;
  }

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

  .hero-content h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 20px;
  }

  .hero-stats {
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    flex-wrap: wrap;
  }

  .section-title {
    font-size: 1.6rem;
  }
}