/* =============================================
   LMS Palve Sugavasam — Banquet Gallery Carousel
   All classes prefixed with lc-
   ============================================= */

/* ── Section wrapper ──────────────────────── */
.lc-gallery-section {
  background: #ffffff;
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

/* Subtle ambient glow top */
.lc-gallery-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(185, 150, 80, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Header ───────────────────────────────── */
.lc-gallery-header {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 20px;
}

.lc-gallery-eyebrow {
  display: block;
  /* font-family: 'Lato', sans-serif; */
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 12px;
}

.lc-gallery-title {
  /* font-family: 'Playfair Display', Georgia, serif; */
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #000000;
  margin: 0 0 18px;
  line-height: 1.15;
}

/* Separator — matches site's gem separator */
.lc-gallery-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
  color: rgb(0, 0, 0);
  font-size: 13px;
}
.lc-gallery-sep::before,
.lc-gallery-sep::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 150, 80, 0.5));
}
.lc-gallery-sep::after {
  background: linear-gradient(270deg, transparent, rgba(185, 150, 80, 0.5));
}

.lc-gallery-subtitle {
  /* font-family: 'Lato', sans-serif; */
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Carousel root ────────────────────────── */
.lc-carousel-root {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 72px;          /* space for arrows */
}

/* ── Viewport (clips the track) ───────────── */
.lc-carousel-viewport {
  overflow: hidden;
  border-radius: 2px;
}

/* ── Track ────────────────────────────────── */
.lc-carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* ── Slides ───────────────────────────────── */
.lc-carousel-slide {
  flex: 0 0 calc(100% / 3);   /* 3 visible on desktop */
  padding: 0 10px;
  box-sizing: border-box;
}

.lc-slide-inner {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(185, 150, 80, 0.15);
  background: #111;
  cursor: pointer;
}

.lc-slide-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.4s ease;
  filter: brightness(0.9) saturate(0.95);
}

.lc-slide-inner:hover .lc-slide-img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.05);
}

/* Caption overlay */
.lc-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 16px 16px;
  background: linear-gradient(to top, rgba(10, 8, 5, 0.88) 0%, transparent 100%);
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lc-slide-inner:hover .lc-slide-caption {
  opacity: 1;
  transform: translateY(0);
}

.lc-caption-tag {
  display: inline-block;
  /* font-family: 'Lato', sans-serif; */
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid rgba(185, 150, 80, 0.5);
  padding: 3px 8px;
  margin-bottom: 7px;
}

.lc-caption-text {
  /* font-family: 'Lato', sans-serif; */
  font-size: 12px;
  color: rgba(240, 232, 213, 0.8);
  margin: 0;
  line-height: 1.5;
}

/* ── Arrow buttons ────────────────────────── */
.lc-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 0, 0, 0);
  background: rgba(10, 8, 5, 0.226);
  color: #c9a84c;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border-radius: 1px;
  backdrop-filter: blur(4px);
}

.lc-carousel-btn:hover {
  background: rgba(185, 150, 80, 0.15);
  border-color: #00000000;
  color: #000000;
}

.lc-carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.lc-btn-prev { left: 0; }
.lc-btn-next { right: 0; }

/* ── Dots ─────────────────────────────────── */
.lc-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.lc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.lc-dot.lc-dot-active {
  background: #c9a84c;
  transform: scale(1.4);
}

/* ── Counter ──────────────────────────────── */
.lc-carousel-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  /* font-family: 'Lato', sans-serif; */
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(185, 150, 80, 0.6);
}

#lcCountCurrent {
  color: #2d2d2d;
  font-size: 16px;
  font-weight: 700;
}

.lc-counter-sep {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(185, 150, 80, 0.4);
}

/* ── Responsive ───────────────────────────── */

/* Tablet: 2 visible */
@media (max-width: 900px) {
  .lc-carousel-slide {
    flex: 0 0 50%;
  }
  .lc-carousel-root {
    padding: 0 56px;
  }
}

