/* ============================================================
   Beth Aprem Nasrani Dayara - Main Stylesheet
   Light & Vibrant Christian Style
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --gold: #C8962A;
  --gold-light: #F0C96B;
  --gold-pale: #FBF0D9;
  --cream: #FDF8F0;
  --cream-dark: #F5EDD8;
  --ivory: #FFFDF7;
  --sky: #4A90C4;
  --sky-light: #D6EAF8;
  --teal: #2E8B7A;
  --teal-light: #C8EDE7;
  --maroon: #8B2635;
  --maroon-light: #F7DDE2;
  --text-dark: #2C2116;
  --text-mid: #5A4A35;
  --text-light: #8B7355;
  --white: #FFFFFF;
  --border: rgba(200, 150, 42, 0.2);
  --shadow-warm: 0 4px 24px rgba(200, 150, 42, 0.15);
  --shadow-soft: 0 8px 40px rgba(44, 33, 22, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

p {
  color: var(--text-mid);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Utility ── */
.section-padding {
  padding: 90px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.03em;
}

.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 36px;
}

.gold-divider span {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 2px;
}

.gold-divider .cross-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.gold-divider.center {
  justify-content: center;
}

.badge-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.btn-primary-gold {
  background: linear-gradient(135deg, var(--gold), #A67820);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(200, 150, 42, 0.35);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 150, 42, 0.45);
  color: var(--white);
  background: linear-gradient(135deg, #D4A030, var(--gold));
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 11px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: rgba(255, 253, 247, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: var(--transition);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(44, 33, 22, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  overflow: hidden;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: var(--transition);
}

.navbar-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar-brand:hover .navbar-logo-wrap {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 150, 42, 0.15);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.navbar-nav .nav-link {
  color: var(--text-mid) !important;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after {
  width: 60%;
}

.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-toggler {
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(200, 150, 42, 0.2);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(253, 248, 240, 0.92) 0%,
      rgba(253, 248, 240, 0.75) 50%,
      rgba(74, 144, 196, 0.15) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-syriac {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-syriac::before,
.hero-syriac::after {
  content: '';
  height: 1px;
  width: 30px;
  background: var(--gold-light);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-title .highlight {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--maroon);
  font-style: italic;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
}

.hero-card-stack {
  position: relative;
  padding: 20px 20px 0 0;
}

.hero-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  height: 420px;
}

.hero-badge-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-warm);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
}

.hero-badge-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.hero-floating-cross {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(200, 150, 42, 0.4);
  animation: floatCross 3s ease-in-out infinite;
}

@keyframes floatCross {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '✝';
  position: absolute;
  top: -30px;
  right: 5%;
  font-size: 200px;
  color: rgba(200, 150, 42, 0.04);
  font-family: serif;
  pointer-events: none;
}

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

.about-img-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80%;
  height: 80%;
  border: 3px solid var(--gold-light);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-img-frame::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80%;
  height: 80%;
  border: 3px solid var(--sky-light);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-year-badge {
  position: absolute;
  bottom: 20px;
  right: -15px;
  z-index: 2;
  background: var(--white);
  border: 2px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-warm);
}

.about-year-badge .year {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-year-badge .year-label {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-warm);
  transform: translateY(-3px);
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.about-feature h6 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   PROGRAMS SECTION
   ============================================================ */
.programs-section {
  background: var(--ivory);
}

.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-warm);
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-icon {
  width: 72px;
  height: 72px;
  background: var(--gold-pale);
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.program-card:hover .program-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}

.program-card h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.program-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.program-tag {
  display: inline-block;
  background: var(--sky-light);
  color: var(--sky);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 12px;
  margin-top: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Sky variant */
.program-card.sky .program-icon {
  background: var(--sky-light);
  border-color: var(--sky);
}

.program-card.sky:hover .program-icon {
  background: var(--sky);
  border-color: var(--sky);
}

.program-card.sky::before {
  background: linear-gradient(90deg, var(--sky-light), var(--sky));
}

/* Teal variant */
.program-card.teal .program-icon {
  background: var(--teal-light);
  border-color: var(--teal);
}

.program-card.teal:hover .program-icon {
  background: var(--teal);
  border-color: var(--teal);
}

.program-card.teal::before {
  background: linear-gradient(90deg, var(--teal-light), var(--teal));
}

/* Maroon variant */
.program-card.maroon .program-icon {
  background: var(--maroon-light);
  border-color: var(--maroon);
}

.program-card.maroon:hover .program-icon {
  background: var(--maroon);
  border-color: var(--maroon);
}

.program-card.maroon::before {
  background: linear-gradient(90deg, var(--maroon-light), var(--maroon));
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section {
  background: var(--cream);
}

.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-warm);
}

.event-date-col {
  background: linear-gradient(135deg, var(--gold), #A67820);
  color: var(--white);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  text-align: center;
}

.event-day {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}

.event-body {
  padding: 20px;
  flex: 1;
}

.event-type {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.event-body h5 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.event-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-light);
}

.event-meta-item i {
  color: var(--gold);
  font-size: 0.75rem;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  background: var(--ivory);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  background: var(--cream-dark);
  color: var(--text-mid);
  border: 1px solid var(--border);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.gallery-grid {
  --cols: 3;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 33, 22, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay-text {
  color: var(--white);
  font-size: 0.9rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.gallery-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

/* Gallery Lightbox */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 10, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.lb-overlay.active {
  display: flex;
}

.lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lb-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lb-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.lb-close:hover {
  background: var(--maroon);
  transform: rotate(90deg);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--cream);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
  box-shadow: var(--shadow-soft);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h6 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.contact-form-wrap h4 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-form-wrap .sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 15px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 150, 42, 0.12);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-light);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-soft);
  height: 240px;
  margin-top: 24px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  filter: sepia(10%) saturate(90%);
}

/* ============================================================
   QUOTE / TESTIMONIAL BANNER
   ============================================================ */
.quote-banner {
  background: linear-gradient(135deg, #FDF4E3 0%, #FBF0D9 100%);
  border-top: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  padding: 70px 0;
  text-align: center;
}

.quote-icon {
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 12px;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.quote-author {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   YOUTUBE VIDEOS SECTION
   ============================================================ */
.videos-section {
  background: var(--cream);
}

.video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm);
}

/* 16:9 responsive embed container */
.video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #0f0f0f;
  flex-shrink: 0;
}

.video-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-info {
  padding: 22px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid var(--gold-light);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  width: fit-content;
}

.video-info h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.35;
}

.video-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FF0000;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 4px;
  transition: var(--transition);
}

