/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  background: #000;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Questrial&display=swap');

@font-face {
  font-family: 'DK Drop Dead Gorgeous';
  src: url('../fonts/dk-drop-dead-gorgeous.woff2') format('woff2'),
       url('../fonts/dk-drop-dead-gorgeous.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== HEADER ===== */
#SITE_HEADER {
  background: #000;
  padding: 11px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
}

.logo img {
  width: 105px;
  height: 80px;
  object-fit: cover;
}

.main-nav ul {
  display: flex;
  gap: 20px;
}

.main-nav ul li a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  padding: 8px 10px;
  transition: color 0.3s;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #33DAFF;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.contact-icon img {
  width: 45px;
  height: 40px;
}

.partner-btn a {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #33DAFF;
  text-decoration: underline;
}

/* ===== BANNER SECTION ===== */
.banner-section {
  background: #000;
  padding: 7px 0 17px;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.banner-container img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: #FFDF61;
  padding: 30px 0;
  text-align: center;
}

.hero-image img {
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 20px 0;
  background: #fff;
}

.gallery-slider {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 20px;
  scroll-snap-type: x mandatory;
}

.slide {
  flex: 0 0 308px;
  scroll-snap-align: start;
}

.slide img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid #000;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.about-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 490px;
}

.about-card img {
  margin: 0 auto 15px;
}

.btn-donate {
  display: inline-block;
  background: #A93375;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  padding: 10px 30px;
  border-radius: 30px;
  margin-top: 10px;
  transition: background 0.3s;
}

.btn-donate:hover {
  background: #551A3A;
}

.about-text {
  text-align: center;
  margin: 30px 0;
}

.about-text p {
  font-family: 'Questrial', sans-serif;
  font-size: 25px;
  color: #FAFAFA;
}

.about-content,
.community-section,
.events-section,
.projects-section {
  background: #fff;
  border: 4px solid #000;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
}

.about-content h2,
.community-section h3,
.events-section h3,
.projects-section h3 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 35px;
  text-align: center;
  color: #F11591;
}

.community-section h3 {
  color: #24E0DA;
}

.events-section h3 {
  color: #F5B00F;
}

.projects-section h3 {
  color: #24E0DA;
}

.about-content p,
.community-section p,
.events-section p,
.projects-section p {
  font-family: 'Questrial', sans-serif;
  font-size: 18px;
  color: #8b8b8b;
  text-align: center;
  line-height: 1.6;
  max-width: 700px;
  margin: 10px auto;
}

.about-content a,
.community-section a,
.events-section a,
.projects-section a {
  display: inline-block;
  margin: 15px auto 0;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
  background: #51B7F7;
  padding: 30px 20px;
  text-align: center;
}

.instagram-header h3 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 50px;
  color: #F11591;
}

.instagram-feed {
  min-height: 375px;
  background: #fff;
  border-radius: 10px;
  max-width: 1200px;
  margin: 20px auto;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 30px 20px;
  background: #fafafa;
}

.partners-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.partner-card {
  background: #fff;
  border: 4px solid #000;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.partner-card img {
  margin: 0 auto 15px;
}

.partner-card h3 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 35px;
  color: #33DAFF;
  margin: 15px 0;
}

.partner-card p {
  font-family: 'Questrial', sans-serif;
  font-size: 16px;
  color: #8b8b8b;
  line-height: 1.6;
  max-width: 600px;
  margin: 10px auto;
}

/* ===== ACKNOWLEDGEMENT SECTION ===== */
.acknowledgement-section {
  background: #FAFAFA;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.acknowledgement-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #392B3B;
  margin: 20px 0 10px;
}

.acknowledgement-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  line-height: 1.8;
  max-width: 815px;
  margin: 10px auto;
}

.acknowledgement-section img {
  margin: 10px auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .header-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav ul li a {
    font-size: 14px;
    padding: 5px 8px;
  }

  .banner-container {
    gap: 15px;
  }

  .banner-container img {
    height: 40px;
  }

  .slide {
    flex: 0 0 250px;
  }

  .slide img {
    height: 330px;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .partner-btn a {
    font-size: 10px;
  }

  .slide {
    flex: 0 0 200px;
  }

  .slide img {
    height: 270px;
  }

  .about-content h2,
  .community-section h3,
  .events-section h3,
  .projects-section h3,
  .partner-card h3 {
    font-size: 28px;
  }

  .about-content p,
  .community-section p,
  .events-section p,
  .projects-section p,
  .partner-card p {
    font-size: 14px;
  }
}

/* ===== FOOTER ===== */
#SITE_FOOTER {
  background: #000;
  padding: 36px 20px 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 142px 1fr 314px;
  gap: 30px;
  align-items: start;
}

.footer-donate {
  padding-top: 4px;
}

.btn-donate-footer {
  display: inline-block;
  background: #A93375;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding: 10px 30px;
  border-radius: 30px;
  transition: background 0.3s;
}

.btn-donate-footer:hover {
  background: #551A3A;
}

.footer-newsletter {
  background: transparent;
}

.newsletter-form h3 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 25px;
  color: #F11591;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.form-group input {
  flex: 1;
  min-width: 200px;
  padding: 10px 20px;
  border: 2px solid #A93375;
  border-radius: 4px;
  font-size: 16px;
  background: #fff;
  color: #000;
  outline: none;
}

.form-group input:focus {
  border-color: #F11591;
}

.btn-subscribe {
  background: #9E155E;
  color: #fff;
  font-family: 'Helvetica', sans-serif;
  font-size: 16px;
  padding: 10px 30px;
  border: 2px solid #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-subscribe:hover {
  background: #E43292;
}

.form-success {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}

.footer-contact h3 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 31px;
  color: #23E0D9;
  margin-bottom: 10px;
}

.footer-contact p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.8;
}

.footer-contact a {
  color: #fff;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #23E0D9;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-donate {
    justify-self: center;
  }

  .form-group {
    justify-content: center;
  }

  .form-group input {
    min-width: 280px;
  }
}

@media (max-width: 480px) {
  .form-group {
    flex-direction: column;
  }

  .form-group input {
    min-width: 100%;
    width: 100%;
  }

  .btn-subscribe {
    width: 100%;
  }

  .footer-contact h3 {
    font-size: 26px;
  }
}

/* ============================================================
   ALL PAGE STYLES (ABOUT, CONTACT, BUSINESS, RESOURCES, ETC.)
   ============================================================ */

