@charset "utf-8";
/* Reincarnation blog page — style aligned with original template, beige accents */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

        :root {
    --primary-color: #c08151;        /* Rich chestnut brown */
    --secondary-color: #9f6442;      /* Muted clay */
    --accent-color: #98784c;         /* Light tan / camel */
    --accent-pink: #926031f7;          /* Soft blush beige */
    --accent-cyan: #c65615;          /* Dusty taupe for contrast */
    --text-primary: #3b2f23;         /* Deep espresso */
    --text-secondary: #6b4f3b;       /* Medium brown */
    --text-light: #fdfaf6;           /* Warm cream */
    --bg-primary: #f5f0eb;           /* Soft latte beige */
    --bg-secondary: #ece6df;         /* Gentle sand tone */
    --bg-dark: #3b2f23;              /* Dark roasted brown */
    --bg-card: rgba(245, 240, 235, 0.95); /* Subtle frosted latte */
    --gradient-primary: linear-gradient(135deg, #8b5e3c 0%, #a97456 100%);
    --gradient-secondary: linear-gradient(135deg, #896b43 0%, #e4c9b0 100%);
    --gradient-tertiary: linear-gradient(135deg, #95855e 0%, #ac834e 100%);
    --gradient-elegant: linear-gradient(135deg, #8b5e3c 0%, #d2b48c 50%, #9b774d 100%);
    --shadow-sm: 0 1px 2px 0 rgba(80, 50, 30, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(80, 50, 30, 0.1), 0 2px 4px -1px rgba(80, 50, 30, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(80, 50, 30, 0.15), 0 4px 6px -2px rgba(80, 50, 30, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(80, 50, 30, 0.2), 0 10px 10px -5px rgba(80, 50, 30, 0.15);
    --shadow-2xl: 0 25px 50px -12px rgba(80, 50, 30, 0.25);
    --glass: rgba(245, 240, 235, 0.15);
    --glass-border: rgba(245, 240, 235, 0.2);
}

/* Base */
body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Navigation (reuse same look) */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all .4s cubic-bezier(0.4,0,0.2,1);
}

nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-lg);
  padding: .75rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient-elegant);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 0;
  transition: all .3s cubic-bezier(0.4,0,0.2,1);
}

.nav-links a:hover {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: width .3s cubic-bezier(0.4,0,0.2,1);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero-ish heading area for blog title */
.blog-header {
  padding: 8rem 0 3rem;
  text-align: center;
  position: relative;
}

.blog-header .section-title {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: .5rem;
  background: var(--gradient-elegant);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  position: relative;
}

.blog-header .section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.blog-meta {
  margin-top: .75rem;
  font-size: .9rem;
  color: var(--text-secondary);
}

/* Content */
.blog-content {
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.blog-article {
  background: var(--bg-card);
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}

.blog-article h2,
.blog-article h3 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.blog-article p {
  margin: 1rem 0;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.65;
}

.blog-article ul {
  padding-left: 1.25rem;
  margin: 1rem 0;
}

.blog-article li {
  margin-bottom: .5rem;
}

/* Back button */
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  margin-top: 2rem;
  transition: all .3s ease;
  border: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #131211 0%, #141312 50%, #15120f 100%);
  color: var(--text-light);
  padding: 1rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M12 0L0 0 0 12" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
  opacity: .4;
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(192,158,128,0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(212,191,168,0.08) 0%, transparent 50%);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-left p {
  margin: 0;
  font-size: .9rem;
  color: rgba(255,255,255,0.7);
}

.footer-right {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-right a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  position: relative;
  font-size: .9rem;
  transition: all .3s ease;
}

.footer-right a:hover {
  color: var(--text-light);
  transform: translateY(-1px);
}

.footer-right a::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  bottom: -3px;
  left: 0;
  background: var(--primary-color);
  transition: width .3s ease;
}

.footer-right a:hover::after {
  width: 100%;
}

/* Utility & responsiveness */
.section {
  padding: 6rem 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 1024px) {
  .blog-header .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .blog-header { padding-top: 6rem; }
  .blog-article { padding: 2rem; }
  .section-title { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .blog-header .section-title { font-size: 2rem; }
}
