/* ==========================================================
   GLOBAL VARIABLES & BASE STYLES
   ========================================================== */
:root {
  /* 🎨 Palette */
  --red: #b30000;
  --gold: #d4af37;
  --black: #111;
  --offwhite: #faf9f6;
  --gray: #555;

  /* 🌈 Extended palette (legacy support from brown theme) */
  --brown-dark: #8b0000;
  --brown-accent: #d22b2b;
  --warm-ivory: #fff8f7;
  --muted: #6b5c5c;
  --card-bg: rgba(255, 255, 255, 0.9);

  /* ⚙️ Misc */
  --max-width: 1200px;
  --transition: all 0.4s ease;
  font-family: "Georgia", "Times New Roman", serif;
}

/* Container utility */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  position: relative;
}

/* ==========================================================
   WHAT SETS US APART SECTION
   ========================================================== */
.what_sets_us_apart {
  padding: 4rem 0;
  background: #f9f9f9;
}

.section_header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 20px;
}

.section_title {
  color: #4e3629;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  line-height: 1.2;
}

@media (min-width: 992px) {
  .section_title {
    font-size: 2.875rem;
  }
}

/* Card Grid */
.component_block {
  display: grid;
  justify-content: center;
  gap: 30px;
}

.component_items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .component_items {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
  }
}

@media (min-width: 1200px) {
  .component_items {
    grid-template-columns: repeat(3, minmax(350px, 1fr));
  }
}

/* Individual Card */
.component_item.card {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 420px;
  margin: 0 auto;
}

.component_item.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.component_icon {
  font-size: 3rem;
  color: #c00404;
  margin-bottom: 1.25rem;
  text-align: center;
}

.component_title {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #4e3629;
  font-size: 1.25rem;
}

.component_description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  max-width: 90%;
  margin: 0 auto;
}

.subject_item_caption {
  display: block;
}

/* ==========================================================
   BROWN TESTIMONIALS (Slider Section)
   ========================================================== */
.brown-testimonials {
  background: linear-gradient(180deg, var(--warm-ivory), #fff 60%);
  padding: 80px 20px;
  color: var(--brown-dark);
  font-family: "Inter", system-ui, -apple-system, "Helvetica Neue", Arial;
}

/* Header */
.bt-header h2 {
  font-size: 2.6rem;
  line-height: 1.02;
  margin: 0;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: -0.02em;
}

.bt-header .lead {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.bt-header .accent {
  height: 4px;
  width: 64px;
  background: var(--brown-accent);
  margin: 18px auto 0;
  border-radius: 3px;
}

/* Slider Viewport */
.bt-viewport {
  margin-top: 42px;
  min-height: 260px;
  position: relative;
  overflow: visible;
  padding: 20px;
}

.bt-slide {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(24px) scale(0.995);
  transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.2, 1),
              transform 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: opacity, transform;
  pointer-events: none;
}

.bt-slide[aria-hidden="false"] {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  position: relative;
}

/* Card */
.bt-figure {
  background: var(--card-bg);
  padding: 34px 28px;
  border-radius: 12px;
  max-width: 820px;
  width: calc(100% - 40px);
  box-shadow: 0 10px 30px rgba(34, 34, 34, 0.06);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: center;
  text-align: left;
  border: 1px solid rgba(126, 96, 79, 0.06);
  backdrop-filter: blur(3px);
}

.bt-figure img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(127, 87, 63, 0.06);
  box-shadow: 0 6px 20px rgba(34, 34, 34, 0.08);
}

.bt-figure figcaption {
  padding: 6px 0;
}

.quote {
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0 0 8px 0;
  color: black;
  font-style: italic;
  font-weight: 400;
}

.bt-figure cite {
  color: var(--brown-accent);
  font-weight: 600;
  font-size: 0.98rem;
  display: block;
}

/* Controls */
.bt-controls {
  margin: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.bt-arrow {
  background: transparent;
  border: 1px solid rgba(62, 42, 34, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.bt-arrow:focus {
  outline: 3px solid rgba(127, 87, 63, 0.14);
}
.bt-arrow:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(34, 34, 34, 0.06);
}

/* Dots */
.bt-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.bt-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e6ddd6;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}
.bt-dot[aria-selected="true"],
.bt-dot.active {
  background: var(--brown-accent);
  transform: scale(1.18);
  box-shadow: 0 6px 12px rgba(127, 87, 63, 0.12);
}
.bt-dot:focus {
  outline: 3px solid rgba(127, 87, 63, 0.12);
}

/* Responsive */
@media (max-width: 780px) {
  .bt-figure {
    grid-template-columns: 72px 1fr;
    padding: 22px;
    gap: 14px;
  }
  .bt-figure img {
    width: 72px;
    height: 72px;
  }
  .quote {
    font-size: 1.05rem;
  }
  .bt-header h2 {
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bt-slide,
  .bt-arrow,
  .bt-dot {
    transition: none;
    transform: none;
  }
}

/* ==========================================================
   NEWS & EVENTS SECTION
   ========================================================== */
.news-events-section {
  background: var(--offwhite);
  padding: 6rem 1.5rem;
  color: var(--gray);
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.4rem;
  color: var(--red);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Card */
.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

.news-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.news-content {
  padding: 1.8rem;
}

.news-tag {
  display: inline-block;
  background: var(--black);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.news-tag.event {
  background: var(--gold);
  color: var(--black);
}

.news-content h3 {
  font-size: 1.3rem;
  color: var(--red);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.news-content p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
}

.news-link {
  text-decoration: none;
  color: var(--gold);
  font-weight: 600;
  transition: var(--transition);
}

.news-link:hover {
  color: var(--red);
}

/* Footer */
.news-footer {
  text-align: center;
  margin-top: 4rem;
}

.view-all-btn {
  display: inline-block;
  background: var(--black);
  color: var(--gold);
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: var(--transition);
}

.view-all-btn:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-3px);
}
.footer{
  background: var(--brown-dark);
}
 

.address_details_info a {
  color: inherit;
  text-decoration: none;
}

.address_details_info a:hover {
  color: var(--gold, #b58500);
}
