/* main stylesheet */

/* ============================================================
   Reset & Base
   ============================================================ */
* {
  font-family: 'Arial', sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #FFF5F7;
  color: #1A1A1A;
-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

p {
  text-align: justify;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ============================================================
   Hero Slideshow
   ============================================================ */
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #1A1A1A;
}

.slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slideshow-slide.active {
  opacity: 1;
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  cursor: pointer;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color 0.2s ease;
}

.slideshow-arrow:hover {
  background: rgba(0, 0, 0, 0.65);
}

.slideshow-arrow-prev { left: 0.75rem; }
.slideshow-arrow-next { right: 0.75rem; }

.slideshow-dots {
  position: absolute;
  bottom: 0.875rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slideshow-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  padding: 0;
  transition: background-color 0.2s ease;
}

.slideshow-dot.active {
  background: #C2185B;
}

/* ============================================================
   Layout Container
   ============================================================ */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ============================================================
   Navbar
   ============================================================ */
/* img.logo {
    background: white;
    padding: 4px 10px;
    border-radius: 6px;
} */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #C2185B;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.navbar-brand {
font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.025em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 2rem;
}

@media (min-width: 768px) {
  .navbar-brand { font-size: 1.125rem; }
}

/* Desktop nav */
.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s ease;
  opacity: 0.9;
}

.nav-link:hover {
  color: #F8BBD0;
  opacity: 1;
}

.nav-link.active {
  color: #fff;
  opacity: 1;
  border-bottom: 2px solid #2E7D52;
  padding-bottom: 2px;
}

/* Hamburger button */
.hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.hamburger:hover {
  color: #F8BBD0;
}

.hamburger svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

@media (min-width: 768px) {
  .hamburger { display: none; }
}

/* Mobile dropdown menu */
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background-color: #C2185B;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav-links {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: 0.25rem;
  color: #fff;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.mobile-nav-link:hover {
  color: #F8BBD0;
  opacity: 1;
}

.mobile-nav-link.active {
  color: #fff;
  opacity: 1;
  border-left: 3px solid #2E7D52;
  padding-left: 0.5rem;
}

/* ============================================================
   Hero (Home page)
   ============================================================ */
.hero {
  min-height: 80vh;
  background-color: #880E4F;
  display: flex;
  align-items: center;
}

