/* ═══════════════════════════════════════
   JAGATHI FOUNDATION – Reusable Components
   ═══════════════════════════════════════ */

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s;
  letter-spacing: 0.02em;
}

.btn-outline {
  border: 1.5px solid var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 160, 32, 0.4);
}

.btn-lg    { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }
.btn-white { background: var(--white); color: var(--teal); }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

/* ── SECTION LABELS ── */
.section-tag {
  display: inline-block;
  background: rgba(13, 79, 92, 0.08);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}

/* ── HERO IMAGE COLUMN ── */
/* The hero image is now handled as a full-height column.
   .hero-image-col and .hero-main-img are styled in layout.css.
   The wrapper/badge below are kept for any legacy use. */

.hero-image-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Badge logo in top-right corner of image */
.hero-badge-img {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  background: #fff;
  object-fit: contain;
  padding: 4px;
  transform: none;
  z-index: 5;
}

@media (max-width: 900px) {
  .hero-badge-img {
    width: 70px;
    height: 70px;
    top: 10px;
    right: 10px;
    border-width: 3px;
  }
}

