/* style.css */
:root{
  --accent:#0d6efd;
  --muted:#6c757d;
  --bg:#fbfcfd;
  --card-bg:#ffffff;
}

*{box-sizing:border-box}
body{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background:var(--bg);
  color:#1f2937;
  margin:0;
  line-height:1.6;
}

/* container width */
.container{max-width:1100px}

/* hero */
.hero{display:flex;gap:28px;background:linear-gradient(90deg, rgba(13,110,253,0.04), rgba(59,130,246,0.02));padding:28px;border-radius:12px;align-items:center}
.hero .photo{flex:0 0 180px}
.hero .photo img{width:180px;height:180px;object-fit:cover;border-radius:12px;box-shadow:0 10px 30px rgba(16,24,40,0.06)}
.hero .info h1{margin:0;font-size:1.9rem}
.hero .info p{color:var(--muted);margin-top:8px}

/* section title */
.section-title{font-weight:600;font-size:1.15rem;margin-bottom:12px}

/* cards grid */
.card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px}

/* card common */
.card-custom{background:var(--card-bg);padding:14px;border-radius:10px;box-shadow:0 6px 18px rgba(16,24,40,0.04)}
.card-custom img{width:100%;height:170px;object-fit:cover;border-radius:8px}

/* about */
.about-layout{display:grid;grid-template-columns:320px 1fr;gap:24px;align-items:start}
.about-layout img{width:100%;border-radius:10px;object-fit:cover}

/* gallery image style */
.gallery-img{cursor:pointer;transition: transform .2s}
.gallery-img:hover{transform:scale(1.02)}

/* meta */
.meta{color:var(--muted);font-size:.925rem}

/* responsive */
@media (max-width:768px){
  .hero{flex-direction:column;align-items:flex-start}
  .about-layout{grid-template-columns:1fr}
}