.hero .container {
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 1024px) {
  .hero .container {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

.hero-body {
  padding: 2rem 0;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 32rem;
    gap: 24px;
    align-items: start;
  }
}

.hero-label {
  color: #F8BBD0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: #fff;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.hero-tagline {
  font-size: 1.25rem;
  color: #FFF5F7;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-tagline { font-size: 1.5rem; }
}

.hero-description {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .hero-description { font-size: 1.125rem; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary {
  display: inline-block;
  background-color: #2E7D52;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1rem 2.5rem;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #1B5E38;
}

/* ============================================================
   Hero Placeholder (image/video area)
   ============================================================ */
.hero-placeholder {
  display: block;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-placeholder {
    margin-top: 4rem;
  }
}

.hero-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================================
   Why Choose Section (Home page only)
   ============================================================ */
.why-choose-section {
  background-color: #FFF5F7;
  padding: 3rem 0;
}

.why-choose-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #880E4F;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.why-choose-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .why-choose-cards { grid-template-columns: 1fr 1fr; }
}

.why-choose-card {
  background-color: #fff;
  border: 1px solid #fce4ec;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.why-choose-card-check {
  color: #C2185B;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
}

.why-choose-card-title {
  font-weight: 700;
  color: #1A1A1A;
  font-size: 0.875rem;
  margin-bottom: 0.2rem;
}

.why-choose-card-desc {
  color: #555;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ============================================================
   Page Header (About, Let's Connect, Courses, etc.)
   ============================================================ */
.page-header {
  background-color: #C2185B;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.page-header-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #F8BBD0;
}

.page-header-title {
font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 640px) {
  .page-header-title { font-size: 3rem; }
}

/* ============================================================
   About Section
   ============================================================ */
.about-section {
  padding: 2rem 0;
  background-color: #FFF5F7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr minmax(0, 26rem); gap: 2rem; }
}

.trainer-label {
  color: #880E4F;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.trainer-name {
font-size: 1.875rem;
  font-weight: 700;
  color: #880E4F;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .trainer-name { font-size: 2.25rem; }
}

.trainer-title {
  color: #C2185B;
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 2rem;
  border-left: 2px solid #C2185B;
  padding-left: 1rem;
}

.trainer-bio {
  color: #1A1A1A;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.trainer-photo-wrap {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .trainer-photo-wrap { justify-content: flex-start; }
}

.trainer-photo {
  width: 100%;
  max-width: 24rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.trainer-placeholder {
  width: 18rem;
  height: 24rem;
  background-color: #C2185B;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.trainer-placeholder-icon {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trainer-placeholder-icon svg {
  width: 3.5rem;
  height: 3.5rem;
  color: #fff;
}

.trainer-placeholder-label {
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   Let's Connect Section
   ============================================================ */
.connect-section {
  padding: 3rem 0;
  background-color: #FFF5F7;
}

.connect-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .connect-inner { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .connect-inner { padding: 0 2rem; }
}

.connect-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .connect-cards { grid-template-columns: 1fr 1fr 1fr; }
}

.connect-card {
  display: block;
  color: #fff;
  padding: 3rem;
  text-align: center;
  border: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.connect-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.connect-card.phone {
  background-color: #C2185B;
}

.connect-card.phone:hover {
  background-color: #880E4F;
}

.connect-card.whatsapp {
  background-color: #2E7D52;
}

.connect-card.whatsapp:hover {
  background-color: #1B5E38;
}

.connect-card.location {
  background-color: #880E4F;
}

.connect-card.location:hover {
  background-color: #6a0b3d;
}

.connect-card.location .connect-card-icon svg {
  color: #fff;
  fill: none;
  stroke: currentColor;
}

.connect-card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.connect-card-icon svg {
  width: 3.5rem;
  height: 3.5rem;
}

.connect-card.phone .connect-card-icon svg {
  color: #fff;
  fill: none;
  stroke: currentColor;
}

.connect-card.whatsapp .connect-card-icon svg {
  color: #fff;
  fill: currentColor;
}

.connect-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.connect-card-value {
  font-size: .90rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.connect-note {
  text-align: center;
  color: #C2185B;
  font-size: 0.875rem;
  font-style: italic;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background-color: #C2185B;
  color: #fff;
}

.footer-inner {
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.footer-brand {
font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.625;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.footer-heading {
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #F8BBD0;
}

.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  padding-top: 1.5rem;
}

.social-icon {
  width: 18px;              /* slightly bigger = bolder look */
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;

  filter: brightness(0) invert(1);  /* 🔥 turns icon WHITE */
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   Courses Page
   ============================================================ */
.courses-wrapper {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

@media (min-width: 640px) {
  .courses-wrapper { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .courses-wrapper { padding-left: 2rem; padding-right: 2rem; }
}

.courses-section {
  margin-bottom: 6rem;
}

.section-heading {
font-size: 1.875rem;
  font-weight: 700;
  color: #880E4F;
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 2px;
  background-color: #C2185B;
}

.course-card {
  background-color: #fff;
  border: 1px solid #f0d6de;
  border-top: 3px solid #C2185B;
  box-shadow: 0 4px 16px rgba(194, 24, 91, 0.08);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.course-card-header {
  background-color: #fff;
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #f0d6de;
}

.course-card-title {
font-size: 1.25rem;
  font-weight: 700;
  color: #880E4F;
}

@media (min-width: 640px) {
  .course-card-title { font-size: 1.5rem; }
}

.course-badge {
  background-color: #C2185B;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.course-card-body {
  background-color: #fff;
  padding: 2rem;
}

.course-row {
  margin-bottom: 2rem;
}

.course-row + .course-row {
  padding-top: 1.5rem;
  border-top: 1px solid #fce4ec;
}

.course-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #C2185B;
  margin-bottom: 0.75rem;
}

.course-nature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.course-nature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #1A1A1A;
}

.course-nature-bullet {
  color: #C2185B;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.course-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .course-detail-grid { grid-template-columns: 1fr 1fr; }
}

.course-detail-value {
  color: #1A1A1A;
}

.course-syllabus {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #1A1A1A;
}

.course-free-offer {
  background-color: #880E4F;
  padding: 1rem 1.5rem;
}

.course-free-offer-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F8BBD0;
  display: block;
  margin-bottom: 0.25rem;
}

.course-free-offer-text {
  font-size: 0.875rem;
  color: #fff;
}

.course-fee-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.course-fee-divider {
  width: 1px;
  height: 2.5rem;
  background-color: #fce4ec;
  display: none;
}

@media (min-width: 640px) {
  .course-fee-divider { display: block; }
}

.course-fee-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.course-fee-original {
  color: #1A1A1A;
  text-decoration: line-through;
  font-size: 1.25rem;
}

.course-fee-offer {
  color: #2E7D52;
  font-size: 1.875rem;
  font-weight: 700;
}

.course-cta-btn {
  display: inline-block;
  background-color: #2E7D52;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.75rem 2.5rem;
  border: 1px solid #2E7D52;
  transition: background-color 0.2s ease;
}

.course-cta-btn:hover {
  background-color: #1B5E38;
  border-color: #1B5E38;
}

.courses-empty {
  border: 1px dashed #C2185B;
  padding: 4rem 0;
  text-align: center;
  color: #C2185B;
  font-style: italic;
}

/* ============================================================
   Testimonials Page
   ============================================================ */
.testimonials-section {
  padding: 2rem 0;
  background-color: #FFF5F7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background-color: #fff;
  border: 1px solid #C2185B;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(194, 24, 91, 0.08);
  transition: box-shadow 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(194, 24, 91, 0.15);
}

.testimonial-video-box {
  aspect-ratio: 16 / 9;
  background-color: #000;
}

.testimonial-video-box iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.testimonial-video-unavailable {
  aspect-ratio: 16 / 9;
  background-color: #fce4ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C2185B;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-name-row {
  padding: 0.875rem 1.25rem;
  background-color: #fff;
  border-top: 1px solid #fce4ec;
  font-weight: 600;
  color: #880E4F;
  font-size: 0.875rem;
}

.testimonials-empty {
  text-align: center;
  padding: 4rem 0;
  color: #C2185B;
  font-style: italic;
}

.testimonials-reviews-section {
  padding: 2rem 0;
  background-color: #fce4ec;
}

.testimonials-reviews-header {
  text-align: center;
  margin-bottom: 0.5rem;
}

.testimonials-reviews-label {
  color: #C2185B;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.testimonials-reviews-title {
font-size: 1.875rem;
  font-weight: 700;
  color: #880E4F;
}

.review-card {
  background-color: #fff;
  border: 1px solid #fce4ec;
  padding: 1.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}

.review-card:hover {
  box-shadow: 0 4px 16px rgba(194, 24, 91, 0.12);
}

.review-stars {
  color: #C2185B;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.review-quote {
  color: #1A1A1A;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

.review-author {
  font-weight: 700;
  color: #880E4F;
  font-size: 0.875rem;
  border-top: 1px solid #fce4ec;
  padding-top: 1rem;
}

/* ============================================================
   Gallery Page
   ============================================================ */
.gallery-section {
  padding: 2rem 0;
  background-color: #FFF5F7;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #fce4ec;
  padding-bottom: 0rem;
}

.gallery-tab {
  padding: 0.625rem 1.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  border: 1px solid #C2185B;
  background-color: #fff;
  cursor: pointer;
  color: #C2185B;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gallery-tab:hover {
  background-color: #F8BBD0;
  color: #880E4F;
  border-color: #F8BBD0;
}

.gallery-tab.active {
  background-color: #2E7D52;
  color: #fff;
  border-color: #2E7D52;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-card {
  background-color: #fff;
  border: 1px solid #fce4ec;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}

.gallery-card:hover {
  box-shadow: 0 6px 20px rgba(194, 24, 91, 0.12);
}

.gallery-media-sq {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #fce4ec;
}

.gallery-media-4x3 {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #fce4ec;
}

.gallery-media-3x4 {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #fce4ec;
}

.gallery-media-vid {
  aspect-ratio: 16 / 9;
  background-color: #000;
}

.gallery-media-vid iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-media-unavailable {
  aspect-ratio: 1 / 1;
  background-color: #fce4ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C2185B;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

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

.gallery-caption {
  padding: 0.75rem 1rem;
  background-color: #fff;
  font-size: 0.75rem;
  color: #1A1A1A;
}

.gallery-empty {
  border: 1px dashed #C2185B;
  padding: 5rem 0;
  text-align: center;
  color: #C2185B;
  font-style: italic;
}

