/* ============================================
   Noor Quran Classes — Site Stylesheet (v2)
   Warm, classic Islamic-academy styling.
   Plain CSS, no build step — edit colors/fonts
   here and they apply across every page.
   ============================================ */

:root {
  --navy: #1b2a4a;
  --navy-deep: #0e1a30;
  --gold: #c9973f;
  --gold-light: #f2e2bb;
  --green: #3a7d44;
  --green-deep: #1e5c2a;
  --cream: #ffffff;
  --cream-deep: #f5f6f2;
  --sage: #7c9e8e;
  --rose: #d9a99a;
  --ink: #24303f;
  --ink-soft: #5c6a78;
  --border: #e6e2d4;
  --radius: 16px;
  --shadow: 0 14px 34px rgba(27, 42, 74, 0.12);
  --max-width: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: "Marcellus", "Georgia", serif;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 14px;
  font-weight: 400;
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 14px; color: var(--ink-soft); }

.eyebrow-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--gold-light);
  font-family: "Marcellus", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 8px 22px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 18px;
}
.eyebrow-ribbon::before, .eyebrow-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 14px;
  height: 100%;
  background: var(--navy);
}
.eyebrow-ribbon::before { left: -12px; clip-path: polygon(100% 0, 0 50%, 100% 100%); }
.eyebrow-ribbon::after { right: -12px; clip-path: polygon(0 0, 100% 50%, 0 100%); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: "Inter", sans-serif;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--gold);
  box-shadow: 0 10px 22px rgba(14, 26, 48, 0.25);
}
.btn-primary:hover { background: var(--navy-deep); }
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-whatsapp {
  background: #3f7d63;
  color: #fff;
  box-shadow: 0 10px 22px rgba(63, 125, 99, 0.3);
}
.btn-call {
  background: #fff;
  border-color: var(--green);
  color: var(--green-deep);
}
.btn-call:hover { background: var(--green); color: #fff; }
.btn-block { width: 100%; justify-content: center; }

/* Header CTA has a short-label fallback (see header.html) for narrow phones,
   where "Book Free Trial" wraps to 2 lines and overlaps the logo next to it.
   Full label shows by default; swapped for the short one below 480px. */
.btn-label-short { display: none; }

/* Header / Nav */
.site-header {
  position: relative;
  z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--gold);
}
.topbar {
  background: var(--navy-deep);
  color: var(--gold-light);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: #fff; }
.topbar-social { display: flex; align-items: center; gap: 14px; }
.topbar-social a { display: inline-flex; align-items: center; }
.topbar-social i { font-size: 1rem; }

/* On narrow phones, the contact-info span and topbar-social span were competing for
   the same row (.container is flex-wrap, but neither span itself could shrink below
   its content width), so the currency pill/WhatsApp link/icons got squeezed and
   visually clipped at the right edge. Stacking them into their own full-width rows
   below 480px, and letting topbar-social wrap internally, gives everything room. */
@media (max-width: 480px) {
  .topbar { font-size: 0.72rem; }
  .topbar .container { flex-direction: column; align-items: center; gap: 6px; }
  .topbar-social { flex-wrap: wrap; justify-content: center; gap: 8px 12px; }
}

/* Currency picker — deliberately low-key: shows only the visitor's detected/chosen
   currency, with the other options tucked behind a click instead of sitting on the
   page as 3 directly-comparable buttons. See js/main.js for why. */
.currency-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.curr-current {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  line-height: 1.4;
}
.curr-current:hover { color: #fff; }
.curr-caret { font-size: 0.65em; opacity: 0.75; }

.curr-menu {
  display: none;
  position: absolute;
  top: 100%;
  /* Centered under the button (not right: 0) so it doesn't hang off the left edge
     when the topbar switches to a centered, stacked layout on narrow phones. */
  left: 50%;
  transform: translateX(-50%);
  margin-top: 6px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 4px;
  min-width: 110px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  /* .topbar sits outside <header class="site-header"> (z-index: 100) as a sibling,
     so this needs to beat 100, not just be "high" in isolation — otherwise the
     header's stacking context paints over this dropdown even though it's visually
     below the topbar. */
  z-index: 200;
}
.curr-menu.open { display: block; }
.curr-option {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}
.curr-option:hover { background: rgba(255,255,255,0.12); color: #fff; }
.curr-option.is-current { display: none; }

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--navy);
}
.logo-mark {
  height: 42px; width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}
.nav-links a { padding-bottom: 4px; border-bottom: 2px solid transparent; }
.nav-links a.active,
.nav-links a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy);
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 18px 24px;
    gap: 16px;
    border-bottom: 3px solid var(--gold);
    display: none;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-actions .btn-outline { display: none; }
  .nav-actions .btn-call { display: none; }
  .nav-actions .btn-primary {
    padding: 9px 14px;
    font-size: 0.78rem;
    gap: 5px;
    border-radius: 6px;
    white-space: nowrap;
  }
  .nav-wrap { padding: 14px 16px; }
  .nav-actions { gap: 8px; }
}

