/* ─── Content Pages Shared Stylesheet ───────────────────────────
   Generated by generate.py — do not edit output directly.
   Source: generator/templates/content.css
   ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --blue: #4a1a6b;
  --blue-dark: #350f52;
  --blue-light: #f0e8f8;
  --footer-bg: #111827;
  --terra: #c8a43c;
  --terra-dark: #9e7f2a;
  --navy: #27063c;
  --off-white: #f5f7fa;
  --white: #fefefe;
  --text-muted: #5a6a85;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 28px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --deep: #140321;
}

h1, h2 { font-family: 'Roboto Slab', Georgia, serif; line-height: 1.18; font-weight: 400; }
h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; line-height: 1.3; }
h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; line-height: 1.35; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section-pad { padding: clamp(56px, 8vw, 96px) 0; }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem;
  font-weight: 600; letter-spacing: 0.02em; border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ─── Section Labels ─────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 14px;
}
.section-label::before {
  content: ''; display: inline-block; width: 32px; height: 3px;
  background: var(--terra); border-radius: 2px;
}

/* ─── NAV ─────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(254,254,254,0.97); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.nav-logo {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.35rem; font-weight: 700; line-height: 1; flex-shrink: 0;
}
.nav-logo span:first-child { color: var(--blue); }
.nav-logo span:last-child { color: var(--terra); }

/* ─── Nav Brand (header logo + project name) ─────────────────── */
.nav-brand {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  flex-shrink: 1; min-width: 0; text-decoration: none;
}
.nav-brand-img { height: 38px; width: auto; display: block; max-width: min(160px, calc(100vw - 80px)); }
.nav-brand-name {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--terra); line-height: 1;
}

/* ─── Developer Logo Badge ───────────────────────────────────── */
.dev-logo-badge {
  display: inline-flex; background: white;
  border-radius: var(--radius-md); padding: 10px 18px;
  margin-bottom: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.dev-logo-img { height: 60px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; font-size: 0.87rem; font-weight: 500; color: var(--navy);
  border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-light); }
.nav-cta { margin-left: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ─── Mobile Menu ─────────────────────────────────────────────── */
.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 16px 20px 24px;
  background: var(--white); border-bottom: 1px solid var(--border);
  position: fixed; top: 68px; left: 0; right: 0; z-index: 899;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-link { padding: 12px 0; font-size: 0.97rem; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--navy); }
.mobile-link:last-of-type { border-bottom: none; }

/* ─── Page Hero Banner ───────────────────────────────────────── */
.page-hero {
  padding-top: 68px;
  background: linear-gradient(135deg, var(--deep) 0%, #27063c 60%, #27063c 100%);
  color: white;
}
.page-hero-inner { padding: clamp(48px, 7vw, 80px) 0 clamp(40px, 6vw, 72px); }
.page-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; flex-wrap: wrap; }
.page-breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.page-breadcrumb a:hover { color: white; }
.page-breadcrumb span { color: rgba(255,255,255,0.35); }
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-hero .hero-desc { font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(255,255,255,0.8); max-width: 700px; line-height: 1.65; }
.page-hero-meta { display: flex; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.hero-meta-item svg { width: 16px; height: 16px; fill: var(--terra); flex-shrink: 0; }

/* ─── Content Layout ─────────────────────────────────────────── */
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: clamp(32px, 5vw, 64px); align-items: start; }
.article-body { min-width: 0; }
.article-body h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--navy); margin: 40px 0 14px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.15rem; color: var(--navy); margin: 28px 0 10px; }
.article-body p { color: var(--navy); margin-bottom: 16px; font-size: 1rem; }
.article-body ul, .article-body ol { margin: 0 0 16px 24px; }
.article-body li { margin-bottom: 8px; color: var(--navy); font-size: 1rem; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body strong { color: var(--navy); font-weight: 600; }
.article-body a { color: var(--blue); text-decoration: underline; text-decoration-color: transparent; transition: var(--transition); }
.article-body a:hover { text-decoration-color: var(--blue); }

/* ─── Stat Callout Boxes ─────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin: 28px 0; }
.stat-box { background: var(--blue-light); border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius-md); padding: 20px 16px; text-align: center; }
.stat-box .stat-num { font-family: 'Roboto Slab', serif; font-size: 1.8rem; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.stat-box .stat-label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── Info Cards ─────────────────────────────────────────────── */
.info-card { background: var(--off-white); border-radius: var(--radius-md); border: 1px solid var(--border); padding: 24px; margin: 24px 0; }
.info-card h4 { color: var(--blue); margin-bottom: 12px; font-size: 1rem; }
.info-card ul { margin-left: 16px; }
.info-card li { list-style: disc; color: var(--navy); font-size: 0.92rem; margin-bottom: 6px; }

/* ─── Highlight Strip ────────────────────────────────────────── */
.highlight-strip { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); border-radius: var(--radius-lg); padding: 32px; margin: 32px 0; color: white; }
.highlight-strip h3 { color: white; margin-bottom: 10px; }
.highlight-strip p { color: rgba(255,255,255,0.85); margin-bottom: 0; }

