/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #82B623;
  --primary-dark: #6a9a1b;
  --secondary: #019C8E;
  --secondary-dark: #017d72;
  --text: #2d3748;
  --text-light: #718096;
  --background: #ffffff;
  --background-alt: #f8faf5;
  --white: #ffffff;
  --border: #e2e8f0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.7;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo-img {
  height: 45px;
  width: auto;
}

.logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 36px;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  transition: all 0.3s;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(130, 182, 35, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(130, 182, 35, 0.4);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
  background: linear-gradient(135deg, var(--background-alt) 0%, #e8f5e0 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 60px 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text);
  line-height: 1.2;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
  color: var(--text);
}

.section-title-left {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--primary);
  text-align: left;
}

.section-description {
  font-size: 1.15rem;
  color: var(--text);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Association Section */
.association-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.association-text p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
}

.association-text strong {
  color: var(--primary);
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.association-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rounded-image {
  width: 700px;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.section-cta {
  background: linear-gradient(135deg, var(--background-alt) 0%, #e8f5e0 100%);
  text-align: center;
}

/* Contact */
.contact-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: var(--white);
  border: 2px solid var(--border);
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.contact-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-icon.facebook {
  background-color: #1877f2;
}

.contact-icon.benevolt {
  background-color: var(--secondary);
}

.contact-icon.phone {
  background-color: var(--primary);
}

.contact-icon.email {
  background-color: #ea4335;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: var(--text);
  color: var(--white);
  padding: 28px 0;
  text-align: center;
}

.footer p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Mobile */
@media (max-width: 900px) {
  .association-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .association-image {
    order: -1;
  }

  .rounded-image {
    height: 300px;
  }

  .section-title-left {
    text-align: center;
  }

  .stats-row {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: 70vh;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
  }

  .contact-card {
    padding: 14px 24px;
  }

  .stats-row {
    gap: 24px;
  }

  .stat-number {
    font-size: 2rem;
  }
}