@media (max-width: 480px) {
  /* Swap to the short "Free Trial" label so the button stays on one line
     instead of wrapping to 2 lines and overlapping the logo beside it. */
  .btn-label-full { display: none; }
  .btn-label-short { display: inline; }
  .logo { font-size: 1.2rem; gap: 8px; }
  .logo-mark { height: 32px; }
}

@media (max-width: 400px) {
  .nav-actions .btn-primary {
    padding: 8px 10px;
    font-size: 0.72rem;
  }
}

/* Hero */
.hero {
  padding: 60px 0 50px;
  background: var(--cream);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(201,151,63,0.08) 0, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(27,42,74,0.06) 0, transparent 45%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.badge-pill {
  display: inline-block;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.hero-cta-row .note { color: var(--ink-soft); font-size: 0.88rem; }

.hero-art {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center 15%;
}
@media (max-width: 860px) {
  .hero-photo { min-height: 320px; }
}

/* What families ask strip */
.ask-strip {
  background: var(--navy);
  color: var(--gold-light);
  padding: 40px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.ask-strip-inner { text-align: center; }
.ask-strip h3 {
  color: #fff;
  margin-bottom: 24px;
  font-size: 1.3rem;
}
.ask-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.ask-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,151,63,0.4);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}
.ask-icon {
  color: var(--gold);
  font-size: 1.2rem;
}
.ask-text {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
}
.ask-strip-note {
  margin-top: 24px;
  color: var(--gold-light);
}
.ask-strip-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.ask-strip-link:hover { color: #fff; }
@media (max-width: 860px) {
  .ask-strip-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ask-strip-grid { grid-template-columns: 1fr; }
}

/* Stat strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px;
}
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.stat-card strong { display: block; font-family: "Marcellus", serif; font-size: 1.7rem; color: var(--navy); }
.stat-card span { font-size: 0.82rem; color: var(--ink-soft); }

/* Sections */
.section { padding: 68px 0; }
.section-head { max-width: 640px; margin: 0 auto 42px; text-align: center; }
.section-alt { background: var(--cream-deep); }

/* Feature / trust grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } }
.why-grid { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.icon-badge {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(150deg, #24406e 0%, var(--navy) 45%, var(--navy-deep) 100%);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  border: 1px solid var(--gold);
  box-shadow:
    0 8px 16px rgba(14, 26, 48, 0.32),
    inset 0 1px 1px rgba(255,255,255,0.3),
    inset 0 -3px 4px rgba(0,0,0,0.35);
}
.icon-badge i { text-shadow: 0 1px 1px rgba(0,0,0,0.4); }

/* Course cards */
.course-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 860px) { .course-grid { grid-template-columns: 1fr; } }
.course-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.course-card .level-tag {
  align-self: flex-start;
  background: var(--gold-light);
  color: var(--navy-deep);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.course-card .price {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  color: var(--navy);
}
.course-card .teacher { font-size: 0.9rem; color: var(--gold); font-weight: 600; }
.payment-trust-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.payment-trust-note i { color: var(--green-deep); }

.savings-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 999px;
  margin-top: 8px;
}
.savings-detail {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 6px;
}
.course-card .actions { display: flex; gap: 10px; margin-top: auto; padding-top: 12px; flex-wrap: wrap; }

/* Course details accordion (reuses .faq-item JS toggle) */
.course-card .course-detail-toggle {
  border: none;
  border-top: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 0 0;
  margin: 4px 0 0;
  background: transparent;
}
.course-card .course-detail-toggle h4 {
  font-size: 0.92rem;
  color: var(--navy);
}
.course-card .course-detail-toggle.open .faq-answer { max-height: 700px; margin-top: 12px; }
.course-detail-toggle .faq-answer p { margin-bottom: 10px; font-size: 0.92rem; }
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.feature-list li i { color: var(--gold); margin-top: 3px; font-size: 0.8rem; }

.course-steps {
  list-style: none;
  counter-reset: course-step;
  margin: 0 0 4px;
  padding: 0;
}
.course-steps li {
  counter-increment: course-step;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.course-steps li::before {
  content: counter(course-step);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-points {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
}
.course-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.course-points li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* Teacher cards — arch frame */
.teacher-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.arch-frame {
  width: 104px; height: 120px;
  margin: 0 auto 18px;
  border-radius: 52px 52px 8px 8px;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: "Marcellus", serif;
  font-weight: 400; font-size: 1.9rem;
  border: 3px solid var(--gold);
  overflow: hidden;
}
.arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.teacher-card .role { color: var(--gold); font-weight: 700; font-size: 0.88rem; margin-bottom: 10px; letter-spacing: 0.02em; }
.placeholder-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #8a6d2f;
  background: var(--gold-light);
  border: 1px dashed var(--gold);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: left;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.avatar-circle {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: "Marcellus", serif; font-weight: 400;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
  cursor: pointer;
  background: #fff;
}
.faq-item h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.faq-item h4 span { color: var(--gold); font-size: 1.2rem; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-answer { max-height: 300px; margin-top: 12px; }

/* Trial request form */
.trial-form {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.trial-form label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin: 14px 0 6px;
  color: var(--navy);
}
.trial-form input,
.trial-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--cream);
}
.trial-form .hint { font-size: 0.8rem; color: var(--ink-soft); margin-top: 4px; }

.trial-phone-row { display: flex; gap: 8px; }
.trial-phone-row select { flex: 0 0 128px; width: 128px; padding-left: 8px; padding-right: 4px; }
.trial-phone-row input { flex: 1; }
@media (max-width: 480px) {
  .trial-phone-row { flex-wrap: wrap; }
  .trial-phone-row select { flex: 1 1 100%; width: 100%; }
}

/* Contact blocks */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* Two-tone bottom CTA (student / teacher style) */
.dual-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .dual-cta { grid-template-columns: 1fr; } }
.dual-cta .cta-block {
  border-radius: var(--radius);
  padding: 34px;
  color: #fff;
}
.dual-cta .cta-block.sage { background: var(--sage); }
.dual-cta .cta-block.rose { background: var(--rose); }
.dual-cta .cta-block h3 { color: #fff; text-transform: uppercase; letter-spacing: 0.05em; font-size: 1rem; font-family: "Inter", sans-serif; font-weight: 700; margin-bottom: 12px; }
.dual-cta .cta-block p { color: rgba(255,255,255,0.9); }
.dual-cta .cta-block .btn { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); color: #fff; }
.dual-cta .cta-block .btn:hover { background: rgba(255,255,255,0.28); }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #c7d0dc;
  padding: 48px 0 24px;
  margin-top: 40px;
  border-top: 4px solid var(--gold);
}
.site-footer a { color: #c7d0dc; }
.site-footer a:hover { color: var(--gold-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 28px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--gold-light); font-size: 1rem; font-family: "Marcellus", serif; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  font-size: 0.82rem;
  color: #8b98a8;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Floating WhatsApp + Call buttons */
.float-stack {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-whatsapp, .float-call {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  border: 2px solid var(--gold-light);
  transition: transform 0.15s ease;
}
.float-whatsapp:hover, .float-call:hover { transform: translateY(-2px); }
.float-whatsapp { background: #3f7d63; color: #fff; }
.float-call { background: #fff; color: var(--green-deep); }

/* Simple page banner for inner pages */
.page-banner {
  padding: 54px 0 34px;
  background: var(--cream-deep);
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