/* ----- ABOUT PAGE ----- */
.about-hero {
  padding: 40px 20px;
  background: linear-gradient(135deg, #33DAFF, #E43292);
  text-align: center;
}

.about-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.about-who,
.about-values,
.about-mission,
.about-team {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-who h2,
.about-values h2,
.about-mission h2,
.about-team h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 45px;
  text-align: center;
  color: #E43292;
  margin-bottom: 30px;
}

.about-who p,
.about-mission p {
  font-family: 'Questrial', sans-serif;
  font-size: 18px;
  color: #8b8b8b;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: #fff;
  border: 3px solid #E43292;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #E43292;
  margin-bottom: 15px;
}

.value-card p {
  font-family: 'Questrial', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.team-card {
  background: #fff;
  border: 3px solid #33DAFF;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.team-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #392B3B;
}

.team-card p {
  font-family: 'Questrial', sans-serif;
  font-size: 15px;
  color: #555;
  margin: 10px 0 15px;
}

.btn-outline {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid #E43292;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #E43292;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #E43292;
  color: #fff;
}

@media (max-width: 768px) {
  .about-hero h1 { font-size: 40px; }
  .about-who h2, .about-values h2, .about-mission h2, .about-team h2 { font-size: 32px; }
  .about-who p, .about-mission p { font-size: 16px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .about-hero h1 { font-size: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card img { height: 200px; }
}

/* ----- CONTACT PAGE ----- */
.contact-hero {
  padding: 40px 20px;
  background: linear-gradient(135deg, #33DAFF, #E43292);
  text-align: center;
}

.contact-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.contact-hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-top: 10px;
}

.contact-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2,
.contact-form-wrapper h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 35px;
  color: #E43292;
  margin-bottom: 20px;
}

.contact-info p {
  font-family: 'Questrial', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 2px solid #E43292;
  border-radius: 10px;
}

.contact-item strong {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #392B3B;
  display: block;
}

.contact-item p {
  font-family: 'Questrial', sans-serif;
  font-size: 14px;
  color: #777;
  margin: 0;
}

.contact-social h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #392B3B;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #E43292;
  padding: 8px 20px;
  border: 2px solid #E43292;
  border-radius: 30px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #E43292;
  color: #fff;
}

.contact-form-wrapper {
  background: #fff;
  border: 3px solid #33DAFF;
  border-radius: 12px;
  padding: 30px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #392B3B;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: 'Questrial', sans-serif;
  font-size: 16px;
  transition: border 0.3s;
  background: #f9f9f9;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #E43292;
  outline: none;
  background: #fff;
}

.btn-submit {
  display: inline-block;
  padding: 12px 40px;
  background: #E43292;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #A93375;
}

.donate-section {
  padding: 50px 20px;
  background: #f5f5f5;
}

.donate-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.donate-content h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 35px;
  color: #4BD1A0;
  margin-bottom: 20px;
}

.donate-content p {
  font-family: 'Questrial', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.btn-donate {
  display: inline-block;
  padding: 12px 40px;
  background: #4BD1A0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-donate:hover {
  background: #2a9d6b;
}

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .donate-container { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  .contact-hero h1 { font-size: 40px; }
  .contact-hero p { font-size: 16px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-info h2, .contact-form-wrapper h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .contact-hero h1 { font-size: 32px; }
  .social-links { flex-direction: column; align-items: center; }
  .contact-item { flex-direction: column; text-align: center; }
}

/* ----- LGBTIQ BUSINESS PAGE ----- */
.business-hero {
  padding: 40px 20px;
  background: linear-gradient(135deg, #33DAFF, #E43292);
  text-align: center;
}

.business-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.business-intro {
  padding: 30px 20px 10px;
  max-width: 800px;
  margin: 0 auto;
}

.business-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  text-align: center;
}

.business-grid-section {
  padding: 20px 20px 50px;
}

.business-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.business-card {
  background: #fff;
  border: 3px solid #E43292;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.business-card:hover {
  transform: translateY(-5px);
}

.business-card img {
  width: 100%;
  max-width: 314px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 15px;
}

.business-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #392B3B;
  margin-bottom: 15px;
}

.btn-business {
  display: inline-block;
  padding: 10px 30px;
  background: #E43292;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-business:hover {
  background: #A93375;
}

.btn-business.disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .business-hero h1 { font-size: 40px; }
  .business-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .business-hero h1 { font-size: 32px; }
  .business-grid { grid-template-columns: 1fr; }
  .business-card img { height: 180px; }
}

/* ----- RESOURCES PAGE ----- */
.resources-hero {
  padding: 40px 20px;
  background: linear-gradient(135deg, #33DAFF, #E43292);
  text-align: center;
}

.resources-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.resources-intro {
  padding: 30px 20px 10px;
  max-width: 800px;
  margin: 0 auto;
}

.resources-intro h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 28px;
  color: #E43292;
  text-align: center;
  margin-bottom: 15px;
}

.resources-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  text-align: center;
}

.resources-grid-section {
  padding: 20px 20px 50px;
}

.resources-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.resource-card {
  background: #fff;
  border: 3px solid #33DAFF;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card img {
  width: 100%;
  max-width: 316px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 15px;
}

.resource-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #392B3B;
  margin-bottom: 15px;
  min-height: 50px;
}

.btn-resource {
  display: inline-block;
  padding: 8px 25px;
  background: #E43292;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-resource:hover {
  background: #A93375;
}

@media (max-width: 768px) {
  .resources-hero h1 { font-size: 40px; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .resources-intro h2 { font-size: 22px; }
}

@media (max-width: 480px) {
  .resources-hero h1 { font-size: 32px; }
  .resources-grid { grid-template-columns: 1fr; }
  .resource-card img { height: 120px; }
  .resource-card h3 { font-size: 16px; min-height: auto; }
}

/* ----- PAST EVENTS PAGE ----- */
.pastevents-hero {
  padding: 40px 20px;
  background: linear-gradient(135deg, #E43292, #33DAFF);
  text-align: center;
}

.pastevents-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.pastevents-intro {
  padding: 30px 20px 10px;
  max-width: 800px;
  margin: 0 auto;
}

.pastevents-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  text-align: center;
}

.pastevents-grid-section {
  padding: 20px 20px 50px;
}

.pastevents-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pastevent-card {
  background: #fff;
  border: 3px solid #E43292;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pastevent-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pastevent-card a {
  text-decoration: none;
  display: block;
  padding: 0 0 20px;
}

.pastevent-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.pastevent-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #E43292;
  padding: 15px 15px 5px;
  text-align: center;
}

.pastevent-card p {
  font-family: 'Questrial', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  padding: 0 15px;
  text-align: center;
}

@media (max-width: 768px) {
  .pastevents-hero h1 { font-size: 40px; }
  .pastevents-grid { grid-template-columns: 1fr 1fr; }
  .pastevent-card img { height: 180px; }
  .pastevent-card h3 { font-size: 17px; }
}

@media (max-width: 480px) {
  .pastevents-hero h1 { font-size: 32px; }
  .pastevents-grid { grid-template-columns: 1fr; }
  .pastevent-card img { height: 200px; }
}

/* ----- PRIDE NEWS PAGE ----- */
.pridenews-hero {
  padding: 40px 20px;
  background: linear-gradient(135deg, #33DAFF, #E43292);
  text-align: center;
}

.pridenews-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.pridenews-intro {
  padding: 30px 20px 10px;
  max-width: 800px;
  margin: 0 auto;
}

.pridenews-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  text-align: center;
}

