/* Premium White & Purple Theme for Potter's Tabernacle Ministries */

:root {
  --primary-purple: #6d28d9;      /* Rich Royal Purple */
  --primary-purple-hover: #5b21b6;
  --accent-purple: #8b5cf6;       /* Vibrant Purple */
  --light-purple: #ede9fe;        /* Soft Pastel Purple */
  --purple-glow: rgba(109, 40, 217, 0.4);
  
  --bg-white: #ffffff;
  --bg-offwhite: #f8fafc;
  --text-dark: #1e1b4b;          /* Deep Indigo/Purple text */
  --text-body: #475569;
  --text-muted: #64748b;
  --text-light: #ffffff;

  --font-family: 'Google Sans', 'Product Sans', 'Open Sans', 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  font-family: var(--font-family);
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Container Helper */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Floating Transparent Navigation Bar over Hero Section */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(180deg, rgba(9, 13, 22, 0.65) 0%, rgba(9, 13, 22, 0) 100%);
  border-bottom: none;
  box-shadow: none;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 101;
}

.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
  border-radius: 50%;
  background: #ffffff;
  padding: 2px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.nav-links a {
  color: #f8fafc;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: #c084fc;
}

.nav-cta {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white !important;
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-shadow: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

/* Animated Hamburger Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  cursor: pointer;
  z-index: 101;
  transition: background 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
}

.menu-toggle span {
  width: 22px;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* 1. Full Screen Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero Slider Background */
.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.98);
  will-change: transform, opacity;
}

/* Transparent Purple Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(30, 27, 75, 0.45) 0%,
    rgba(88, 28, 135, 0.25) 50%,
    rgba(15, 23, 42, 0.55) 100%
  );
  z-index: 2;
}

/* Hero Main Content Card */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.4rem;
  border-radius: 50px;
  background: rgba(109, 40, 217, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c084fc;
  box-shadow: 0 0 10px #c084fc;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-title span {
  background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #f8fafc;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  will-change: transform;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white;
  box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-purple);
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-arrow:hover {
  background: var(--primary-purple);
  border-color: rgba(255, 255, 255, 0.9);
}

.slider-arrow.prev { left: 2rem; }
.slider-arrow.next { right: 2rem; }

.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.6rem;
  background: rgba(15, 23, 42, 0.45);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.dot.active {
  width: 28px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

/* Section Header Styling */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  background: #f3e8ff;
  border: 1px solid #d8b4fe;
  color: var(--primary-purple);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-purple);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-title span {
  background: linear-gradient(135deg, var(--primary-purple), #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  font-weight: 400;
}

/* 2. About Us Section */
.about-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

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

.about-image-column {
  position: relative;
}

.image-stack {
  position: relative;
  width: 100%;
  min-height: 440px;
}

.img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(109, 40, 217, 0.15);
  position: absolute;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main-img {
  width: 78%;
  height: 380px;
  top: 0;
  left: 0;
  z-index: 1;
  border: 4px solid #ffffff;
}

.secondary-img {
  width: 60%;
  height: 280px;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 4px solid #ffffff;
}

.img-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(109, 40, 217, 0.25);
}

.floating-badge {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.badge-number {
  font-size: 1.4rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  color: #e9d5ff;
}

.badge-label {
  font-size: 0.78rem;
  color: #cbd5e1;
  font-weight: 500;
  text-transform: uppercase;
}

.about-content-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-card {
  display: flex;
  gap: 1.2rem;
  background: #ffffff;
  padding: 1.6rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: #c084fc;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #f3e8ff;
  color: var(--primary-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.card-text p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(243, 232, 255, 0.5);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #ede9fe;
}

.pillar-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-purple);
  margin-top: 5px;
  flex-shrink: 0;
}

.pillar-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.pillar-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 3. Activities Section */
.events-section {
  padding: 6.5rem 0;
  background: #ffffff;
}

.events-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.event-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(109, 40, 217, 0.15);
}

.event-image-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.event-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-image-container img {
  transform: scale(1.08);
}

.event-date-chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.5rem 0.8rem;
  border-radius: 12px;
  text-align: center;
  line-height: 1.1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-date-chip .day {
  font-size: 1.25rem;
  font-weight: 800;
  display: block;
  color: #c084fc;
}

.event-date-chip .month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.event-category-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--primary-purple);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.event-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.event-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.event-excerpt {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.event-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

.event-read-more {
  color: var(--primary-purple);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.event-read-more:hover {
  color: var(--primary-purple-hover);
}

/* Quote Banner Section */
.quote-banner-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #311075 100%);
  color: #ffffff;
}

.quote-banner {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: space-between;
}

.quote-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-content {
  text-align: center;
  max-width: 760px;
}

.quote-icon {
  color: #c084fc;
  margin-bottom: 1rem;
}

.quote-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  color: #ffffff;
}

.quote-author {
  font-size: 0.95rem;
  font-weight: 700;
  color: #d8b4fe;
  letter-spacing: 0.08em;
  font-style: normal;
}

/* 4. Gallery Section */
.gallery-section {
  padding: 6.5rem 0;
  background: #f8fafc;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-purple);
  color: #ffffff;
  border-color: var(--primary-purple);
  box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 20%, rgba(15, 23, 42, 0.85) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: #c084fc;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.gallery-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.gallery-zoom-icon {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(15px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 1.2rem;
  color: #ffffff;
  font-size: 1.1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 2.5rem;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

/* 5. Contact Us Section */
.contact-section {
  padding: 6.5rem 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f3e8ff;
  color: var(--primary-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--text-body);
}

.form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2.8rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.form-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.15);
}

.btn-block {
  width: 100%;
}

/* 6. Footer Section */
.footer {
  background: #0f172a;
  color: #ffffff;
  padding: 5rem 0 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-top: 1.2rem;
  max-width: 380px;
}

.footer-links h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #c084fc;
}

.footer-links li {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.88rem;
  color: #64748b;
}

/* Mobile Responsive Breakpoints */
@media (max-width: 1024px) {
  .events-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 1rem 1.2rem;
  }
  .logo-text {
    font-size: 0.95rem;
  }
  .logo-img {
    height: 42px;
  }
  .hero-content {
    padding: 1.8rem 1.2rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(24px);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    z-index: 100;
  }

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

  .nav-links a {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
  }

  .nav-cta {
    font-size: 1.15rem !important;
    padding: 0.85rem 2.2rem !important;
    margin-top: 1rem;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
  }
  .slider-arrow.prev { left: 0.8rem; }
  .slider-arrow.next { right: 0.8rem; }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .image-stack {
    max-width: 520px;
    margin: 0 auto;
    min-height: 380px;
  }

  .events-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .quote-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }

  .quote-avatar {
    width: 90px;
    height: 90px;
  }

  .avatar-left { order: 1; }
  .quote-content { order: 2; }
  .avatar-right { order: 3; }
}

@media (max-width: 600px) {
  .logo-text {
    font-size: 0.85rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .slider-dots {
    bottom: 1.5rem;
  }

  .about-section,
  .events-section,
  .gallery-section,
  .contact-section {
    padding: 4rem 0;
  }

  .events-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .main-img {
    width: 85%;
    height: 280px;
  }

  .secondary-img {
    width: 65%;
    height: 200px;
  }

  .floating-badge {
    left: 45%;
    padding: 0.75rem 1rem;
  }

  .form-card {
    padding: 1.8rem 1.2rem;
  }

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