:root {
  --paper: #f6efe6;
  --ink: #2f2a24;
  --muted: #6d6257;
  --accent: #e2a76f;
  --accent-2: #7fa79b;
  --card: #fffaf2;
  --shadow: 0 18px 40px rgba(47, 42, 36, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", "Helvetica Neue", Helvetica, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff3e3 0%, var(--paper) 48%, #eef5f1 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--ink);
}

.site-header {
  padding: 28px 0 10px;
}

.navbar-brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero {
  background: linear-gradient(120deg, #fff3e0 0%, #f5efe5 45%, #eef5f0 100%);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(226, 167, 111, 0.25);
  filter: blur(2px);
}

.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin-bottom: 12px;
}

.hero p {
  color: var(--muted);
  max-width: 580px;
  font-size: 1.05rem;
}

.section-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.blog-card {
  background: var(--card);
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(47, 42, 36, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.blog-card .card-body {
  padding: 22px;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(127, 167, 155, 0.18);
  color: #385248;
  font-size: 0.75rem;
  margin-right: 6px;
}

.read-more-btn {
  border-radius: 999px;
  border: 1px solid rgba(47, 42, 36, 0.4);
  padding: 8px 16px;
}

.post-hero {
  margin: 32px 0 24px;
}

.post-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 10px;
}

.post-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.carousel-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel-frame .carousel-item {
  height: 520px;
}

.carousel-frame .carousel-item img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .carousel-frame .carousel-item {
    height: 320px;
  }
}

.post-content {
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.post-content h2,
.post-content h3 {
  font-family: "Fraunces", Georgia, serif;
  margin-top: 24px;
}

.post-content p,
.post-content li {
  color: #403930;
  font-size: 1.05rem;
  line-height: 1.7;
}

footer {
  margin-top: 60px;
  padding: 28px 0 40px;
  color: var(--muted);
}

footer .footer-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 22px 26px;
}

.status-text {
  color: var(--muted);
}

.sitemap-box {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .hero {
    padding: 36px 24px;
  }

  .post-content {
    padding: 26px;
  }
}