/* Mobile: 1 visible */
@media (max-width: 560px) {
  .lc-carousel-slide {
    flex: 0 0 100%;
    padding: 0 6px;
  }
  .lc-carousel-root {
    padding: 0 44px;
  }
  .lc-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .lc-gallery-section {
    padding: 60px 0 50px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lc-carousel-track,
  .lc-slide-img,
  .lc-slide-caption {
    transition: none;
  }
}


/* =============================================
   LMS Palve Sugavasam — Banquet Hall Content
   All classes prefixed with lc-bq-
   ============================================= */

/* ── Root wrapper ─────────────────────────── */
.lc-banquet-content {
  /* font-family: 'Lato', sans-serif; */
}

/* ── Shared container ─────────────────────── */
.lc-bq-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ── Section base ─────────────────────────── */
.lc-bq-section {
  padding: 90px 0;
  position: relative;
}

.lc-bq-section.lc-bq-dark {
  background: #ffffff;
}

.lc-bq-section:not(.lc-bq-dark) {
  background: #ffffff;
}

/* Thin gold top border on dark sections */
.lc-bq-section.lc-bq-dark::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

/* ── Section header (centered) ────────────── */
.lc-bq-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.lc-bq-subtitle {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
  margin-top: 10px;
}

/* ── Eyebrow ──────────────────────────────── */
.lc-bq-eyebrow {
  display: block;
  font-size: 10.5px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 12px;
  font-weight: 600;
}

/* ── Titles ───────────────────────────────── */
.lc-bq-title {
  /* font-family: 'Playfair Display', Georgia, serif; */
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: #000000;
  line-height: 1.25;
  margin: 0 0 16px;
}

/* ── Separator ────────────────────────────── */
.lc-bq-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  color: rgba(185, 150, 80, 0.55);
  font-size: 13px;
}
.lc-bq-sep::before,
.lc-bq-sep::after {
  content: '';
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 150, 80, 0.45));
}
.lc-bq-sep::after {
  background: linear-gradient(270deg, transparent, rgba(185, 150, 80, 0.45));
}

/* Left-aligned separator variant */
.lc-bq-sep.lc-bq-sep-left {
  justify-content: flex-start;
}
.lc-bq-sep.lc-bq-sep-left::before { display: none; }
.lc-bq-sep.lc-bq-sep-left::after {
  background: linear-gradient(90deg, rgba(185, 150, 80, 0.45), transparent);
}

/* ── Body text ────────────────────────────── */
.lc-bq-lead {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.85;
  margin-bottom: 18px;
}

.lc-bq-body {
  font-size: 14.5px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.85;
  margin-bottom: 16px;
}

.lc-bq-body strong,
.lc-bq-subtitle strong {
  color: rgba(200, 185, 155, 0.85);
  font-weight: 600;
}

/* ── Button ───────────────────────────────── */
.lc-bq-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 13px 30px;
  background: linear-gradient(135deg, #b8892e, #e0b84a, #b8892e);
  background-size: 200% 100%;
  color: #ffffff;
  /* font-family: 'Lato', sans-serif; */
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.15s ease;
  box-shadow: 0 4px 20px rgba(185, 150, 80, 0.2);
}

.lc-bq-btn:hover {
  background-position: right center;
  box-shadow: 0 6px 28px rgba(185, 150, 80, 0.38);
  transform: translateY(-1px);
  color: #0a0805;
  text-decoration: none;
}

.lc-bq-btn.lc-bq-btn-outline {
  background: transparent;
  border: 1px solid rgba(185, 150, 80, 0.45);
  color: #c9a84c;
  box-shadow: none;
}

.lc-bq-btn.lc-bq-btn-outline:hover {
  background: rgba(185, 150, 80, 0.08);
  border-color: #c9a84c;
  box-shadow: none;
  color: #e8c97a;
  transform: translateY(-1px);
}

/* ── Two-column row ───────────────────────── */
.lc-bq-row.lc-bq-row-split {
  display: contents;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.lc-bq-row.lc-bq-row-reverse {
  direction: rtl;
}
.lc-bq-row.lc-bq-row-reverse > * {
  direction: ltr;
}

/* ── Stats block ──────────────────────────── */
.lc-bq-stats {
  border: 1px solid rgba(185, 150, 80, 0.2);
  padding: 36px 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lc-bq-stat-item {
  padding: 20px 0;
  text-align: center;
}

.lc-bq-stat-num {
  display: block;
  /* font-family: 'Playfair Display', Georgia, serif; */
  font-size: 42px;
  color: #000000;
  line-height: 1;
  margin-bottom: 6px;
}

.lc-bq-stat-num sup {
  font-size: 22px;
  vertical-align: super;
}

.lc-bq-stat-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}

.lc-bq-stat-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 150, 80, 0.25), transparent);
}

