@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --saffron: #F58800;
  --saffron-dark: #d67400;
  --maroon: #051821;
  --gold: #F58800;
  --cream: #ffffff;
  --cream-2: #F5F5F5;
  --rose: #f8f9fa;
  --ink: #051821;
  --muted: #666666;
  --line: #D9D9D9;
  --yellow-footer: #051821;
  --brown-bar: #051821;
}

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

body {
  font-family: 'Barlow', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
}

h1,h2,h3,h4,h5 { font-family: 'Barlow Condensed', sans-serif; letter-spacing: .3px; }

a { color: var(--maroon); text-decoration: none; }
a:hover { color: var(--saffron-dark); }

img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Top bar */
.topbar {
  background: var(--brown-bar);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.topbar a { color: var(--saffron); }
.topbar a:hover { color: #fff; }
.topbar .social a { margin-left: 10px; }

/* Header */
.header {
  background: #ffffff;
  border-bottom: 3px solid var(--saffron);
  padding: 0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.header .container { display: flex; align-items: stretch; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 14px; padding: 10px 0; }
.brand-mark {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--saffron);
  display: grid; place-items: center; color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800;
  box-shadow: 0 2px 8px rgba(245,136,0,.35);
  flex-shrink: 0;
}
.brand-text h1 {
  font-size: 21px; color: var(--ink); font-weight: 800; letter-spacing: .4px;
}
.brand-text small { color: var(--muted); font-size: 12px; font-style: italic; }

/* Nav */
nav { display: flex; align-items: stretch; }
nav ul {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0; align-items: stretch;
}
nav ul li { display: flex; align-items: stretch; }
nav a {
  display: flex; align-items: center; padding: 0 15px; font-size: 14px;
  color: var(--ink); font-weight: 600; letter-spacing: .3px;
  transition: background .2s, color .2s; border-left: 1px solid rgba(0,0,0,.06);
}
nav a:hover { background: var(--saffron); color: #fff; }
nav a.active { background: var(--saffron); color: #fff; }

.menu-toggle { display: none; background: none; border: 0; font-size: 28px; color: var(--ink); cursor: pointer; padding: 0 12px; }

/* Hero / Carousel */
.hero {
  position: relative; height: 520px; overflow: hidden;
  background: #000;
}
.slides { position: relative; height: 100%; }
.slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s;
  background-size: cover; background-position: center;
  display: grid; place-items: center;
}
.slide.active { opacity: 1; }
.slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(5,24,33,.5) 100%);
}
.slide-content {
  position: relative; z-index: 1; text-align: center; color: #fff; padding: 0 20px; max-width: 900px;
}
.slide-content h2 {
  font-size: 48px; margin-bottom: 16px; text-shadow: 2px 2px 8px rgba(0,0,0,.6);
  font-family: 'Barlow Condensed', sans-serif;
}
.slide-content p { font-size: 20px; margin-bottom: 24px; text-shadow: 1px 1px 4px rgba(0,0,0,.6); }
.btn {
  display: inline-block; padding: 11px 30px; background: var(--saffron);
  color: #fff; border-radius: 3px; font-weight: 700; letter-spacing: .6px;
  border: 2px solid var(--saffron-dark); transition: all .2s;
  font-family: 'Barlow Condensed', sans-serif; font-size: 15px;
  box-shadow: 0 2px 6px rgba(200,134,14,.3);
}
.btn:hover { background: var(--saffron-dark); color: #fff; border-color: var(--saffron-dark); }
.btn-outline { background: transparent; border-color: #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--maroon); }

.slide-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.2); border: 0; color: #fff;
  width: 44px; height: 44px; border-radius: 50%; font-size: 24px; cursor: pointer;
  z-index: 2; transition: background .2s;
}
.slide-nav:hover { background: rgba(255,255,255,.4); }
.slide-nav.prev { left: 20px; }
.slide-nav.next { right: 20px; }

.dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; border: 0; }
.dot.active { background: var(--saffron); }

/* Section */
section { padding: 70px 0; }
.section-title {
  text-align: center; margin-bottom: 50px;
}
.section-title h2 {
  font-size: 36px; color: var(--maroon); margin-bottom: 12px;
  position: relative; display: inline-block; padding: 0 40px;
}
.section-title h2::before, .section-title h2::after {
  content: '🪷'; color: var(--saffron); position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 18px;
}
.section-title h2::before { left: 0; }
.section-title h2::after { right: 0; }
.section-title p { color: var(--muted); font-style: italic; }