.video-link:hover {
  color: #CC0000;
  gap: 9px;
}

.video-link i {
  font-size: 1rem;
}

/* Subscribe CTA banner */
.yt-cta-wrap {
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-pale) 100%);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-warm);
}

.yt-cta-icon {
  width: 72px;
  height: 72px;
  background: #FF0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}

.yt-cta-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.6;
}

@media (max-width: 575.98px) {
  .yt-cta-wrap {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
}

/* ============================================================
   FOUNDER SECTION

   ============================================================ */
.founder-section {
  background: var(--ivory);
}

.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 0;
}

.founder-img-col {
  width: 280px;
  min-height: 360px;
  background: linear-gradient(135deg, var(--gold-pale), var(--sky-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.founder-avatar {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--gold), #A67820);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--white);
  box-shadow: 0 12px 36px rgba(200, 150, 42, 0.35);
}

.founder-body {
  padding: 48px;
}

.founder-role {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.founder-body h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.founder-body p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.founder-quote {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(160deg, #1A1108 0%, #2C1F0E 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(200, 150, 42, 0.4);
  overflow: hidden;
  background: rgba(200, 150, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.2;
}

.footer-brand-sub {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(200, 150, 42, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer h6 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.858rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(200, 150, 42, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 56px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-bottom a {
  color: var(--gold-light);
}

.footer-copyright-cross {
  color: var(--gold);
  font-size: 1rem;
  margin: 0 6px;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), #A67820);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: var(--transition);
  z-index: 999;
  border: none;
  box-shadow: 0 4px 16px rgba(200, 150, 42, 0.4);
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#scrollTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(200, 150, 42, 0.5);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 64px 0;
  }

  /* Extra bottom padding so the badge card isn't clipped, scroll hint hidden below */
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-image-wrap {
    margin-top: 40px;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .founder-card {
    flex-direction: column;
  }

  .founder-img-col {
    width: 100%;
    min-height: 200px;
    padding: 40px 0;
  }

  .founder-body {
    padding: 32px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  /* Hide the SCROLL hint on tablets & smaller so it never overlaps content */
  .hero-scroll-hint {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.4rem;
  }

  /* Badge card sits just below the image with a margin buffer */
  .hero-badge-card {
    left: 0;
    right: 0;
    bottom: -20px;
    min-width: auto;
  }

  .hero-image-wrap {
    margin-bottom: 32px;
  }

  .about-year-badge {
    right: 10px;
  }

  .event-card {
    flex-direction: column;
  }

  .event-date-col {
    flex-direction: row;
    gap: 8px;
    padding: 12px 20px;
  }

  .gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  .contact-card,
  .contact-form-wrap {
    padding: 24px;
  }
}

@media (max-width: 575.98px) {

  .about-img-frame::before,
  .about-img-frame::after {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-btn-group {
    flex-direction: column;
    align-items: flex-start;
  }
}