body{
  margin:0;
  font-family:'Inter', sans-serif;
  background:#f8f5f0;
  color:#2f2a26;
  line-height:1.7;
  opacity:0;
  transition:opacity 0.4s ease;
}

body.fade-in{
  opacity:1;
}

body.fade-out{
  opacity:0;
}

h1,h2,h3{
  font-family:'Merriweather', serif;
}

a{
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

/* NAVBAR */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(248,245,240,0.96);
  backdrop-filter:blur(8px);
  border-bottom:1px solid #e7dfd5;
}

.navbar{
  max-width:1100px;
  margin:0 auto;
  padding:18px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo-link{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-family:'Merriweather', serif;
  font-size:24px;
  font-weight:700;
  color:#2f2a26;
}

.nav-links{
  display:flex;
  gap:24px;
  align-items:center;
}
.site-logo{
  width:28px;
  height:28px;
}

.nav-links a{
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  color:#4b433d;
  transition:color 0.2s ease;
}

.nav-links a:hover{
  color:#9b5b3f;
}

/* HERO */

.hero{
  min-height:78vh;
  background-image:
    linear-gradient(rgba(19,16,13,0.45), rgba(19,16,13,0.45)),
    url("images/background.jpg");
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  padding:60px 24px;
}

.hero-content{
  max-width:760px;
}

.hero h1{
  font-size:64px;
  line-height:1.1;
  margin:0 0 18px;
}

.hero p{
  font-size:20px;
  max-width:700px;
  margin:0 auto 30px;
}

.hero-button{
  display:inline-block;
  padding:14px 30px;
  background:#b96a46;
  color:white;
  text-decoration:none;
  border-radius:999px;
  font-weight:700;
  transition:transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow:0 10px 24px rgba(0,0,0,0.18);
}

.hero-button:hover{
  background:#9d5636;
  transform:translateY(-2px);
}

/* SECTIONS */

.section{
  max-width:1100px;
  margin:0 auto;
  padding:80px 24px;
}

.section-title{
  font-size:36px;
  margin:0 0 28px;
  text-align:center;
}

.section-intro{
  max-width:720px;
  margin:0 auto 40px;
  text-align:center;
  color:#5a514a;
  font-size:18px;
}

/* FEATURED ARTICLES */

.featured-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:28px;
}

.article-card{
  background:white;
  border:1px solid #eee4d8;
  border-radius:18px;
  padding:28px;
  box-shadow:0 12px 30px rgba(0,0,0,0.05);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(0,0,0,0.08);
}

.article-card h3{
  margin-top:0;
  margin-bottom:12px;
  font-size:28px;
}

.article-card p{
  margin-bottom:18px;
  color:#5a514a;
}

.read-link{
  display:inline-block;
  padding:11px 18px;
  border-radius:999px;
  background:#2f2a26;
  color:white;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  transition:background 0.2s ease, transform 0.2s ease;
}

.read-link:hover{
  background:#9b5b3f;
  transform:translateY(-1px);
}

/* ABOUT PREVIEW */

.about-preview{
  background:#efe7dc;
  border-top:1px solid #e7dfd5;
  border-bottom:1px solid #e7dfd5;
}

.about-preview-inner{
  max-width:800px;
  margin:0 auto;
  padding:80px 24px;
  text-align:center;
}

.about-preview p{
  font-size:18px;
  color:#4f4741;
}

.about-link{
  display:inline-block;
  margin-top:18px;
  text-decoration:none;
  font-weight:700;
  color:#9b5b3f;
}

/* ARTICLE PAGE */

.article-header,
.about-hero{
  padding:100px 24px 60px;
  text-align:center;
  background:#efe7dc;
}

.article-header h1,
.about-hero h1{
  font-size:48px;
  margin-bottom:14px;
}

.article-subtitle,
.about-hero p{
  font-size:18px;
  color:#5c534c;
  max-width:700px;
  margin:0 auto;
}

.article-content,
.about-content{
  max-width:760px;
  margin:0 auto;
  padding:70px 24px 90px;
  font-size:18px;
  text-align:center;
}

.article-content p,
.about-content p{
  margin-bottom:24px;
}

.about-content h2{
  font-size:30px;
  margin-bottom:24px;
}

/* FOOTER */

footer{
  text-align:center;
  padding:36px 24px;
  background:white;
  border-top:1px solid #e7dfd5;
  color:#675d56;
}

/* MOBILE */

@media (max-width: 800px){
  .navbar{
    flex-direction:column;
    gap:14px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
    gap:14px 18px;
  }

  .hero h1{
    font-size:42px;
  }

  .hero p{
    font-size:18px;
  }

  .featured-grid{
    grid-template-columns:1fr;
  }

  .article-header h1,
  .about-hero h1{
    font-size:36px;
  }
}
.article-meta{
  margin-top:12px;
  font-size:14px;
  color:#7a6f66;
  font-weight:600;
}
.author-photo{
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-bottom:40px;
}
.author-caption{
  margin-top:14px;
  font-size:16px;
  color:#5a514a;
  text-align:center;
  line-height:1.5;
}

.author-photo img{
  width:260px;
  max-width:90%;
  height:auto;
  border-radius:12px;
  box-shadow:0 12px 28px rgba(0,0,0,0.18);
  border:3px solid #e7dfd5;
}
.article-thumbnail{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:16px;
}