/* ─── Sidebar ────────────────────────────────────────────────── */
.sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.sidebar-card.primary { background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 100%); color: white; border-color: transparent; }
.sidebar-card.primary h3 { color: white; margin-bottom: 8px; font-size: 1.2rem; }
.sidebar-card.primary p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 20px; }
.sidebar-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 16px; }
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-stats { display: flex; flex-direction: column; gap: 12px; }
.sidebar-stat { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.sidebar-stat:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-stat .label { color: var(--text-muted); }
.sidebar-stat .value { font-weight: 700; color: var(--navy); }
.related-links { display: flex; flex-direction: column; gap: 8px; }
.related-link { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: 0.88rem; font-weight: 500; color: var(--navy); transition: var(--transition); }
.related-link:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.related-link svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* ─── CTA Section ────────────────────────────────────────────── */
.cta-section { background: linear-gradient(105deg, var(--deep) 0%, #27063c 100%); color: white; padding: clamp(56px, 8vw, 80px) 0; text-align: center; }
.cta-section h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: white; color: var(--blue); border-color: white; font-weight: 700; }
.btn-white:hover { background: var(--blue-light); border-color: var(--blue-light); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.5); color: white; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer { background: var(--footer-bg); color: rgba(255,255,255,0.65); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; padding: clamp(40px, 6vw, 64px) 0 32px; flex-wrap: wrap; }
.footer-brand p { font-size: 0.87rem; line-height: 1.65; max-width: 300px; }
.footer-nav { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-nav-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-nav-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.65); padding: 4px 0; transition: color var(--transition); margin-bottom: 2px; }
.footer-nav-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.footer-rera { font-size: 0.78rem; line-height: 1.65; max-width: 700px; color: rgba(255,255,255,0.65); }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.45); white-space: nowrap; }
footer address { font-style: normal; margin-top: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
footer address a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
footer address a:hover { color: white; }
.footer-brand .nav-logo { margin-bottom: 10px; }

/* ─── Table ──────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.92rem; }
.data-table th { background: var(--navy); color: white; padding: 12px 16px; text-align: left; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; }
.data-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--navy); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--off-white); }
.data-table .highlight-col { font-weight: 700; color: var(--navy); }

/* ─── Tags / Badges ──────────────────────────────────────────── */
.tag { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; }
.tag-green { background: var(--blue-light); color: var(--blue); }
.tag-gold { background: #fef3c7; color: #92400e; }

/* ─── Amenity Grid ───────────────────────────────────────────── */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin: 24px 0; }
.amenity-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); transition: var(--transition); }
.amenity-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.amenity-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.3rem; }
.amenity-item h4 { font-size: 0.92rem; color: var(--navy); margin-bottom: 4px; }
.amenity-item p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ─── Timeline ───────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; margin: 24px 0; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before { content: ''; position: absolute; left: -28px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); border: 2px solid white; box-shadow: 0 0 0 2px var(--blue); }
.timeline-item h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.timeline-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.timeline-year { font-size: 0.78rem; font-weight: 700; color: var(--terra); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-top { flex-direction: column; }
  .footer-nav { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .data-table { font-size: 0.82rem; }
  .data-table th, .data-table td { padding: 10px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
button:focus-visible, a:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
