/* ── Global ───────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}
:target {
  scroll-margin-top: 72px;
}
body {
  font-family: 'Roboto', sans-serif;
  color: #1a1a2e;
  padding-top: 70px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', sans-serif;
  font-weight: 700;
}

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar-red {
  background: #1e0e40;
  border-bottom: 3px solid #e05a00;
}
.navbar-brand img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}
.navbar-brand span {
  font-family: 'Playfair Display', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #f5a800 !important;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(58,26,110,0.90) 0%, rgba(74,42,158,0.85) 35%, rgba(192,57,43,0.82) 65%, rgba(224,90,0,0.85) 82%, rgba(245,168,0,0.88) 100%),
    url('../images/hero background.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-logo-wrapper {
  display: inline-block;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  margin-bottom: 1.75rem;
}
.hero-logo {
  max-height: 180px;
  max-width: 260px;
  width: auto;
  display: block;
}
.hero-tagline {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  font-style: italic;
}

/* ── Section titles ──────────────────────────────────────────── */
.section-title {
  font-family: 'Playfair Display', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.6rem;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #4a2a9e, #e05a00);
  border-radius: 2px;
}
.section-title.text-start::after {
  left: 0;
  transform: none;
}

/* ── Services ────────────────────────────────────────────────── */
.services-section {
  background:
    linear-gradient(rgba(245,248,250,0.92), rgba(245,248,250,0.92)),
    url('../images/image1.png') center/contain no-repeat;
}
.service-card {
  border: none;
  border-top: 4px solid #e05a00;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(74,42,158,0.15) !important;
}
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #4a2a9e, #e05a00);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon i {
  font-size: 1.6rem;
  color: #fff;
}

/* ── About ───────────────────────────────────────────────────── */
.about-highlight-box {
  background: linear-gradient(135deg, #3a1a6e 0%, #4a2a9e 50%, #e05a00 100%);
  box-shadow: 0 8px 40px rgba(58,26,110,0.25);
  border-radius: 1rem;
}
.about-highlight-box .highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.about-highlight-box .highlight-item:last-child {
  margin-bottom: 0;
}
.about-highlight-box i {
  font-size: 1.5rem;
  color: #f5a800;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-highlight-box h5 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.about-highlight-box p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 0;
}

/* ── Contact ─────────────────────────────────────────────────── */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.contact-info-item i {
  font-size: 1.4rem;
  color: #e05a00;
  width: 28px;
  flex-shrink: 0;
}
.contact-info-item a {
  color: #1a1a2e;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}
.contact-info-item a:hover {
  color: #e05a00;
}
.qr-card-img {
  max-width: 220px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-red-gradient {
  background: linear-gradient(90deg, #4a2a9e, #e05a00);
  border: none;
  color: #fff;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-red-gradient:hover {
  opacity: 0.9;
  color: #fff;
  transform: translateY(-2px);
}
.btn-red-gradient:focus {
  box-shadow: 0 0 0 0.25rem rgba(74,42,158,0.4);
  color: #fff;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: #1e0e40;
}
.footer .text-muted,
.footer p.text-muted {
  color: rgba(255,255,255,0.65) !important;
}
.footer-logo {
  max-height: 80px;
  width: auto;
  opacity: 0.85;
  border-radius: 4px;
}
.footer-heading {
  color: #f5a800;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.4rem;
}
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: #f5a800;
}
.footer-contact a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f5a800;
}
.footer-divider {
  border-color: rgba(255,255,255,0.1);
}
