:root {
  --primary: #6a0dad;
  --secondary: #b89e4e;
  --gray: #666666;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
body { 
  font-family:var(--font-body); 
  background:#ffffff !important; 
  color:#222222; 
  line-height:1.6; 
}

.container { max-width:1200px; margin:0 auto; padding:0 2rem; }

nav { 
  padding:1.5rem 0; 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  position:sticky; 
  top:0; 
  background:#ffffff; 
  z-index:100; 
  border-bottom:1px solid #eeeeee; 
}
.logo img { height:120px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15)); }
.nav-links { list-style:none; display:flex; gap:2rem; align-items:center; }
.nav-links a { text-decoration:none; color:#222; font-weight:500; transition:0.3s; }
.nav-links a:hover { color:var(--primary); }
#theme-toggle { background:none; border:none; font-size:1.5rem; cursor:pointer; }

.hero { min-height:90vh; display:flex; align-items:center; color:white; text-align:center; }
.hero h1 { font-family:var(--font-title); font-size:4.5rem; margin-bottom:0.5rem; }
.gold { color:var(--secondary); }
.tagline { font-size:2.4rem; font-style:italic; color:var(--secondary); margin-bottom:1rem; }
.subtitle { font-size:1.4rem; max-width:800px; margin:0 auto 3rem; }
.btn-primary, .btn-secondary { padding:1rem 2.5rem; margin:0.5rem; border-radius:50px; text-decoration:none; font-weight:600; display:inline-block; }
.btn-primary { background:var(--primary); color:white; }
.btn-secondary { background:transparent; color:white; border:2px solid white; }

.latest { padding:6rem 0; text-align:center; }
.latest h2 { font-family:var(--font-title); font-size:3rem; margin-bottom:3rem; color:var(--primary); }
.posts-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(320px,1fr)); gap:2rem; }
.post-card { background:white; border-radius:12px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,0.08); transition:0.3s; }
.post-card:hover { transform:translateY(-10px); }
.post-card img { width:100%; height:220px; object-fit:cover; }
.post-card h3 { padding:1.5rem 1rem 0.5rem; font-family:var(--font-title); }
.post-card p { padding:0 1rem 1rem; color:var(--gray); }
.post-card a { display:block; padding:0 1rem 1.5rem; color:var(--primary); font-weight:600; }

footer { background:#f9f9f9; color:#222; padding:3rem 0; text-align:center; border-top:1px solid #eee; }

@media (max-width:768px) {
  .hero h1 { font-size:3rem; }
  .tagline { font-size:1.8rem; }
  .logo img { height:90px; }
}