/* ============================================
   Hela Isi — index.css  (public home page)
   ============================================ */

/* ── NAV ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(30, 58, 30, .96); backdrop-filter: blur(8px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; border-bottom: 1px solid rgba(184,147,42,.25);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-emblem {
  width: 38px; height: 38px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.nav-brand  { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: white; font-weight: 600; }
.nav-sub    { font-size: 10px; color: rgba(255,255,255,.4); letter-spacing: .08em; text-transform: uppercase; }
.nav-links  { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding-top: 64px;
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-mid) 55%, #1a3d1a 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; padding: 0 5%; max-width: 660px; }
.hero-tag { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.hero-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 6vw, 60px);
  font-weight: 600; color: white; line-height: 1.1; margin-bottom: 12px;
}
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-sinhala { font-size: 15px; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badge {
  margin-top: 48px; display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(184,147,42,.3);
  padding: 10px 16px; border-radius: 8px;
}
.hero-badge-icon { font-size: 20px; }
.hero-badge-text { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.4; }
.hero-badge-text strong { color: var(--gold-light); }
.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
  display: flex; align-items: center; justify-content: center;
}
.hero-circle {
  width: 480px; height: 480px; border-radius: 50%;
  background: rgba(255,255,255,.03); border: 1px solid rgba(184,147,42,.15);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-circle-inner {
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(184,147,42,.06); border: 1px solid rgba(184,147,42,.2);
  display: flex; align-items: center; justify-content: center; font-size: 100px;
}
.hero-float {
  position: absolute; background: white; border-radius: 12px;
  padding: 10px 14px; box-shadow: 0 8px 24px rgba(0,0,0,.2);
  display: flex; align-items: center; gap: 10px;
}
.hero-float-1 { top: 20%; left: -20px; }
.hero-float-2 { bottom: 25%; right: -10px; }
.hero-float .f-icon { font-size: 22px; }
.hero-float .f-label { font-size: 11px; font-weight: 700; color: var(--forest); }
.hero-float .f-sub   { font-size: 10px; color: var(--muted); }

/* ── SECTION COMMON ── */
section { padding: 80px 5%; }
.section-tag { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 42px); font-weight: 600; color: var(--forest); line-height: 1.15; }
.section-sub { font-size: 15px; color: var(--text2); margin-top: 12px; max-width: 560px; line-height: 1.7; }

/* ── SERVICES ── */
.services-section { background: white; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 48px; }
.service-card {
  padding: 28px 24px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--parchment);
  transition: all .2s; cursor: default;
}
.service-card:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(184,147,42,.12); transform: translateY(-2px); }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; color: var(--gold); font-weight: 600; line-height: 1; margin-bottom: 12px; }
.service-icon { font-size: 28px; margin-bottom: 10px; }
.service-name { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--forest); margin-bottom: 6px; }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--text); font-weight: 600; margin-bottom: 10px; }
.service-desc { font-size: 13px; color: var(--text2); line-height: 1.65; }

/* ── ABOUT/STORY ── */
.story-section { background: var(--parchment); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 48px; }
.story-quote {
  border-left: 3px solid var(--gold); padding-left: 20px;
  font-family: 'Cormorant Garamond', serif; font-size: 19px;
  font-style: italic; color: var(--forest); line-height: 1.55; margin: 24px 0;
}
.story-quote cite { display: block; font-style: normal; font-size: 12px; font-weight: 600; color: var(--muted); margin-top: 8px; letter-spacing: .06em; text-transform: uppercase; }
.story-visual { background: var(--forest); border-radius: 16px; padding: 36px; color: white; }
.story-promise { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; margin-bottom: 20px; }
.promise-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.promise-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.promise-title { font-size: 12px; font-weight: 700; color: var(--gold-light); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.promise-text  { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; }

/* ── WHY US ── */
.why-section { background: white; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 48px; }
.why-card { padding: 24px 20px; text-align: center; border-radius: 12px; border: 1px solid var(--border); background: var(--cream); }
.why-num { font-family: 'Cormorant Garamond', serif; font-size: 42px; color: var(--gold); font-weight: 600; line-height: 1; margin-bottom: 8px; }
.why-label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--forest); margin-bottom: 6px; }
.why-desc { font-size: 12.5px; color: var(--text2); line-height: 1.55; }

/* ── CONTACT / FOOTER ── */
.contact-section { background: var(--forest); color: white; padding: 80px 5% 40px; }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; margin-bottom: 60px; }
.contact-title { font-family: 'Cormorant Garamond', serif; font-size: 36px; color: white; margin-bottom: 16px; }
.contact-desc  { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; margin-bottom: 28px; }
.contact-info  { display: flex; flex-direction: column; gap: 12px; }
.contact-item  { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.75); }
.contact-item a:hover { color: var(--gold-light); }
.hours-box { background: rgba(255,255,255,.06); border: 1px solid rgba(184,147,42,.3); border-radius: 12px; padding: 24px; }
.hours-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; margin-bottom: 14px; color: var(--gold-light); }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 8px; }
.hours-row strong { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.35); transition: color .15s; }
.footer-links a:hover { color: var(--gold-light); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 768px) {
  .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .nav-links { display: none; }
}
