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

:root {
  --primary-color: #5a3e36;
  --secondary-color: #f5a623;
  --text-color: #333;
  --light-bg: #f9f5f2;
  --white: #ffffff;
  --gray: #666;
  --light-gray: #e0e0e0;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

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

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

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

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

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

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

.logo img {
  height: 60px;
}

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

.social-links a {
  display: inline-block;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: scale(1.1);
}

.social-links img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.nav {
  background: var(--primary-color);
}

.nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.nav li {
  position: relative;
}

.nav a {
  display: block;
  padding: 15px 20px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.nav a:hover {
  background: rgba(255,255,255,0.1);
}

.donate-btn {
  background: var(--secondary-color);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s;
}

.donate-btn:hover {
  background: #e09520;
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-btn {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  padding: 15px 40px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s;
}

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

.action-icons {
  padding: 60px 20px;
  background: var(--light-bg);
}

.action-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.action-icon {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.action-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.action-icon img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.action-icon h3 {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.about-section {
  padding: 80px 20px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.9);
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.read-more-btn {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 5px;
  transition: color 0.3s;
}

.read-more-btn:hover {
  color: #e09520;
}

.newsletter {
  padding: 60px 20px;
  background: var(--primary-color);
  text-align: center;
  color: var(--white);
}

.newsletter h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  flex: 1;
  min-width: 250px;
}

.newsletter-form button {
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

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

.page-header {
  padding: 40px 20px;
  background: var(--light-bg);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section {
  padding: 60px 20px;
}

.section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.two-column img {
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
}

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

.submit-btn {
  background: var(--secondary-color);
  color: var(--white);
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #e09520;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.product-price {
  font-size: 20px;
  font-weight: bold;
  color: var(--secondary-color);
}

.sold-out {
  color: var(--gray);
  text-decoration: line-through;
}

.sponsor-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sponsor-card img {
  max-height: 60px;
  margin-bottom: 20px;
}

.sponsor-card p {
  color: var(--gray);
  line-height: 1.8;
}

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

.donate-method {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.donate-method img {
  height: 50px;
  margin-bottom: 15px;
}

.donate-method p {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
}

.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 40px 20px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-nav a {
  color: var(--white);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-text {
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto;
}

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

.media-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

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

.media-card-content {
  padding: 20px;
}

.media-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.media-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 15px;
}

.media-card a {
  color: var(--secondary-color);
  font-weight: bold;
}

.event-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.event-item h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  padding: 20px;
  background: var(--light-bg);
}

.event-description {
  padding: 20px;
  line-height: 1.8;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  padding: 20px;
}

.event-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}

.event-gallery img:hover {
  transform: scale(1.05);
}

.form-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.form-icon-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.form-icon-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}

.form-icon-card h3 {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.instructions {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.instructions ol {
  padding-left: 20px;
}

.instructions li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.hebe-banner {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 10px;
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

.hebe-banner img {
  width: 200px;
  border-radius: 10px;
}

.hebe-info h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.hebe-info p {
  margin-bottom: 20px;
  color: var(--gray);
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s;
}

.btn:hover {
  background: #e09520;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--primary-color);
  cursor: pointer;
}

@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
  }

  .social-links {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .nav ul {
    flex-direction: column;
    text-align: center;
  }

  .nav a {
    padding: 12px 15px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .action-icons-grid {
    grid-template-columns: 1fr;
  }

  .hebe-banner {
    flex-direction: column;
    text-align: center;
  }

  .hebe-banner img {
    width: 100%;
    max-width: 300px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"] {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .section h2 {
    font-size: 1.3rem;
  }
}
