/* Simple modern white + soft brown theme */
:root{
  --bg: #ffffff;
  --muted: #7a6c5c;
  --accent: #c2a676;
  --dark: #3c2f22;
  --container-width: 900px;
  --radius: 12px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color:var(--dark);
  background:var(--bg);
  line-height:1.6;
}

a{color:var(--accent); text-decoration:none}

.header, .hero {padding:40px 20px; text-align:center}
.hero{background:linear-gradient(180deg, #fff 0%, #fbf7f3 100%); border-bottom:1px solid #f0e9e0}
.hero-inner{max-width:var(--container-width); margin:0 auto; display:flex; gap:20px; align-items:center; justify-content:center; padding:10px;}
.avatar{width:110px; height:110px; border-radius:100px; object-fit:cover; box-shadow:0 6px 18px rgba(0,0,0,0.08); border:4px solid rgba(194,166,118,0.12)}

.hero-text h1{margin:0; font-size:2.1rem; letter-spacing:0.3px}
.tagline{margin:6px 0 0; color:var(--muted); font-size:1rem}

/* sections */
.container{max-width:var(--container-width); margin:40px auto; padding:0 20px}
.container h2{font-size:1.25rem; margin-bottom:12px; color:var(--dark)}

/* about */
.about-sathi p{margin-top:0.6rem}

/* testimonials */
blockquote{background:#fbf8f5; border-left:4px solid var(--accent); padding:14px 18px; margin:12px 0; border-radius:8px; color:var(--muted)}

/* book button */
.book-section{text-align:center}
.book-button{display:inline-block; padding:12px 26px; border-radius:999px; background:var(--accent); color:#fff; font-weight:600; box-shadow:0 6px 18px rgba(194,166,118,0.18); transition:transform .15s ease}
.book-button:hover{transform:translateY(-3px)}

/* footer */
.site-footer{background:#fbf7f3; padding:22px 14px; text-align:center; color:var(--muted); border-top:1px solid #f0e9e0}
.site-footer .small{font-size:0.85rem; margin-top:8px; color:#918076}

/* responsive */
@media (max-width:720px){
  .hero-inner{flex-direction:column; padding:10px}
  .hero-text h1{font-size:1.6rem}
  .avatar{width:120px; height:120px}
}
