/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f9fafb;
  color: #333;
}
nav {
  width: 100%;
  background: #005825;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img.logo-img {
   border-radius: 20%;
  height: 50px;
  width: auto;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

/* Hover underline */
nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #FFD700;
  transition: width 0.3s;
}
nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

/* Hamburger menu (hidden on desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

/* Mobile view */
@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: #00732a;
    width: 220px;
    height: 100vh;
    padding: 2rem 1rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
  }

  nav ul.active { right: 0; }

  .menu-toggle { display: flex; }
}

/* Toggle animation (X) */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}





/* HERO SECTION */
.hero {
  position: relative;
  background: url('../images/Group.JPG') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 206, 65, 0.215); /* semi-transparent overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 900px;
  animation: fadeInUp 1.5s ease-out forwards;
}

.hero-logo {
  width: 120px;
  margin-bottom: 1.5rem;
  border-radius: 20%;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons a {
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  margin: 0 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary {
  background: #FFD700;
  color: #004080;
}

.btn-primary:hover {
  background: #FFC107;
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.btn-secondary:hover {
  background: #FFD700;
  color: #004080;
  transform: translateY(-3px);
}

/* Hero Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(50px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-logo {
    width: 100px;
  }
}





/* CORE VALUES */
.core-values {
  text-align: center;
  padding: 4rem 2rem;
  background: #f1f5f9;
}

.core-values h2 {
  font-size: 2.2rem;
  color: #034e00;
  margin-bottom: 1rem;
}

.core-values p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.value-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card img {
  width: 60px;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: #004910;
  margin-bottom: 0.8rem;
}

.value-card p {
  color: #555;
  font-size: 0.95rem;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .values-container {
    flex-direction: column;
    align-items: center;
  }

  .value-card {
    width: 80%;
  }
}

.value-card i {
  color: #FFD700; /* Gold icon color */
  margin-bottom: 1rem;
  transition: transform 0.3s, color 0.3s;
}

.value-card:hover i {
  transform: scale(1.2);
  color: #ffca28;
}




/* HIGHLIGHTS SECTION */
.highlights {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
}

.highlights h2 {
  font-size: 2.2rem;
  color: #003610;
  margin-bottom: 1rem;
}

.highlights p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.highlights-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.highlight-card {
  background: #f1f5f9;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card i {
  color: #011931;
  margin-bottom: 1rem;
  transition: transform 0.3s, color 0.3s;
}

.highlight-card h3 {
  color: #005521;
  margin-bottom: 0.8rem;
}

.highlight-card p {
  color: #555;
  font-size: 0.95rem;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.highlight-card:hover i {
  transform: scale(1.2);
  color: #FFD700;
}

/* Responsive */
@media (max-width: 768px) {
  .highlights-container {
    flex-direction: column;
    align-items: center;
  }

  .highlight-card {
    width: 80%;
  }
}


/* JOIN KUCSA / CTA SECTION */
.join-kucsa {
  background: #003e23;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}

.join-kucsa h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.join-kucsa p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-join {
  display: inline-block;
  background: #FFD700;
  color: #002d1f;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 3rem;
  transition: transform 0.3s, background 0.3s;
}

.btn-join:hover {
  background: #FFC107;
  transform: translateY(-3px);
}

.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #FFD700;
}

.stat p {
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .stats {
    flex-direction: column;
    gap: 2rem;
  }
}




/* FOOTER BASE */
.footer {
  position: relative;
  background: linear-gradient(180deg, #16fe05 0%, #0e2500 100%);
  color: #fff;
  padding: 6rem 2rem 2rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('../images/Group.JPG') repeat-x;
  background-size: cover;
  z-index: 0;
}

/* Newsletter */
.footer-newsletter {
  text-align: center;
  margin-bottom: 3rem;
  z-index: 1;
  position: relative;
}

.footer-newsletter h3 {
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.footer-newsletter input[type="email"] {
  padding: 0.6rem 1rem;
  border-radius: 5px 0 0 5px;
  border: none;
  outline: none;
  width: 250px;
}

.footer-newsletter button {
  padding: 0.6rem 1rem;
  border-radius: 0 5px 5px 0;
  border: none;
  background: #FFD700;
  color: #004080;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-newsletter button:hover {
  background: #FFC107;
}

/* Footer Container */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.footer-section h3 {
  color: #FFD700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: #f1f1f1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #FFD700;
}

/* Social Media */
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  margin-right: 1.5rem;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s;
}

.footer-social a i {
  font-size: 1.5rem;
}

.footer-social a:hover {
  color: #FFD700;
}

/* Tooltip */
.footer-social a[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD700;
  color: #004080;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* Legal Section */
.footer-legal {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.footer-legal a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-legal a:hover {
  color: #FFD700;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .footer-links ul li {
    display: inline-block;
    margin: 0 0.5rem 0.5rem 0.5rem;
  }

  .footer-social a {
    display: block;
    margin: 0.5rem 0;
  }

  .footer-newsletter input[type="email"] {
    width: 70%;
    margin-bottom: 0.5rem;
    border-radius: 5px;
  }

  .footer-newsletter button {
    width: 50%;
    border-radius: 5px;
  }
}




