:root {
  --purple: #6B4C9A;
  --orange: #F7941D;
  --green: #8DC63F;
  --dark: #333333;
  --light: #f5f5f5;
  --white: #ffffff;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 80px;
}

.nav ul {
  display: flex;
  gap: 25px;
}

.nav a {
  color: var(--dark);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav a:hover {
  color: var(--purple);
  border-bottom-color: var(--purple);
}

.nav .btn-donate {
  background: var(--orange);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 25px;
  border-bottom: none;
}

.nav .btn-donate:hover {
  background: #e8860f;
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--purple);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 430px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.slide-content .btn {
  margin-top: 15px;
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: var(--white);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.3);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.3s ease;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.5);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: #e8860f;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: #5a3d82;
  transform: translateY(-2px);
}

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

.btn-green:hover {
  background: #7ab535;
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  color: var(--purple);
  text-align: center;
  margin-bottom: 40px;
}

.section-title span {
  color: var(--orange);
}

/* Volunteer Section */
.volunteer-section {
  background: linear-gradient(135deg, var(--purple) 0%, #8B6CB5 100%);
  color: var(--white);
  text-align: center;
}

.volunteer-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.volunteer-section p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
}

.volunteer-section a {
  color: var(--orange);
  font-weight: 600;
}

.volunteer-section a:hover {
  text-decoration: underline;
}

/* Hunger Section */
.hunger-section {
  background: var(--light);
}

.hunger-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.hunger-text p {
  margin-bottom: 15px;
  color: #666;
}

.hunger-text blockquote {
  font-style: italic;
  color: var(--orange);
  font-size: 1.2rem;
  border-left: 4px solid var(--orange);
  padding-left: 20px;
  margin: 20px 0;
}

.guidestar-badge {
  margin-top: 30px;
}

/* Process Section */
.process-section {
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.process-step {
  padding: 20px;
}

.process-step h4 {
  color: var(--purple);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.process-step p {
  color: #666;
  font-size: 0.9rem;
}

/* Goals Section */
.goals-section {
  background: var(--light);
}

.goals-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.goals-list {
  list-style: none;
}

.goals-list li {
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.goals-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Team Section */
.team-section {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-member {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid var(--purple);
}

.team-member h4 {
  color: var(--purple);
  margin-bottom: 5px;
}

.team-member p {
  color: #666;
  font-size: 0.9rem;
}

/* Schools List */
.schools-section h3 {
  color: var(--purple);
  margin: 40px 0 20px;
  font-size: 1.5rem;
}

.schools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.school-item {
  padding: 15px;
  background: var(--light);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.school-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.school-item a {
  color: var(--purple);
  font-weight: 500;
}

.school-item a:hover {
  color: var(--orange);
}

.school-item p {
  color: #666;
  font-size: 0.85rem;
  margin-top: 5px;
}

/* Drop Off Locations */
.dropoff-section {
  background: var(--light);
}

.dropoff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.dropoff-item {
  padding: 15px;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--green);
}

/* Contact Form */
.contact-section {
  background: var(--white);
}

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

.contact-form {
  background: var(--light);
  padding: 30px;
  border-radius: 10px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

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

.contact-info {
  padding: 30px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--light);
  border-radius: 10px;
}

.contact-info-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.contact-info-item h4 {
  color: var(--purple);
}

/* Donate Section */
.donate-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.donate-card {
  background: var(--light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.donate-card:hover {
  transform: translateY(-5px);
}

.donate-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.donate-card h3 {
  color: var(--purple);
  margin-bottom: 15px;
}

/* Food List */
.food-list-section {
  background: var(--light);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.food-category {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.food-category h4 {
  color: var(--purple);
  margin-bottom: 10px;
}

/* Sponsors */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sponsor-item {
  padding: 20px;
  background: var(--light);
  border-radius: 10px;
  text-align: center;
}

.sponsor-item img {
  max-height: 100px;
  width: auto;
}

/* News Section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-item {
  background: var(--light);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
}

.news-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-content h3 {
  color: var(--purple);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.news-content .date {
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* Food Fight Section */
.foodfight-section {
  background: linear-gradient(135deg, var(--orange) 0%, #FFB347 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

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

/* Golf Section */
.golf-section {
  text-align: center;
}

.golf-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.golf-detail-card {
  background: var(--light);
  padding: 30px;
  border-radius: 10px;
}

.golf-detail-card h4 {
  color: var(--purple);
  margin-bottom: 10px;
}

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

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

.footer h4 {
  color: var(--orange);
  margin-bottom: 20px;
}

.footer p {
  color: #ccc;
  margin-bottom: 10px;
}

.footer a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--orange);
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: var(--orange);
}

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

.footer-bottom p {
  color: #999;
  font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--orange);
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .schools-grid,
  .dropoff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
  }
  
  .nav.active {
    display: block;
  }
  
  .nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }
  
  .nav li {
    border-bottom: 1px solid #eee;
  }
  
  .nav a {
    display: block;
    padding: 15px 0;
  }
  
  .hero-slider {
    height: 300px;
  }
  
  .slide-content h2 {
    font-size: 1.5rem;
  }
  
  .hunger-content,
  .goals-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid,
  .donate-options,
  .news-grid,
  .golf-details {
    grid-template-columns: 1fr;
  }
  
  .schools-grid,
  .dropoff-grid,
  .food-grid,
  .sponsors-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--purple) 0%, #8B6CB5 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Mission Box */
.mission-box {
  background: var(--purple);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin: 40px 0;
}

.mission-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--orange);
}

/* Story Section */
.story-section {
  background: var(--light);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 768px) {
  .story-content {
    grid-template-columns: 1fr;
  }
}

/* Icons Grid */
.icons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.icon-item {
  text-align: center;
}

.icon-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .icons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mailing List Form */
.mailing-form {
  display: flex;
  max-width: 500px;
  margin: 20px auto;
}

.mailing-form input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid var(--purple);
  border-right: none;
  border-radius: 25px 0 0 25px;
  font-size: 1rem;
}

.mailing-form button {
  padding: 12px 30px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.mailing-form button:hover {
  background: #5a3d82;
}

/* Slider Images Grid */
.slider-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.slider-images img {
  width: 100%;
  border-radius: 10px;
}

/* PDF Link */
.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light);
  padding: 15px 25px;
  border-radius: 10px;
  margin: 20px 0;
  transition: transform 0.3s ease;
}

.pdf-link:hover {
  transform: translateY(-3px);
}

.pdf-link img {
  width: 40px;
  height: auto;
}

/* Food Fight Sponsors */
.ff-sponsors {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.ff-sponsors img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .ff-sponsors {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Holiday Sponsors Slider */
.holiday-sponsors {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
}

.holiday-sponsors img {
  height: 150px;
  width: auto;
  border-radius: 10px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.pagination a {
  padding: 10px 15px;
  background: var(--light);
  border-radius: 5px;
  color: var(--dark);
}

.pagination a:hover,
.pagination a.active {
  background: var(--purple);
  color: var(--white);
}

/* Corporate Sponsorship */
.corporate-section {
  background: var(--light);
}

.corporate-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 768px) {
  .corporate-content {
    grid-template-columns: 1fr;
  }
}

/* Other Ways to Help */
.help-ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.help-way {
  background: var(--light);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.help-way h4 {
  color: var(--purple);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .help-ways {
    grid-template-columns: 1fr;
  }
}