/* ── Pull quote ───────────────────────────── */
.lc-bq-quote {
  position: relative;
  padding: 20px 20px 20px 28px;
  border-left: 2px solid rgba(185, 150, 80, 0.4);
}

.lc-bq-quote-icon {
  color: rgba(0, 0, 0, 0.3);
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

.lc-bq-quote p {
  /* font-family: 'Playfair Display', Georgia, serif; */
  font-size: 15px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.65);
  margin: 0;
  line-height: 1.7;
}

/* ── Feature cards (3-col) ────────────────── */
.lc-bq-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lc-bq-card {
  padding: 36px 28px;
  border: 1px solid rgba(185, 150, 80, 0.15);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.lc-bq-card:hover {
  border-color: rgba(185, 150, 80, 0.4);
  background: rgba(185, 150, 80, 0.04);
}

.lc-bq-card-icon {
  font-size: 30px;
  color: #c9a84c;
  margin-bottom: 18px;
  opacity: 0.85;
}

.lc-bq-card-title {
  /* font-family: 'Playfair Display', Georgia, serif; */
  font-size: 17px;
  color: #000000;
  margin: 0 0 12px;
  font-weight: 600;
}

.lc-bq-card-text {
  font-size: 13.5px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.8;
  margin: 0;
}

/* ── Checklist ────────────────────────────── */
.lc-bq-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lc-bq-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
}

.lc-bq-checklist li i {
  color: #c9a84c;
  font-size: 13px;
  flex-shrink: 0;
}

/* ── Highlight box ────────────────────────── */
.lc-bq-highlight-box {
  background: linear-gradient(145deg, rgba(185, 150, 80, 0.08), rgba(185, 150, 80, 0.03));
  border: 1px solid rgba(185, 150, 80, 0.22);
  position: relative;
  overflow: hidden;
}

.lc-bq-highlight-box::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

.lc-bq-highlight-inner {
  padding: 36px 32px;
}

.lc-bq-highlight-icon {
  font-size: 34px;
  color: rgba(185, 150, 80, 0.45);
  display: block;
  margin-bottom: 16px;
}

.lc-bq-highlight-inner h3 {
  /* font-family: 'Playfair Display', Georgia, serif; */
  font-size: 20px;
  color: #000000;
  margin: 0 0 16px;
  font-weight: 600;
}

.lc-bq-highlight-inner p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.85;
  margin: 0 0 14px;
}

.lc-bq-highlight-inner p:last-child {
  margin-bottom: 0;
}

/* ── Numbered reasons ─────────────────────── */
.lc-bq-reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(185, 150, 80, 0.15);
  margin-bottom: 60px;
}

.lc-bq-reason {
  display: flex;
  gap: 20px;
  padding: 32px 30px;
  border-bottom: 1px solid rgba(185, 150, 80, 0.12);
  border-right: 1px solid rgba(185, 150, 80, 0.12);
  transition: background 0.25s ease;
}

.lc-bq-reason:nth-child(even) {
  border-right: none;
}

.lc-bq-reason:nth-last-child(-n+2) {
  border-bottom: none;
}

.lc-bq-reason:hover {
  background: rgba(185, 150, 80, 0.04);
}

.lc-bq-reason-num {
  /* font-family: 'Playfair Display', Georgia, serif; */
  font-size: 22px;
  color: rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 3px;
}

.lc-bq-reason-body h4 {
  /* font-family: 'Playfair Display', Georgia, serif; */
  font-size: 16px;
  color: #000000;
  margin: 0 0 10px;
  font-weight: 600;
}

.lc-bq-reason-body p {
  font-size: 13.5px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.8;
  margin: 0;
}

/* ── CTA banner ───────────────────────────── */
.lc-bq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 44px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, rgba(185, 150, 80, 0.06), rgba(185, 150, 80, 0.02));
  position: relative;
  overflow: hidden;
}

.lc-bq-cta::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

.lc-bq-cta-text h3 {
  /* font-family: 'Playfair Display', Georgia, serif; */
  font-size: 22px;
  color: #000000;
  margin: 0 0 6px;
  font-weight: 600;
}