.pridenews-grid-section {
  padding: 20px 20px 50px;
}

.pridenews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.pridenews-card {
  background: #fff;
  border: 3px solid #33DAFF;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pridenews-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pridenews-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.pridenews-content {
  padding: 20px;
}

.pridenews-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #E43292;
  margin-bottom: 5px;
}

.pridenews-date {
  font-family: 'Questrial', sans-serif;
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.pridenews-content p {
  font-family: 'Questrial', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.btn-readmore {
  display: inline-block;
  padding: 8px 25px;
  background: #E43292;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-readmore:hover {
  background: #A93375;
}

@media (max-width: 768px) {
  .pridenews-hero h1 { font-size: 40px; }
  .pridenews-grid { grid-template-columns: 1fr; }
  .pridenews-card img { height: 200px; }
}

@media (max-width: 480px) {
  .pridenews-hero h1 { font-size: 32px; }
  .pridenews-grid { grid-template-columns: 1fr; }
  .pridenews-card img { height: 180px; }
  .pridenews-content h3 { font-size: 18px; }
}

/* ----- SPORT PAGE ----- */
.sport-hero {
  padding: 40px 20px;
  background: linear-gradient(135deg, #33DAFF, #E43292);
  text-align: center;
}

.sport-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.sport-intro {
  padding: 30px 20px 10px;
  max-width: 800px;
  margin: 0 auto;
}

.sport-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  text-align: center;
}

.sport-clubs {
  padding: 20px 20px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.sport-club {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  padding: 20px;
  border-radius: 12px;
}

.sport-club.tennis {
  background: #f0f4ff;
  border: 3px solid #B45AD4;
}

.sport-club.swimming {
  background: #f0faff;
  border: 3px solid #33DAFF;
}

.sport-club-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.sport-club-content {
  padding: 20px;
}

.sport-club-header {
  text-align: center;
}

.sport-tag {
  display: inline-block;
  padding: 5px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.sport-tag.tennis {
  background: #B45AD4;
  color: #fff;
}

.sport-tag.swimming {
  background: #33DAFF;
  color: #fff;
}

.sport-club-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #392B3B;
  margin: 10px 0;
}

.sport-club-header p {
  font-family: 'Questrial', sans-serif;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.btn-sport {
  display: inline-block;
  padding: 12px 40px;
  background: #E43292;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s;
  text-decoration: none;
  margin-top: 15px;
}

.btn-sport:hover {
  background: #A93375;
}

.sport-club.swimming .btn-sport {
  background: #33DAFF;
  color: #000;
}

.sport-club.swimming .btn-sport:hover {
  background: #1aa8c7;
  color: #fff;
}

@media (max-width: 992px) {
  .sport-club { grid-template-columns: 1fr; gap: 20px; }
  .sport-club.swimming .sport-club-image { order: -1; }
  .sport-club-image img { max-height: 350px; }
}

@media (max-width: 768px) {
  .sport-hero h1 { font-size: 40px; }
  .sport-club-header h2 { font-size: 24px; }
  .sport-club-header p { font-size: 16px; }
}

@media (max-width: 480px) {
  .sport-hero h1 { font-size: 32px; }
  .sport-club { padding: 15px; }
  .sport-club-header h2 { font-size: 20px; }
  .sport-tag { font-size: 12px; }
  .btn-sport { padding: 10px 30px; font-size: 14px; }
}

/* ----- TENNIS PAGE ----- */
.tennis-hero {
  padding: 40px 20px;
  background: linear-gradient(135deg, #33DAFF, #E43292);
  text-align: center;
}

.tennis-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.tennis-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background: rgba(130, 93, 168, 0.9);
  display: inline-block;
  padding: 8px 25px;
  border-radius: 30px;
  margin-top: 10px;
}

.tennis-image {
  padding: 30px 20px;
}

.tennis-image .container img {
  width: 100%;
  max-width: 980px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.tennis-info {
  padding: 20px 20px 40px;
}

.tennis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.tennis-content h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 36px;
  color: #E43292;
  margin-bottom: 20px;
}

.tennis-content p {
  font-family: 'Questrial', sans-serif;
  font-size: 17px;
  color: #8b8b8b;
  line-height: 1.8;
  margin-bottom: 15px;
}

.tennis-image-side img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 4px solid #33DAFF;
}

.tennis-details {
  padding: 30px 20px 50px;
  background: #f5f5f5;
}

.tennis-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.tennis-details-content h3 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 32px;
  color: #825DA7;
  margin-bottom: 15px;
}

.tennis-details-content p {
  font-family: 'Questrial', sans-serif;
  font-size: 17px;
  color: #8b8b8b;
  line-height: 1.8;
}

.tennis-details-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 4px solid #825DA7;
}

@media (max-width: 992px) {
  .tennis-grid { grid-template-columns: 1fr; }
  .tennis-details-grid { grid-template-columns: 1fr; }
  .tennis-details-grid .tennis-details-image { order: -1; }
  .tennis-content h2 { font-size: 30px; }
}

@media (max-width: 768px) {
  .tennis-hero h1 { font-size: 40px; }
  .tennis-subtitle { font-size: 16px; padding: 6px 18px; }
  .tennis-content h2 { font-size: 26px; }
  .tennis-content p, .tennis-details-content p { font-size: 15px; }
  .tennis-details-content h3 { font-size: 26px; }
}

@media (max-width: 480px) {
  .tennis-hero h1 { font-size: 32px; }
  .tennis-subtitle { font-size: 14px; }
  .tennis-content h2 { font-size: 22px; }
}

/* ----- SWIMMING PAGE ----- */
.swim-hero {
  padding: 40px 20px;
  background: linear-gradient(135deg, #33DAFF, #E43292);
  text-align: center;
}

.swim-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.swim-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
}

.swim-intro {
  padding: 30px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.swim-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  text-align: center;
}

.swim-details {
  padding: 20px 20px 40px;
}

.swim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.swim-content p {
  font-family: 'Questrial', sans-serif;
  font-size: 16px;
  color: #8b8b8b;
  line-height: 1.8;
  margin-bottom: 15px;
}

.swim-info-box {
  background: #f5f5f5;
  border-left: 4px solid #33DAFF;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.swim-info-box p {
  font-family: 'Questrial', sans-serif;
  font-size: 16px;
  color: #8b8b8b;
  line-height: 1.8;
  margin-bottom: 8px;
}

.swim-info-box strong {
  color: #E43292;
}

.swim-welcome {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #E43292;
  text-align: center;
}

.swim-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 4px solid #33DAFF;
}

.swim-coach {
  padding: 40px 20px 60px;
  background: #f5f5f5;
}

.swim-coach h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 38px;
  text-align: center;
  color: #E43292;
  margin-bottom: 30px;
}

.coach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.coach-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 4px solid #E43292;
}

.coach-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #E43292;
  margin-bottom: 15px;
}

.coach-content p {
  font-family: 'Questrial', sans-serif;
  font-size: 16px;
  color: #8b8b8b;
  line-height: 1.8;
}

.coach-credentials {
  margin-top: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #33DAFF;
}

.coach-credentials h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #E43292;
  margin-bottom: 10px;
}

.coach-credentials ul {
  list-style: none;
  padding: 0;
}

.coach-credentials ul li {
  font-family: 'Questrial', sans-serif;
  font-size: 15px;
  color: #8b8b8b;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.coach-credentials ul li::before {
  content: "●";
  color: #33DAFF;
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 6px;
}

@media (max-width: 992px) {
  .swim-grid { grid-template-columns: 1fr; }
  .coach-grid { grid-template-columns: 1fr; }
  .coach-grid .coach-image { order: -1; }
}

@media (max-width: 768px) {
  .swim-hero h1 { font-size: 40px; }
  .swim-subtitle { font-size: 18px; }
  .swim-coach h2 { font-size: 30px; }
  .swim-intro p { font-size: 16px; }
}

@media (max-width: 480px) {
  .swim-hero h1 { font-size: 32px; }
  .swim-subtitle { font-size: 15px; }
  .swim-coach h2 { font-size: 24px; }
  .coach-content h3 { font-size: 20px; }
  .swim-info-box p { font-size: 14px; }
}

/* ----- MARKETPLACE PAGE ----- */
.marketplace-hero {
  padding: 40px 20px;
  background: linear-gradient(135deg, #33DAFF, #E43292);
  text-align: center;
}

.marketplace-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.marketplace-intro {
  padding: 30px 20px 10px;
  max-width: 800px;
  margin: 0 auto;
}

.marketplace-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  text-align: center;
}

.marketplace-grid-section {
  padding: 20px 20px 50px;
}

.marketplace-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.marketplace-card {
  background: #fff;
  border: 3px solid #FFDE5F;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.marketplace-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.marketplace-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.marketplace-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #E43292;
  margin-bottom: 10px;
}

.marketplace-card p {
  font-family: 'Questrial', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .marketplace-hero h1 { font-size: 40px; }
  .marketplace-grid { grid-template-columns: 1fr 1fr; }
  .marketplace-card img { height: 180px; }
}

@media (max-width: 480px) {
  .marketplace-hero h1 { font-size: 32px; }
  .marketplace-grid { grid-template-columns: 1fr; }
  .marketplace-card img { height: 200px; }
  .marketplace-card h3 { font-size: 18px; }
}

/* ----- CREATIVE ARTS PAGE ----- */
.arts-hero {
  padding: 40px 20px;
  background: linear-gradient(135deg, #33DAFF, #E43292);
  text-align: center;
}

.arts-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.arts-sponsors {
  padding: 30px 20px;
  background: #f9f9f9;
  text-align: center;
}

.arts-sponsors p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8b8b8b;
  max-width: 700px;
  margin: 0 auto 20px;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.sponsor-logos img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.sponsor-credit {
  font-family: 'Questrial', sans-serif;
  font-size: 14px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.arts-intro {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.arts-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  margin-bottom: 15px;
}

.arts-intro h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 36px;
  color: #E43292;
  margin: 20px 0;
}

.arts-workshops {
  padding: 30px 20px 60px;
}

.arts-workshops h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 45px;
  text-align: center;
  color: #E43292;
  margin-bottom: 30px;
}

.workshops-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.workshop-card {
  background: #fff;
  border: 3px solid #33DAFF;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.workshop-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.workshop-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #E43292;
  margin-bottom: 10px;
}

.workshop-card p {
  font-family: 'Questrial', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.btn-workshop {
  display: inline-block;
  padding: 8px 25px;
  background: #33DAFF;
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

.btn-workshop:hover {
  background: #1aa8c7;
  color: #fff;
}

@media (max-width: 768px) {
  .arts-hero h1 { font-size: 40px; }
  .arts-intro h2 { font-size: 28px; }
  .arts-workshops h2 { font-size: 32px; }
  .workshops-grid { grid-template-columns: 1fr 1fr; }
  .sponsor-logos { gap: 20px; }
  .sponsor-logos img { max-height: 60px; }
}

@media (max-width: 480px) {
  .arts-hero h1 { font-size: 32px; }
  .arts-intro h2 { font-size: 24px; }
  .arts-workshops h2 { font-size: 26px; }
  .workshops-grid { grid-template-columns: 1fr; }
  .workshop-card img { height: 180px; }
  .sponsor-logos { flex-direction: column; gap: 15px; }
}

/* ----- DRAG PAGEANT ----- */
.drag-hero {
  padding: 40px 20px;
  background: linear-gradient(135deg, #E43292, #FFDE5F);
  text-align: center;
}

.drag-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.drag-intro {
  padding: 30px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.drag-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
}

.drag-prizes {
  padding: 30px 20px 50px;
  background: #f9f9f9;
}

.drag-prizes h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 35px;
  color: #E43292;
  text-align: center;
  margin-bottom: 20px;
}

.prizes-list {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.prizes-list li {
  font-family: 'Questrial', sans-serif;
  font-size: 18px;
  color: #8b8b8b;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.prizes-list li:last-child {
  border-bottom: none;
}

.drag-sponsors {
  padding: 40px 20px;
}

.drag-sponsors h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 35px;
  color: #E43292;
  text-align: center;
  margin-bottom: 30px;
}

.sponsors-grid-drag {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.sponsor-item {
  display: block;
  transition: transform 0.3s;
}

.sponsor-item:hover {
  transform: scale(1.05);
}

.sponsor-item img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
}

.drag-closed {
  padding: 40px 20px;
  background: #f5f5f5;
}

.drag-closed .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.drag-closed-content h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 40px;
  color: #E43292;
  margin-bottom: 15px;
}

.drag-closed-content p {
  font-family: 'Questrial', sans-serif;
  font-size: 18px;
  color: #8b8b8b;
  line-height: 1.8;
}

.drag-winner {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 3px solid #FFDE5F;
}

.drag-winner img {
  width: 100%;
  max-width: 289px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.drag-winner-info h3 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 28px;
  color: #23E0D9;
  margin-bottom: 5px;
}

.drag-winner-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #392B3B;
  margin-bottom: 10px;
}

.btn-instagram {
  display: inline-block;
  padding: 8px 25px;
  background: #E43292;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-instagram:hover {
  background: #A93375;
}

.drag-gallery {
  padding: 40px 20px 60px;
}

.drag-gallery h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 35px;
  color: #E43292;
  text-align: center;
  margin-bottom: 30px;
}

.gallery-grid-drag {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-item-drag img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #E43292;
  transition: transform 0.3s;
}

.gallery-item-drag img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .drag-hero h1 { font-size: 40px; }
  .drag-closed .container { grid-template-columns: 1fr; }
  .gallery-grid-drag { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .gallery-item-drag img { height: 200px; }
  .drag-prizes h2, .drag-sponsors h2, .drag-gallery h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .drag-hero h1 { font-size: 32px; }
  .gallery-grid-drag { grid-template-columns: 1fr 1fr; }
  .gallery-item-drag img { height: 180px; }
  .drag-closed-content h2 { font-size: 30px; }
  .sponsors-grid-drag { gap: 15px; }
  .sponsor-item img { max-height: 80px; }
}

/* ----- PARADE PAGE ----- */
.parade-hero {
  padding: 40px 20px;
  background: linear-gradient(135deg, #33DAFF, #E43292);
  text-align: center;
}

.parade-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.parade-details {
  padding: 30px 20px;
  background: #f5f5f5;
  text-align: center;
}

.parade-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #392B3B;
  margin: 5px 0;
}

.parade-info p:last-of-type {
  font-weight: 400;
  color: #E43292;
}

.parade-map-link {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #33DAFF;
  text-decoration: underline;
  margin-top: 10px;
}

.parade-map-link:hover {
  color: #1aa8c7;
}

.parade-intro {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.parade-intro h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 36px;
  color: #E43292;
  margin-bottom: 20px;
}

.parade-intro p {
  font-family: 'Questrial', sans-serif;
  font-size: 18px;
  color: #8b8b8b;
  line-height: 1.8;
  margin-bottom: 15px;
}

.parade-partners {
  padding: 30px 20px;
  background: #f9f9f9;
}

.parade-partner-logos {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.parade-partner-logos img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

.parade-registration {
  padding: 40px 20px 60px;
}

.parade-registration-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.parade-form h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 35px;
  color: #E43292;
  margin-bottom: 25px;
}

.parade-register-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.parade-register-form .form-group {
  margin-bottom: 20px;
}

.parade-register-form label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #392B3B;
  margin-bottom: 5px;
}

.parade-register-form input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: 'Questrial', sans-serif;
  font-size: 16px;
  transition: border 0.3s;
  background: #f9f9f9;
}

.parade-register-form input:focus {
  border-color: #E43292;
  outline: none;
  background: #fff;
}

.btn-register {
  display: inline-block;
  padding: 12px 50px;
  background: #E43292;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-register:hover {
  background: #A93375;
}

.parade-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 3px solid #E43292;
}

@media (max-width: 992px) {
  .parade-registration-grid { grid-template-columns: 1fr; }
  .parade-image { order: -1; }
}

@media (max-width: 768px) {
  .parade-hero h1 { font-size: 40px; }
  .parade-intro h2 { font-size: 28px; }
  .parade-form h2 { font-size: 28px; }
  .parade-register-form .form-row { grid-template-columns: 1fr; }
  .parade-info p { font-size: 18px; }
  .parade-partner-logos { gap: 20px; }
  .parade-partner-logos img { max-height: 80px; }
}

@media (max-width: 480px) {
  .parade-hero h1 { font-size: 32px; }
  .parade-intro h2 { font-size: 24px; }
  .parade-form h2 { font-size: 24px; }
  .parade-info p { font-size: 16px; }
  .parade-partner-logos { flex-direction: column; gap: 15px; }
}

/* ----- ANITA NEVAR PAGE ----- */
.anita-hero {
  padding: 0;
  background: #000;
}

.anita-hero img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.anita-title {
  padding: 40px 20px 20px;
  text-align: center;
}

.anita-title h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 48px;
  color: #E43292;
  margin-bottom: 15px;
}

.anita-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #FEA4D6;
  max-width: 800px;
  margin: 0 auto;
}

.anita-intro {
  padding: 20px 20px 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.anita-intro p {
  font-family: 'Questrial', sans-serif;
  font-size: 18px;
  color: #8b8b8b;
  line-height: 1.8;
  text-align: center;
}

.anita-content {
  padding: 20px 20px 40px;
}

.anita-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.anita-text p {
  font-family: 'Questrial', sans-serif;
  font-size: 18px;
  color: #8b8b8b;
  line-height: 1.8;
  margin-bottom: 15px;
}

.anita-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 3px solid #E43292;
}

.anita-creator {
  padding: 40px 20px;
  background: #f9f9f9;
}

.anita-creator h2 {
  font-family: 'Helvetica', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}

.creator-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.creator-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 3px solid #E43292;
}

.creator-text p {
  font-family: 'Questrial', sans-serif;
  font-size: 18px;
  color: #8b8b8b;
  line-height: 1.8;
  margin-bottom: 15px;
}

.anita-partners {
  padding: 40px 20px;
}

.anita-partners h2 {
  font-family: 'Helvetica', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}

.partners-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.partners-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 3px solid #E43292;
}

.partners-text p {
  font-family: 'Questrial', sans-serif;
  font-size: 18px;
  color: #8b8b8b;
  line-height: 1.8;
  margin-bottom: 15px;
}

.anita-crowdfunding {
  padding: 40px 20px 60px;
  text-align: center;
  background: #f5f5f5;
}

.anita-crowdfunding h2 {
  font-family: 'Helvetica', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.anita-crowdfunding p {
  font-family: 'Questrial', sans-serif;
  font-size: 20px;
  color: #555;
  margin-bottom: 25px;
}

.btn-support {
  display: inline-block;
  padding: 15px 40px;
  background: #E43292;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-support:hover {
  background: #A93375;
}

@media (max-width: 992px) {
  .anita-grid { grid-template-columns: 1fr; }
  .anita-image { order: -1; }
  .creator-grid { grid-template-columns: 1fr; }
  .creator-image { order: -1; }
  .partners-grid { grid-template-columns: 1fr; }
  .partners-image { order: -1; }
}

@media (max-width: 768px) {
  .anita-title h1 { font-size: 32px; }
  .anita-subtitle { font-size: 17px; }
  .anita-creator h2, .anita-partners h2, .anita-crowdfunding h2 { font-size: 30px; }
  .anita-text p, .creator-text p, .partners-text p { font-size: 16px; }
  .btn-support { padding: 12px 30px; font-size: 16px; }
}

@media (max-width: 480px) {
  .anita-title h1 { font-size: 26px; }
  .anita-intro p { font-size: 16px; }
}

/* ----- FAIR DAY PAGE ----- */
.fairday-hero {
  padding: 40px 20px;
  background: linear-gradient(135deg, #E43292, #FFDE5F);
  text-align: center;
}

.fairday-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 56px;
  color: #E43292;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  line-height: 1.2;
}

.fairday-date {
  padding: 20px;
  text-align: center;
  background: #f5f5f5;
}

.fairday-date h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 35px;
  color: #E43292;
}

.fairday-intro {
  padding: 30px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.fairday-intro p {
  font-family: 'Questrial', sans-serif;
  font-size: 18px;
  color: #8b8b8b;
  line-height: 1.8;
  margin-bottom: 15px;
}

.fairday-intro a {
  color: #E43292;
  text-decoration: underline;
}

.fairday-intro a:hover {
  color: #A93375;
}

.fairday-grid {
  padding: 20px 20px 50px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.fairday-card {
  background: #fff;
  border: 3px solid #E43292;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.fairday-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.fairday-card img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.fairday-card h3 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 26px;
  color: #E43292;
  margin: 10px 0;
}

.fairday-card h3 a {
  color: inherit;
  text-decoration: none;
}

.fairday-card h3 a:hover {
  color: #A93375;
}

.fairday-card p {
  font-family: 'Questrial', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.fairday-link {
  display: block;
}

.fairday-link img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.fairday-card:first-child {
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
}

.fairday-card:first-child img {
  max-height: 600px;
  width: 100%;
}

.fairday-card:last-child {
  grid-column: span 2;
}

.fairday-card:last-child img {
  max-height: 300px;
}

@media (max-width: 992px) {
  .fairday-grid { grid-template-columns: 1fr 1fr; }
  .fairday-card:first-child { grid-row: span 1; grid-column: span 2; }
  .fairday-card:last-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .fairday-hero h1 { font-size: 40px; }
  .fairday-date h2 { font-size: 28px; }
  .fairday-grid { grid-template-columns: 1fr; }
  .fairday-card:first-child { grid-column: span 1; }
  .fairday-card:last-child { grid-column: span 1; }
  .fairday-card h3 { font-size: 22px; }
}

@media (max-width: 480px) {
  .fairday-hero h1 { font-size: 32px; }
  .fairday-date h2 { font-size: 22px; }
  .fairday-intro p { font-size: 16px; }
}

/* ============================================================
   PRIDE FESTIVAL PAGES (2021, 2022, 2023, 2024)
   ============================================================ */

/* ----- PRIDE FESTIVAL 2021 ----- */
.pride2021-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #B705F7, #E43292);
  text-align: center;
}

.pride2021-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  letter-spacing: 2px;
}

.pride2021-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-top: 10px;
  opacity: 0.9;
}

.pride2021-intro {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pride2021-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  text-align: center;
}

.pride2021-overview,
.pride2021-genderfluid,
.pride2021-highlights {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pride2021-overview h2,
.pride2021-genderfluid h2,
.pride2021-highlights h2,
.pride2021-white-party h2,
.pride2021-gallery h2,
.pride2021-cta h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 36px;
  color: #E43292;
  text-align: center;
  margin-bottom: 30px;
}

.pride2021-overview p,
.pride2021-genderfluid p,
.pride2021-highlights p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  margin-bottom: 20px;
}

.pride2021-white-party {
  padding: 40px 20px;
  background: #f8f4fa;
}

.pride2021-event-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.pride2021-event-text {
  flex: 1;
}

.pride2021-event-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  margin-bottom: 20px;
}

.pride2021-event-text strong {
  font-weight: 600;
  color: #E43292;
}

.pride2021-event-text em {
  font-style: italic;
  color: #666;
}

.pride2021-event-image {
  flex: 0 0 300px;
}

.pride2021-event-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.pride2021-gallery {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.pride2021-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pride2021-gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.pride2021-gallery-grid img:hover {
  transform: scale(1.03);
}

.pride2021-cta {
  padding: 50px 20px;
  background: linear-gradient(135deg, #33DAFF, #B705F7);
  text-align: center;
}

.pride2021-cta h2 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pride2021-cta p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .pride2021-hero h1 { font-size: 40px; }
  .pride2021-hero-sub { font-size: 18px; }
  .pride2021-event-grid { flex-direction: column; text-align: center; }
  .pride2021-event-image { flex: 0 0 auto; width: 100%; max-width: 300px; margin: 0 auto; }
  .pride2021-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pride2021-overview h2, .pride2021-genderfluid h2, .pride2021-highlights h2,
  .pride2021-white-party h2, .pride2021-gallery h2, .pride2021-cta h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .pride2021-hero h1 { font-size: 32px; }
  .pride2021-hero-sub { font-size: 16px; }
  .pride2021-intro p, .pride2021-overview p, .pride2021-genderfluid p, .pride2021-highlights p { font-size: 15px; }
  .pride2021-gallery-grid { grid-template-columns: 1fr; }
  .pride2021-gallery-grid img { height: 200px; }
  .pride2021-cta p { font-size: 16px; }
}

/* ----- PRIDE FESTIVAL 2022 ----- */
.pride2022-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E43292, #B705F7);
  text-align: center;
}

.pride2022-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  letter-spacing: 2px;
}

.pride2022-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-top: 10px;
  opacity: 0.9;
}

.pride2022-intro {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pride2022-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  text-align: center;
}

.pride2022-beach-parade,
.pride2022-fair-day,
.pride2022-events,
.pride2022-gallery {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.pride2022-beach-parade h2,
.pride2022-fair-day h2,
.pride2022-events h2,
.pride2022-gallery h2,
.pride2022-cta h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 36px;
  color: #E43292;
  text-align: center;
  margin-bottom: 30px;
}

.pride2022-beach-parade p,
.pride2022-fair-day p,
.pride2022-events p,
.pride2022-gallery p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
}

.pride2022-image-grid {
  display: grid;
  gap: 20px;
}

.pride2022-image-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.pride2022-image-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.pride2022-image-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

.pride2022-image-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.pride2022-image-grid img:hover {
  transform: scale(1.03);
}

.pride2022-cta {
  padding: 50px 20px;
  background: linear-gradient(135deg, #33DAFF, #E43292);
  text-align: center;
}

.pride2022-cta h2 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pride2022-cta p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .pride2022-hero h1 { font-size: 40px; }
  .pride2022-hero-sub { font-size: 18px; }
  .pride2022-image-grid-2, .pride2022-image-grid-3, .pride2022-image-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pride2022-image-grid img { height: 200px; }
  .pride2022-beach-parade h2, .pride2022-fair-day h2, .pride2022-events h2,
  .pride2022-gallery h2, .pride2022-cta h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .pride2022-hero h1 { font-size: 32px; }
  .pride2022-hero-sub { font-size: 16px; }
  .pride2022-intro p, .pride2022-beach-parade p, .pride2022-fair-day p,
  .pride2022-events p, .pride2022-gallery p { font-size: 15px; }
  .pride2022-image-grid-2, .pride2022-image-grid-3, .pride2022-image-grid-4 { grid-template-columns: 1fr; }
  .pride2022-image-grid img { height: 200px; }
  .pride2022-cta p { font-size: 16px; }
}

/* ----- PRIDE FESTIVAL 2023 ----- */
.pride2023-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E43292, #4BD1A0);
  text-align: center;
}

.pride2023-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  letter-spacing: 2px;
}

.pride2023-hero-sub {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 28px;
  color: #fff;
  margin-top: 10px;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.pride2023-intro {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pride2023-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 20px;
}

.pride2023-events {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pride2023-events h2,
.pride2023-sponsors h2,
.pride2023-cta h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 40px;
  color: #E43292;
  text-align: center;
  margin-bottom: 30px;
}

.pride2023-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pride2023-event-card {
  background: #f8f4fa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pride2023-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.pride2023-event-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.pride2023-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pride2023-event-card:hover .pride2023-event-image img {
  transform: scale(1.05);
}

.pride2023-event-content {
  padding: 20px 25px 25px;
}

.pride2023-event-content h3 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 24px;
  color: #E43292;
  margin-bottom: 10px;
}

.pride2023-event-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.pride2023-event-link {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #33DAFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pride2023-event-link:hover {
  color: #E43292;
}

.pride2023-sponsors {
  padding: 40px 20px;
  background: #f8f4fa;
}

.pride2023-sponsors p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #8b8b8b;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.pride2023-sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pride2023-sponsors-grid img {
  max-width: 180px;
  max-height: 100px;
  object-fit: contain;
}

.pride2023-cta {
  padding: 50px 20px;
  background: linear-gradient(135deg, #4BD1A0, #33DAFF);
  text-align: center;
}

.pride2023-cta h2 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pride2023-cta p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

.pride2023-cta-form {
  max-width: 600px;
  margin: 0 auto;
}

.pride2023-cta-form p {
  font-size: 16px;
}

.pride2023-cta-form a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.pride2023-cta-form a:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .pride2023-events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pride2023-hero h1 { font-size: 40px; }
  .pride2023-hero-sub { font-size: 22px; }
  .pride2023-events-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .pride2023-event-image { height: 180px; }
  .pride2023-event-content h3 { font-size: 20px; }
  .pride2023-events h2, .pride2023-sponsors h2, .pride2023-cta h2 { font-size: 32px; }
  .pride2023-sponsors-grid { gap: 20px; }
  .pride2023-sponsors-grid img { max-width: 140px; max-height: 80px; }
}

@media (max-width: 480px) {
  .pride2023-hero h1 { font-size: 32px; }
  .pride2023-hero-sub { font-size: 18px; }
  .pride2023-intro p { font-size: 15px; }
  .pride2023-events-grid { grid-template-columns: 1fr; gap: 20px; }
  .pride2023-event-image { height: 200px; }
  .pride2023-event-content p { font-size: 14px; }
  .pride2023-events h2, .pride2023-sponsors h2, .pride2023-cta h2 { font-size: 28px; }
  .pride2023-cta p { font-size: 16px; }
  .pride2023-sponsors-grid img { max-width: 100px; max-height: 60px; }
}

/* ----- PRIDE FESTIVAL 2024 ----- */
.pride2024-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E43292, #33DAFF);
  text-align: center;
}

.pride2024-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  letter-spacing: 2px;
}

.pride2024-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-top: 10px;
  opacity: 0.9;
}

.pride2024-intro {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pride2024-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 20px;
}

.pride2024-opening {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.pride2024-card {
  background: #f8f4fa;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.pride2024-card:hover {
  transform: translateY(-5px);
}

.pride2024-card-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.pride2024-card h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 30px;
  color: #E43292;
  margin-bottom: 5px;
}

.pride2024-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #8b8b8b;
  margin-bottom: 15px;
}

.pride2024-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.7;
}

.pride2024-card-opening {
  background: linear-gradient(135deg, #fce4ec, #f8f4fa);
  border-left: 5px solid #E43292;
}

.pride2024-card-fairday {
  background: linear-gradient(135deg, #e8f5e9, #f8f4fa);
  border-left: 5px solid #4CAF50;
}

.pride2024-card-beach {
  background: linear-gradient(135deg, #e3f2fd, #f8f4fa);
  border-left: 5px solid #33DAFF;
}

.pride2024-card-afterparty {
  background: linear-gradient(135deg, #fff3e0, #f8f4fa);
  border-left: 5px solid #FF6F00;
}

.pride2024-gallery {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.pride2024-gallery h2,
.pride2024-partners h2,
.pride2024-cta h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 36px;
  color: #E43292;
  text-align: center;
  margin-bottom: 30px;
}

.pride2024-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pride2024-gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.pride2024-gallery-grid img:hover {
  transform: scale(1.03);
}

.pride2024-partners {
  padding: 40px 20px;
  background: #f8f4fa;
}

.pride2024-partners p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #8b8b8b;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.pride2024-partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.pride2024-partner-logo {
  flex: 0 0 auto;
  max-width: 200px;
}

.pride2024-partner-logo img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

.pride2024-partners-cta {
  text-align: center;
}

.pride2024-partners-cta .btn {
  display: inline-block;
  padding: 14px 40px;
  background: #E43292;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.pride2024-partners-cta .btn:hover {
  background: #b81f76;
}

.pride2024-cta {
  padding: 50px 20px;
  background: linear-gradient(135deg, #33DAFF, #B705F7);
  text-align: center;
}

.pride2024-cta h2 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pride2024-cta p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .pride2024-hero h1 { font-size: 40px; }
  .pride2024-hero-sub { font-size: 18px; }
  .pride2024-opening { grid-template-columns: 1fr; gap: 20px; }
  .pride2024-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pride2024-gallery-grid img { height: 200px; }
  .pride2024-partners-grid { gap: 20px; }
  .pride2024-partner-logo { max-width: 150px; }
  .pride2024-gallery h2, .pride2024-partners h2, .pride2024-cta h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .pride2024-hero h1 { font-size: 32px; }
  .pride2024-hero-sub { font-size: 16px; }
  .pride2024-intro p { font-size: 15px; }
  .pride2024-card h2 { font-size: 24px; }
  .pride2024-card p { font-size: 14px; }
  .pride2024-gallery-grid { grid-template-columns: 1fr; }
  .pride2024-gallery-grid img { height: 200px; }
  .pride2024-partner-logo { max-width: 120px; }
  .pride2024-partners-cta .btn { padding: 12px 25px; font-size: 14px; }
  .pride2024-cta p { font-size: 16px; }
}

/* ----- PRIDE FESTIVAL (generic) ----- */
.pridefestival-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #B705F7, #E43292);
  text-align: center;
}

.pridefestival-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  letter-spacing: 2px;
}

.pridefestival-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-top: 10px;
  opacity: 0.9;
}

.pridefestival-intro {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pridefestival-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  text-align: center;
}

.pridefestival-highlights,
.pridefestival-beach-parade {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pridefestival-highlights h2,
.pridefestival-white-party h2,
.pridefestival-beach-parade h2,
.pridefestival-gallery h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 36px;
  color: #E43292;
  text-align: center;
  margin-bottom: 30px;
}

.pridefestival-highlights p,
.pridefestival-beach-parade p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  margin-bottom: 20px;
}

.pridefestival-white-party {
  padding: 40px 20px;
  background: #f8f4fa;
}

.pridefestival-event-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.pridefestival-event-text {
  flex: 1;
}

.pridefestival-event-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #E43292;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #b81f76;
}

.pridefestival-event-image {
  flex: 0 0 300px;
}

.pridefestival-event-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.pridefestival-gallery {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.pridefestival-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pridefestival-gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.pridefestival-gallery-grid img:hover {
  transform: scale(1.03);
}

.pridefestival-quote {
  padding: 50px 20px;
  background: linear-gradient(135deg, #33DAFF, #B705F7);
  text-align: center;
}

.pridefestival-quote blockquote {
  max-width: 700px;
  margin: 0 auto 30px;
  padding: 20px 30px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  border-left: 5px solid #fff;
}

.pridefestival-quote blockquote p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  font-style: italic;
  line-height: 1.6;
}

.pridefestival-quote blockquote cite {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-top: 10px;
  font-style: normal;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .pridefestival-hero h1 { font-size: 40px; }
  .pridefestival-hero-sub { font-size: 18px; }
  .pridefestival-event-grid { flex-direction: column; text-align: center; }
  .pridefestival-event-image { flex: 0 0 auto; width: 100%; max-width: 300px; margin: 0 auto; }
  .pridefestival-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pridefestival-highlights h2, .pridefestival-white-party h2,
  .pridefestival-beach-parade h2, .pridefestival-gallery h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .pridefestival-hero h1 { font-size: 32px; }
  .pridefestival-hero-sub { font-size: 16px; }
  .pridefestival-intro p, .pridefestival-highlights p, .pridefestival-beach-parade p { font-size: 15px; }
  .pridefestival-gallery-grid { grid-template-columns: 1fr; }
  .pridefestival-gallery-grid img { height: 200px; }
  .pridefestival-quote blockquote p { font-size: 17px; }
}



/* ===== SUPPORT PAGE ===== */
.support-hero {
  padding: 40px 20px;
  background: linear-gradient(135deg, #33DAFF, #E43292);
  text-align: center;
}

.support-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.support-intro {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.support-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  text-align: center;
}

.support-ways {
  padding: 20px 20px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.support-card {
  background: #fff;
  border: 3px solid #33DAFF;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.support-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.support-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #E43292;
  margin-bottom: 10px;
}

.support-card p {
  font-family: 'Questrial', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.btn-support {
  display: inline-block;
  padding: 8px 25px;
  background: #E43292;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-support:hover {
  background: #A93375;
}

.support-partners {
  padding: 20px 20px 50px;
  text-align: center;
}

.btn-partners {
  display: inline-block;
  padding: 14px 40px;
  background: #E43292;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-partners:hover {
  background: #A93375;
}

/* ===== RESPONSIVE SUPPORT ===== */
@media (max-width: 1024px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .support-hero h1 {
    font-size: 40px;
  }

  .support-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .support-card img {
    height: 180px;
  }

  .support-card h3 {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .support-hero h1 {
    font-size: 32px;
  }

  .support-intro p {
    font-size: 15px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card img {
    height: 200px;
  }

  .support-card h3 {
    font-size: 18px;
  }

  .support-card p {
    font-size: 14px;
  }

  .btn-support {
    padding: 6px 20px;
    font-size: 12px;
  }

  .btn-partners {
    padding: 10px 30px;
    font-size: 14px;
  }
}


/* ===== PRIDE FESTIVAL 2024 PAGE ===== */
.pride2024-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E43292, #33DAFF);
  text-align: center;
}
.pride2024-hero h1 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 60px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  letter-spacing: 2px;
}
.pride2024-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-top: 10px;
  opacity: 0.9;
}
.pride2024-intro {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.pride2024-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 20px;
}
.pride2024-opening {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.pride2024-card {
  background: #f8f4fa;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.pride2024-card:hover {
  transform: translateY(-5px);
}
.pride2024-card h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 30px;
  color: #E43292;
  margin-bottom: 5px;
}
.pride2024-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #8b8b8b;
  margin-bottom: 15px;
}
.pride2024-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #8b8b8b;
  line-height: 1.7;
}
.pride2024-card-opening {
  background: linear-gradient(135deg, #fce4ec, #f8f4fa);
  border-left: 5px solid #E43292;
}
.pride2024-card-fairday {
  background: linear-gradient(135deg, #e8f5e9, #f8f4fa);
  border-left: 5px solid #4CAF50;
}
.pride2024-card-beach {
  background: linear-gradient(135deg, #e3f2fd, #f8f4fa);
  border-left: 5px solid #33DAFF;
}
.pride2024-card-afterparty {
  background: linear-gradient(135deg, #fff3e0, #f8f4fa);
  border-left: 5px solid #FF6F00;
}
.pride2024-gallery {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.pride2024-gallery h2,
.pride2024-partners h2,
.pride2024-cta h2 {
  font-family: 'DK Drop Dead Gorgeous', cursive;
  font-size: 36px;
  color: #E43292;
  text-align: center;
  margin-bottom: 30px;
}
.pride2024-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pride2024-gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.pride2024-gallery-grid img:hover {
  transform: scale(1.03);
}
.pride2024-partners {
  padding: 40px 20px;
  background: #f8f4fa;
}
.pride2024-partners p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #8b8b8b;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
}
.pride2024-partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.pride2024-partner-logo {
  flex: 0 0 auto;
  max-width: 200px;
}
.pride2024-partner-logo img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}
.pride2024-partners-cta {
  text-align: center;
}
.pride2024-partners-cta .btn {
  display: inline-block;
  padding: 14px 40px;
  background: #E43292;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.pride2024-partners-cta .btn:hover {
  background: #b81f76;
}
.pride2024-cta {
  padding: 50px 20px;
  background: linear-gradient(135deg, #33DAFF, #B705F7);
  text-align: center;
}
.pride2024-cta h2 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.pride2024-cta p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .pride2024-hero h1 { font-size: 40px; }
  .pride2024-hero-sub { font-size: 18px; }
  .pride2024-opening { grid-template-columns: 1fr; gap: 20px; }
  .pride2024-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pride2024-gallery-grid img { height: 200px; }
  .pride2024-partners-grid { gap: 20px; }
  .pride2024-partner-logo { max-width: 150px; }
  .pride2024-gallery h2, .pride2024-partners h2, .pride2024-cta h2 { font-size: 28px; }
}
@media (max-width: 480px) {
  .pride2024-hero h1 { font-size: 32px; }
  .pride2024-hero-sub { font-size: 16px; }
  .pride2024-intro p { font-size: 15px; }
  .pride2024-card h2 { font-size: 24px; }
  .pride2024-card p { font-size: 14px; }
  .pride2024-gallery-grid { grid-template-columns: 1fr; }
  .pride2024-gallery-grid img { height: 200px; }
  .pride2024-partner-logo { max-width: 120px; }
  .pride2024-partners-cta .btn { padding: 12px 25px; font-size: 14px; }
  .pride2024-cta p { font-size: 16px; }
}



/* ===== ABOUT SECTION FIXES ===== */
.about-section .about-content,
.about-section .community-section,
.about-section .events-section,
.about-section .projects-section {
  text-align: center;
}

.about-section .about-content .btn-donate,
.about-section .community-section .btn-donate,
.about-section .events-section .btn-donate,
.about-section .projects-section .btn-donate {
  display: inline-block;
  margin: 15px auto 0;
  float: none;
}
