@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');
:root{--bg:#0a0a0a;--muted:#9ca3af;--primary:#5b21b6;--saffron:#f39c12;--green:#2ecc71;--gold:#f1c40f;}
*{box-sizing:border-box}
body{font-family:'Poppins',system-ui,Segoe UI,Roboto,'Helvetica Neue',Arial,sans-serif;background:var(--bg);color:#e6e6e6;margin:0;line-height:1.5}
.container{max-width:1100px;margin:0 auto;padding:0 1rem}
.header{height:76px;display:flex;align-items:center;justify-content:space-between}
.logo-row{display:flex;align-items:center;gap:0.75rem}
.logo-title{font-weight:800;font-size:1.05rem;color:#fff;letter-spacing:0.2px}
.nav a{color:#cbd5e1;text-decoration:none;margin-left:1rem;padding:.5rem .6rem;border-radius:8px;display:inline-block}
.nav a:hover{color:var(--primary);background:rgba(91,33,182,0.06)}
.btn-primary{background:var(--primary);color:white;padding:.55rem 1rem;border-radius:999px;text-decoration:none;display:inline-flex;align-items:center;gap:.5rem}
.hero{border-radius:12px;overflow:hidden;background:linear-gradient(180deg, rgba(10,10,10,0.6), rgba(10,10,10,0.6));display:flex;align-items:center;gap:1.5rem;padding:2rem}
.hero-figure{flex:1;min-height:220px;border-radius:8px;overflow:hidden;background-image:url('https://placehold.co/1200x600/1e293b/ffd166?text=Sigiriya+Hero');background-size:cover;background-position:center}
.hero-copy{flex:1;max-width:650px}
.h1{font-size:2.25rem;margin:0 0 .5rem 0;font-weight:800}
.h-sub{color:var(--muted);margin-bottom:1rem}
.grid{display:grid;gap:1rem}
.grid.cols-4{grid-template-columns:repeat(4,1fr)}
.card{background:#071126;border-radius:10px;padding:1rem;overflow:hidden;border:1px solid rgba(255,255,255,0.03)}
.card img{width:100%;height:160px;object-fit:cover;border-radius:6px}
.overlay-title{font-weight:700;margin-top:.75rem}
.section-title{font-size:1.5rem;margin-bottom:1rem;font-weight:700}
.footer{border-top:1px solid rgba(255,255,255,0.04);padding:2rem 0;margin-top:2rem;color:var(--muted);text-align:center}
.contact-card{background:linear-gradient(180deg, rgba(91,33,182,0.12), rgba(16,16,24,0.2));padding:1.25rem;border-radius:10px;border:1px solid rgba(91,33,182,0.12)}
@media (max-width:768px){
  .grid.cols-4{grid-template-columns:repeat(2,1fr)}
  .header{padding:0 1rem}
  .h1{font-size:1.6rem}
  .hero{flex-direction:column}
  .hero-figure{width:100%;height:180px}
}