/* Ornamental horizontal rule */
.section-title::after {
  content: ''; display: block; width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Intro block */
.intro { background: #fff; }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: center;
}
.intro-grid img {
  border-radius: 8px; box-shadow: 0 8px 30px rgba(5,24,33,.2);
  border: 4px solid #fff; outline: 2px solid var(--gold);
}
.intro h3 { color: var(--maroon); font-size: 28px; margin-bottom: 16px; }
.intro p { margin-bottom: 14px; color: var(--ink); }

/* Offerings cards */
.offerings { background: var(--cream); }
.cards-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.card {
  background: #fff; padding: 30px 24px; text-align: center; border-radius: 8px;
  border-top: 4px solid var(--saffron); box-shadow: 0 4px 14px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 10px 24px rgba(5,24,33,.15); }
.card-icon {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  display: grid; place-items: center; color: #fff; font-size: 32px;
}
.card h4 { color: var(--maroon); margin-bottom: 10px; font-size: 20px; }
.card p { color: var(--muted); font-size: 14px; }

/* Roles section */
.roles { background: #fff; }
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.role-card {
  padding: 36px 28px; background: linear-gradient(180deg, #fff7e6 0%, #fff 100%);
  border: 1px solid var(--line); border-radius: 8px; text-align: center;
}
.role-card .num {
  font-size: 48px; color: var(--saffron); font-weight: bold; line-height: 1;
  font-family: 'Barlow Condensed', sans-serif;
}
.role-card h4 { color: var(--maroon); margin: 14px 0; font-size: 22px; }
.role-card p { color: var(--muted); }

/* Gallery */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
}
.gallery-grid a {
  display: block; overflow: hidden; border-radius: 6px; aspect-ratio: 1; position: relative;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-grid a:hover img { transform: scale(1.1); }

/* Events */
.events { background: #fff; }
.event-list { max-width: 800px; margin: 0 auto; }
.event {
  display: grid; grid-template-columns: 90px 1fr auto; gap: 20px; align-items: center;
  padding: 20px; border-bottom: 1px solid var(--line);
}
.event-date {
  background: var(--maroon); color: #fff; padding: 10px; text-align: center;
  border-radius: 6px;
}
.event-date .day { font-size: 24px; font-weight: bold; line-height: 1; }
.event-date .month { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.event h4 { color: var(--maroon); margin-bottom: 4px; }
.event p { color: var(--muted); font-size: 14px; }

/* Blog */
.blog { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.blog-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,.06); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-body { padding: 22px; }
.blog-date { color: var(--saffron-dark); font-size: 13px; margin-bottom: 8px; font-weight: 600; }
.blog-card h4 { color: var(--maroon); margin-bottom: 10px; }
.blog-card p { color: var(--muted); font-size: 14px; margin-bottom: 12px; }

/* CTA banner */
.cta {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 50%, var(--maroon) 100%);
  color: #fff; text-align: center;
}
.cta h2 { font-size: 36px; margin-bottom: 14px; }
.cta p { font-size: 18px; margin-bottom: 24px; opacity: .95; }

/* Footer */
footer {
  background: var(--yellow-footer);
  color: rgba(255,255,255,.8); padding: 56px 0 0; border-top: 4px solid var(--saffron);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-col h4 {
  color: #fff; margin-bottom: 18px; font-size: 18px;
  padding-bottom: 10px; border-bottom: 2px solid var(--saffron);
}
.footer-col p, .footer-col li { font-size: 14px; margin-bottom: 8px; color: rgba(255,255,255,.72); }
.footer-col ul { list-style: none; }
.footer-col a { color: rgba(255,255,255,.8); }
.footer-col a:hover { color: var(--saffron); text-decoration: underline; }
.social-icons { display: flex; gap: 10px; margin-top: 14px; }
.social-icons a {
  width: 36px; height: 36px; border-radius: 50%; background: var(--saffron);
  display: grid; place-items: center; color: #fff; font-size: 14px;
}
.social-icons a:hover { background: var(--saffron-dark); color: #fff; }
.copyright {
  margin-top: 50px; padding: 18px 0;
  background: rgba(0,0,0,.3);
  text-align: center; font-size: 13px; color: rgba(255,255,255,.65);
}

/* Page banner (inner pages) */
.page-banner {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 60%, var(--maroon) 100%);
  color: #fff; padding: 60px 0; text-align: center;
  text-shadow: 0 1px 5px rgba(60,20,0,.3);
  border-bottom: 4px solid var(--saffron-dark);
}
.page-banner h1 { font-size: 40px; margin-bottom: 10px; letter-spacing: .5px; }
.breadcrumb { font-size: 14px; opacity: .9; }
.breadcrumb a { color: #fff7e6; }

/* Content article */
.article { background: #fff; }
.article-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.article-main h2 { color: var(--maroon); margin: 24px 0 12px; font-size: 26px; }
.article-main h3 { color: var(--saffron-dark); margin: 20px 0 10px; font-size: 20px; }
.article-main p { margin-bottom: 14px; }
.article-main ul { margin: 0 0 16px 22px; }
.article-main li { margin-bottom: 6px; }
.article-main .lead {
  font-size: 18px; font-style: italic; color: var(--maroon);
  padding: 16px 22px; border-left: 4px solid var(--saffron);
  background: var(--cream); margin-bottom: 24px;
}
.sidebar { }
.widget {
  background: var(--cream); padding: 22px; border-radius: 8px; margin-bottom: 24px;
  border: 1px solid var(--line);
}
.widget h4 {
  color: var(--maroon); margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--saffron);
}
.widget ul { list-style: none; }
.widget li { padding: 8px 0; border-bottom: 1px dashed var(--line); }
.widget li:last-child { border: 0; }

/* Video grid */
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.video-card {
  background: #fff; border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.07);
}
.video-frame { position: relative; aspect-ratio: 16/9; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card .vc-body { padding: 16px 18px; }
.video-card h4 { color: var(--maroon); font-size: 16px; }
.channel-embed { aspect-ratio: 16/9; max-width: 900px; margin: 0 auto 10px; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 30px rgba(5,24,33,.18); }
.channel-embed iframe { width: 100%; height: 100%; border: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info .info-item {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px;
}
.contact-info .ic {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 46px;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  display: grid; place-items: center; color: #fff; font-size: 20px;
}
.contact-info h4 { color: var(--maroon); margin-bottom: 2px; }
.contact-info p { color: var(--muted); margin: 0; }
.contact-form { background: var(--cream); padding: 30px; border-radius: 8px; border: 1px solid var(--line); }
.contact-form label { display: block; font-weight: 600; color: var(--maroon); margin: 0 0 6px; font-size: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 11px 14px; margin-bottom: 18px; border: 1px solid var(--line);
  border-radius: 6px; font-family: inherit; font-size: 15px; background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--saffron); border-color: var(--saffron); }
.map-wrap { margin-top: 40px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }
.form-note { font-size: 13px; color: var(--muted); margin-top: -6px; }

/* ── Nav Dropdown ── */
nav ul li.has-sub { position: relative; }
.sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--maroon); min-width: 190px; z-index: 200;
  box-shadow: 0 6px 20px rgba(0,0,0,.3); border-top: 3px solid var(--saffron);
  flex-direction: column !important; list-style: none;
}
.sub-menu li { display: block !important; border-left: 0 !important; border-bottom: 1px solid rgba(255,255,255,.1) !important; }
.sub-menu li:last-child { border-bottom: 0 !important; }
/* White text so items are visible on maroon background */
.sub-menu a { padding: 10px 18px !important; font-size: 13px !important; border-left: 0 !important; white-space: nowrap; display: block; color: rgba(255,255,255,.9) !important; }
.sub-menu a:hover { background: var(--saffron-dark) !important; color: #fff !important; }
/* Desktop: open on hover */
nav ul li.has-sub:hover > .sub-menu { display: flex; }
.has-sub.open .sub-menu { display: flex; }

/* Sub-menu toggle +/- button — hidden on desktop, shown only in mobile menu */
.sub-toggle { display: none; }
.has-sub.open > .sub-toggle { background: var(--saffron); color: #fff; }

/* ── Stats Bar ── */
.stats-bar { background: var(--maroon); color: #fff; padding: 44px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-item { padding: 8px 10px; }
.stat-num {
  font-size: 44px; font-weight: 900; color: var(--saffron);
  font-family: 'Barlow Condensed', sans-serif; line-height: 1;
}
.stat-label {
  font-size: 13px; color: rgba(255,255,255,.8); margin-top: 7px;
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600;
}

/* ── Testimonials ── */
.testimonials { background: var(--cream-2); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.testi-card {
  background: #fff; padding: 36px 28px 28px; border-radius: 8px;
  border: 1px solid var(--line); box-shadow: 0 4px 14px rgba(0,0,0,.06); position: relative;
}
.testi-card::before {
  content: '\201C'; font-size: 80px; color: var(--saffron); opacity: .25;
  position: absolute; top: 4px; left: 16px; font-family: 'Barlow Condensed', sans-serif; line-height: 1;
}
.testi-text { font-style: italic; color: var(--ink); margin-bottom: 20px; line-height: 1.8; font-size: 15px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron), var(--maroon));
  display: grid; place-items: center; color: #fff; font-size: 18px; flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--maroon); font-size: 14px; }
.testi-role { color: var(--muted); font-size: 13px; }
.testi-avatar-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-yt-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; color: #fff; background: #FF0000;
  padding: 2px 8px; border-radius: 3px; font-weight: 700;
  letter-spacing: .4px; text-decoration: none; margin-top: 4px;
}
.testi-yt-badge:hover { background: #cc0000; color: #fff; }
.testi-likes { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ── About Stats Row ── */
.about-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  background: var(--cream); border: 1px solid var(--line); border-radius: 8px;
  margin: 32px 0 24px; overflow: hidden;
}
.about-stat { padding: 24px 16px; text-align: center; border-right: 1px solid var(--line); }
.about-stat:last-child { border-right: 0; }
.about-stat .num { font-size: 30px; font-weight: 900; color: var(--saffron-dark); font-family: 'Barlow Condensed', sans-serif; line-height: 1; }
.about-stat .lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Responsive */
@media (max-width: 900px) {
  nav > ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--ink); flex-direction: column; padding: 6px 0; box-shadow: 0 4px 10px rgba(0,0,0,.3); }
  nav.open > ul { display: flex; }
  nav .sub-menu { display: none !important; }
  nav .has-sub.open .sub-menu { display: flex !important; }
  nav ul li { border-left: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  /* has-sub row: link takes full width, + button sits at far right, vertically centred */
  nav ul li.has-sub { display: flex; align-items: stretch; flex-wrap: wrap; }
  nav ul li.has-sub > a { flex: 1; }
  /* Re-enable sub-toggle in mobile */
  .sub-toggle { display: flex; align-items: center; justify-content: center; width: 48px; height: auto; flex-shrink: 0; margin: 0; border-radius: 0; border-left: 1px solid rgba(255,255,255,.15); background: none; border-top: none; border-right: none; border-bottom: none; color: rgba(255,255,255,.9); cursor: pointer; font-size: 18px; font-weight: 700; padding: 0; }
  nav ul li.has-sub > .sub-menu { flex: 0 0 100%; }
  nav a { padding: 12px 20px; border-left: 0; color: rgba(255,255,255,.9); }
  nav a:hover { background: var(--saffron); color: #fff; }
  nav a.active { background: var(--saffron); color: #fff; }
  /* Override hover-open on mobile — only click/JS controls opening */
  nav ul li.has-sub:hover > .sub-menu { display: none; }
  nav .has-sub.open > .sub-menu { display: flex !important; }
  .sub-toggle:hover { background: rgba(255,255,255,.15); color: #fff; }
  .has-sub.open > .sub-toggle { background: var(--saffron); color: #fff; }
  .menu-toggle { display: block; color: var(--ink); }
  .slide-content h2 { font-size: 32px; }
  .slide-content p { font-size: 16px; }
  .intro-grid, .article-grid { grid-template-columns: 1fr; }
  .cards-4, .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .cards-3, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { height: 400px; }
  .video-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .has-sub.open .sub-menu { display: flex; position: static; box-shadow: none; border-top: none; background: rgba(0,0,0,.18); min-width: auto; }
  .sub-menu a { padding-left: 36px !important; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
  .about-stat:nth-child(2) { border-right: 0; }
}
