/* Site-specific overrides on top of Bootstrap 5.3 RTL */

/* Brand colors */
:root {
  --brand: #c88a2e;
  --text: #717070;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.8;
  color: var(--text);
}
.container { max-width: 960px; }

/* Links */
a { color: var(--brand); }
a:hover { color: #a06e1a; }

/* Nav links */
.nav-link { color: #666; font-size: 14px; font-weight: 300; padding: 0; }
.nav-link:hover { color: var(--brand); }

/* Headings - consistent across all page types */
h1 { font-size: 2.25rem; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: .5rem; }
h2 { font-size: 1.5rem; font-weight: 400; color: var(--text); line-height: 1.3; margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.1rem; font-weight: 500; color: var(--text); margin-top: 1.75rem; margin-bottom: .625rem; }
/* Override global h2/h3 margin-top inside accordions (Bootstrap only resets margin-bottom) */
.accordion h2.accordion-header,
.accordion h3.accordion-header { margin: 0; font-size: inherit; }

/* Article body container */
.article-body { max-width: 720px; padding-top: 3rem; padding-bottom: 4rem; }

/* Hero image */
.container-hero { max-width: 980px; }

/* Callouts - Bootstrap alerts with near-side border accent */
.callout { border: none; border-inline-start: 3px solid; border-start-start-radius: 0; border-start-end-radius: .375rem; border-end-end-radius: .375rem; border-end-start-radius: 0; }
.callout p { margin-bottom: 0; }
.alert-success.callout { border-color: #25d366; background: #f0faf4; }
.alert-warning.callout { border-color: #e8a838; background: #fef8ee; }
.alert-danger.callout  { border-color: #d94f4f; background: #fdf0f0; }
.alert-info.callout    { border-color: #5b9bd5; background: #f0f5fa; }
.alert-light.callout { border-color: var(--brand); background: #fdf8f0; }

/* WhatsApp button */
.btn-wa { background: #25d366; color: #fff; border: none; }
.btn-wa:hover, .btn-wa:focus, .btn-wa:active { background: #1fb855; color: #fff; box-shadow: none; }

/* WhatsApp share float */
.wa-share {
  position: fixed; bottom: 1.5rem; left: 1.5rem; height: 44px; padding: 0 1rem 0 .75rem;
  gap: .375rem; background: #25d366; color: #fff; border-radius: 22px;
  display: flex; align-items: center; box-shadow: 0 2px 8px rgba(0,0,0,.2);
  z-index: 900; text-decoration: none; font-size: .875rem; font-weight: 500;
}
.wa-share:hover { background: #1fb855; color: #fff; }
.wa-share svg { width: 22px; height: 22px; flex-shrink: 0; }

/* Bio box */
.bio-box { background: #f9f7f4; }

/* Service icons */
.service-icon { width: 52px; height: 52px; object-fit: contain; opacity: .65; }

/* Card hover */
.card { border: none; transition: opacity .2s; }
.card:hover { opacity: .9; }
.card:hover .card-title { color: var(--brand); }

/* Swiper overrides */
.swiper-button-next, .swiper-button-prev { --swiper-navigation-color: #fff; }
.swiper-pagination-bullet-active { background: var(--brand); }
.swiper-slide { opacity: 0 !important; transition: opacity .8s ease; }
.swiper-slide-active { opacity: 1 !important; }

/* Mobile nav */
.navbar-collapse .nav-link { padding: .75rem 0; font-size: 1rem; }
.navbar-collapse .navbar-nav { padding-top: .5rem; }

/* Responsive */
@media (max-width: 576px) {
  h1 { font-size: 1.5rem; }
}