.lc-bq-cta-text p {
  font-size: 14px;
  color: rgb(0, 0, 0);
  margin: 0;
}

.lc-bq-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 900px) {
  .lc-bq-row.lc-bq-row-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lc-bq-row.lc-bq-row-reverse {
    direction: ltr;
  }
  .lc-bq-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lc-bq-reasons {
    grid-template-columns: 1fr;
  }
  .lc-bq-reason {
    border-right: none !important;
  }
  .lc-bq-reason:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(185, 150, 80, 0.12);
  }
  .lc-bq-reason:last-child {
    border-bottom: none;
  }
  .lc-bq-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
  }
  .lc-bq-section {
    padding: 60px 0;
  }
}

@media (max-width: 560px) {
  .lc-bq-container {
    padding: 0 18px;
  }
  .lc-bq-stats {
    padding: 24px 18px;
  }
  .lc-bq-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .lc-bq-cta-actions .lc-bq-btn {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .lc-bq-title {
    font-size: 20px;
  }
}

/* ── Hall cards (Meadows + Pavilion) ─────── */
.lc-bq-halls {
  background: #0a0805;
}
 
.lc-bq-halls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
 
.lc-bq-hall-card {
  position: relative;
  padding: 44px 38px 36px;
  border: 1px solid rgba(185, 150, 80, 0.808);
  background: rgb(255, 255, 255);
  transition: border-color 0.35s ease, background 0.35s ease;
  overflow: hidden;
}
 
.lc-bq-hall-card::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
 
/* .lc-bq-hall-card:hover {
  border-color: rgba(185, 150, 80, 0.45);
  background: rgba(185, 150, 80, 0.04);
} */
 
.lc-bq-hall-card:hover::before {
  opacity: 1;
}
 
.lc-bq-hall-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  /* font-family: 'Playfair Display', Georgia, serif; */
  font-size: 52px;
  font-weight: 700;
  color: rgba(185, 150, 80, 0.751);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
 
.lc-bq-hall-icon {
  font-size: 36px;
  color: #c9a84c;
  opacity: 0.8;
  margin-bottom: 18px;
}
 
.lc-bq-hall-name {
  /* font-family: 'Playfair Display', Georgia, serif; */
  font-size: 26px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 16px;
}
 
.lc-bq-hall-sep {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, #c9a84c, transparent);
  margin-bottom: 20px;
}
 
.lc-bq-hall-desc {
  /* font-family: 'Lato', sans-serif; */
  font-size: 14px;
  color: rgba(0, 0, 0, 0.58);
  line-height: 1.85;
  margin: 0 0 14px;
}
 
.lc-bq-hall-desc:last-of-type {
  margin-bottom: 24px;
}
 
.lc-bq-hall-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
 
.lc-bq-hall-tags li {
  /* font-family: 'Lato', sans-serif; */
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid rgba(185, 150, 80, 0.795);
  padding: 5px 12px;
}
/* ==========================
   Responsive - Tablet & Mobile
========================== */

@media only screen and (max-width: 768px) {

  .lc-bq-halls-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lc-bq-hall-card {
    padding: 35px 25px 30px;
  }

  .lc-bq-hall-badge {
    top: 15px;
    right: 18px;
    font-size: 42px;
  }

  .lc-bq-hall-name {
    font-size: 24px;
  }

  .lc-bq-hall-desc {
    font-size: 14px;
    line-height: 1.8;
  }

  .lc-bq-hall-tags {
    gap: 6px;
  }

  .lc-bq-hall-tags li {
    font-size: 9px;
    letter-spacing: 1px;
    padding: 5px 10px;
  }
}

/* Extra Small Mobile */

@media only screen and (max-width: 480px) {

  .lc-bq-hall-card {
    padding: 30px 20px 25px;
  }

  .lc-bq-hall-badge {
    font-size: 34px;
    top: 12px;
    right: 15px;
  }

  .lc-bq-hall-name {
    font-size: 22px;
  }

  .lc-bq-hall-desc {
    font-size: 13px;
    line-height: 1.7;
  }

  .lc-bq-hall-tags li {
    font-size: 8px;
    letter-spacing: 1px;
    padding: 4px 8px;
  }
}