:root {
  --primary-color: #f295b2;
  --secondary-color: #fdfcfb;
  --text-dark: #333;
  --text-light: #666;
  --accent-light: #fef5f8;
  --shadow-color: rgba(242, 149, 178, 0.1);
}

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

body {
  font-family: "Playfair Display", serif;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 80px;
}

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

/* Header & Navigation */
header {
  background-color: var(--primary-color);
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
  font-size: 1.1rem;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 0.8;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--secondary-color);
}

.nav-separator {
  width: 1px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
  align-self: center;
}

.nav-contact {
  font-size: 1rem !important;
  font-weight: 600 !important;
  padding: 0.6rem 1.2rem;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none !important;
  color: var(--secondary-color) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-contact:hover,
.nav-contact:focus {
  background-color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
  opacity: 1 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none !important;
}

.nav-contact:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  transition: 0.3s;
}

/* Hero Section */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
}

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

.hero-content h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tagline {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 149, 178, 0.3);
}

.nonprofit-tag {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
}

/* Tax Info Section */
.tax-info-section {
  background-color: var(--accent-light);
  padding: 3rem 0;
}

.tax-info-section h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.tax-info-section p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.highlight {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
  text-align: center;
}

/* Upcoming Event Section */
.upcoming-event-section {
  padding: 4rem 0;
}

.upcoming-event-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
}

.event-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-color);
}

.event-card h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.event-date,
.event-location {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.event-description {
  font-size: 1.1rem;
  margin: 1.5rem 0;
  line-height: 1.8;
}

.event-contact {
  background-color: var(--accent-light);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1.5rem;
}

.event-contact p {
  margin-bottom: 0.5rem;
}

.event-contact a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.event-contact a:hover {
  text-decoration: underline;
}

/* Community Section */
.community-section {
  background-color: white;
  padding: 4rem 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--accent-light);
  border-radius: 10px;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.mission-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: justify;
}

.community-image {
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 3rem auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-color);
}

.community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.contact-phone {
  margin-top: 2rem;
  font-size: 1.2rem;
  text-align: center;
  color: var(--primary-color);
}

/* Carousel Section */
.memories-section {
  padding: 4rem 0;
  background-color: var(--accent-light);
}

.memories-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
}

.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  border-radius: 15px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 500px;
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: #e67a9a;
}

.carousel-btn.prev {
  left: -60px;
}

.carousel-btn.next {
  right: -60px;
}

/* Video Section */
.video-section {
  padding: 4rem 0;
}

.video-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
}

.video-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.video-placeholder {
  width: 100%;
  max-width: 600px;
  height: 350px;
  background-color: #f0f0f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.2rem;
}

/* Grand Sponsor Section */
.grand-sponsor-section {
  background-color: white;
  padding: 4rem 0;
}

.grand-sponsor-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
}

.grand-sponsor-logo {
  max-width: 500px;
  height: 300px;
  margin: 0 auto;
  background-color: var(--accent-light);
  border: 3px solid var(--primary-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.grand-sponsor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sponsor-thank {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.2rem;
  color: var(--text-light);
  font-style: italic;
}

/* About Page */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), #e67a9a);
  padding: 4rem 2rem 3rem;
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  color: var(--secondary-color);
  font-size: 3rem;
}

.about-content-section {
  padding: 2rem 0 4rem;
}

.about-content {
  background-color: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-color);
}

.about-content h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-align: justify;
  line-height: 1.8;
}

.about-image {
  width: 100%;
  max-width: 600px;
  height: 350px;
  margin: 0 auto 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-color);
}

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

.tax-info {
  background-color: var(--accent-light);
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  margin-top: 2rem;
  font-size: 0.95rem;
}

/* Events Page */
.events-page-section {
  padding: 2rem 0 4rem;
}

.upcoming-event {
  background-color: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-color);
  margin-bottom: 4rem;
}

.upcoming-event h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.upcoming-event h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.event-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.event-poster {
  width: 100%;
  height: 400px;
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

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

.location-info h3 {
  margin-bottom: 1rem;
}

.location-info p {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.location-map {
  display: block;
  width: 100%;
  height: 300px;
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  margin-top: 1rem;
}

.location-map:hover {
  transform: scale(1.02);
}

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

.past-events h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  width: 100%;
  height: 250px;
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

/* Sponsors Page */
.sponsors-page-section {
  padding: 2rem 0 4rem;
}

.sponsors-section {
  background-color: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-color);
}

.sponsors-section h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.sponsor-logo {
  width: 100%;
  height: 150px;
  background-color: #f9f9f9;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sponsor-cta {
  background-color: var(--accent-light);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.sponsor-cta h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.sponsor-cta p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.sponsor-cta a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.2rem;
}

.sponsor-cta a:hover {
  text-decoration: underline;
}

.thank-you {
  font-style: italic;
  color: var(--text-light);
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-section a {
  color: var(--secondary-color);
  text-decoration: none;
}

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

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

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

.footer-bottom p {
  margin-bottom: 0.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-separator {
    display: none;
  }

  .nav-contact {
    font-size: 1rem !important;
    padding: 0.6rem 1rem;
    display: block;
    width: 100%;
    text-align: center;
    margin: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.3) !important;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

  .hero-image {
    height: 450px;
  }

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

  .tagline {
    font-size: 1.1rem;
  }

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

  .stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .event-details {
    grid-template-columns: 1fr;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .carousel-slide {
    height: 300px;
  }

  .about-content,
  .sponsors-section {
    padding: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grand-sponsor-logo {
    height: 200px;
  }
}

.image-wrapper {
            width: 100%;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .responsive-image {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 700 / 350;
            object-fit: cover;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }