/* static/style.css */

/* ─────────────── RESET & BASE ─────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background-color: #fdf7f7;
  color: #333;
}

body {
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ─────────────── UTILITY ─────────────── */
.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 0;
}

/* ─────────────── HEADER ─────────────── */

.pride-bar-top {
  display: block;
  height: 6px;
  width: 100%;
  background: linear-gradient(to right,
    #e70000,
    #ff8c00,
    #ffef00,
    #00811f,
    #0044ff,
    #760089
  );
}

.pride-bar-bottom {
  height: 6px;
  background: linear-gradient(to right,
    #000000, /* black */
    #784f17, /* brown */
    #ffffff, /* white */
    #ffb3da, /* pink */
    #aad8ff  /* light blue */
  );
}


header {
  background-color: #f8a1c4; /* Lighter, pride-friendly pink */
  overflow: visible; /* Allows logo to "spill out" */
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
  position: relative;
}

.logo-link {
  display: block;
  position: relative;
  z-index: 2;
}

.logo-left {
  height: 140px;
  width: auto;
  margin-top: -20px;  /* Spills above header */
  margin-bottom: -10px; /* Optional: spills below header */
}

/* Title + Nav block */
.header-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.site-title {
  font-size: 2rem;
  color: white;
  margin: 0;
  font-family: 'Roboto Slab', serif;
}

/* ─────────────── NAVIGATION ─────────────── */
nav {
  margin-top: 0.5em;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.4em 0.8em;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* ─────────────── RESPONSIVENESS ─────────────── */
@media screen and (max-width: 700px) {
  .header-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-left {
    height: 100px;
    margin: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}


/* ─────────────── HOME SLIDER ─────────────── */
.swiper {
  width: 100%;
  max-width: 960px;
  margin: 2rem auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  display: block;
  height: auto;
}

.slide-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 1rem;
}

/* -------------PROGRAMS------------------ */
.program {
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #fff0fa;
  border-left: 6px solid #f06292;
  border-radius: 4px;
}

.program h3 {
  margin-top: 0;
  color: #880e4f;
}



/* ─────────────── GALLERY ─────────────── */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.gallery img,
.gallery-media {
  max-width: 100%;
  width: 200px;
  height: auto;
  object-fit: cover;
  border: 2px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery img:hover,
.gallery-media:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ─────────────── MOBILE GALLERY FIX ─────────────── */
@media screen and (max-width: 600px) {
  .gallery img,
  .gallery-media {
    width: 45vw;
  }
}


/* ─────────────── SOCIAL LINKS ─────────────── */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.social-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.2s ease;
  cursor: pointer;
}

/* Hover scale-up effect */
.social-icon:hover {
  transform: scale(1.2);
}

/* Responsive icon sizing (mobile) */
@media screen and (max-width: 600px) {
  .social-icon {
    width: 28px;
    height: 28px;
  }
}


/* ─────────────── CONTACT PAGE ─────────────── */
.contact-section {
  padding: 1rem 0;
}

.contact-entry {
  margin-bottom: 1.5rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #e91e63;
}

.social-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

/* Responsive: Stack everything evenly */
@media screen and (min-width: 600px) {
  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
  }
}



/*##########BLOG##################*/
.blog-post {
  margin-bottom: 2rem;
}

.blog-post h3 {
  color: #e91e63;
  margin-bottom: 0.5rem;
}

.post-body p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.post-body video {
  max-width: 100%;
  border-radius: 6px;
  margin-top: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}


