:root {
  --primary-yellow: #F5B041;
  --primary-dark: #2C3E50;
  --primary-light: #FFF9E6;
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --white: #FFFFFF;
  --gray-light: #F8F9FA;
  --gray-medium: #E9ECEF;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.logo img {
  height: 46px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-yellow);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-yellow);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-toggle::after {
  content: '';
  border: solid var(--text-dark);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: var(--transition);
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(-135deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background-color: var(--gray-light);
  color: var(--primary-yellow);
}

.donate-btn {
  background-color: var(--primary-yellow);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
}

.donate-btn:hover {
  background-color: #E5A331;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  padding: 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero h1 span {
  color: var(--primary-yellow);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-tagline {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary-dark);
  margin-top: 30px;
}

.section {
  padding: 80px 0;
}

.section-light {
  background-color: var(--gray-light);
}

.section-title {
  font-size: 2rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-yellow);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.event-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-content {
  padding: 25px;
}

.event-date {
  display: inline-block;
  background-color: var(--primary-yellow);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.event-title {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.event-location {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.event-description {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.event-btn {
  display: inline-block;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 500;
  transition: var(--transition);
}

.event-btn:hover {
  background-color: var(--primary-yellow);
}

.support-section {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #E5A331 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.support-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.support-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.support-btn {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary-yellow);
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
}

.support-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-content h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.mission-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.8;
}

.mission-highlight {
  background-color: var(--primary-light);
  padding: 30px;
  border-radius: var(--border-radius);
  margin: 40px 0;
  border-left: 4px solid var(--primary-yellow);
}

.mission-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-yellow);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #E5A331;
}

.btn-secondary {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #1A252F;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background-color: var(--gray-medium);
}

.team-photo-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #E5A331 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
  font-weight: 700;
}

.team-info {
  padding: 20px;
}

.team-name {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.9rem;
  color: var(--primary-yellow);
  font-weight: 500;
}

.support-content {
  max-width: 800px;
  margin: 0 auto;
}

.support-content h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.support-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.support-content ol {
  margin-left: 25px;
  margin-bottom: 30px;
}

.support-content ol li {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.8;
}

.support-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.support-images img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.sponsor-section {
  background-color: var(--gray-light);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 50px;
}

.sponsor-section h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group label span {
  color: #E74C3C;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--gray-medium);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-yellow);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-btn {
  width: 100%;
  padding: 15px;
  background-color: var(--primary-yellow);
  color: var(--white);
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.form-btn:hover {
  background-color: #E5A331;
}

.contact-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary-yellow);
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.9;
}

.footer-section a {
  color: var(--white);
  opacity: 0.9;
}

.footer-section a:hover {
  color: var(--primary-yellow);
  opacity: 1;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
}

.newsletter-form button {
  padding: 10px 20px;
  background-color: var(--primary-yellow);
  color: var(--white);
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: #E5A331;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-yellow);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
  
  .contact-image {
    order: -1;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    gap: 0;
  }
  
  .nav-list.active {
    display: flex;
  }
  
  .nav-list li {
    width: 100%;
  }
  
  .nav-link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-medium);
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .donate-btn {
    margin-top: 15px;
    text-align: center;
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .mission-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 25px;
  }
}
