/* Blog post styles for auto-generated posts */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #d4a843;
  --gold-light: #e8c86e;
  --dark: #0a0a0a;
  --gray: #1a1a1a;
}

body.bg-dark {
  background: var(--dark);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(10,10,10,0.95);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}
.nav-logo {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.1rem;
}
.nav-logo span { font-weight: 400; font-size: 0.75rem; color: rgba(255,255,255,0.5); display: block; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-call { background: #16a34a; color: #fff !important; padding: 0.5rem 1rem; border-radius: 0.5rem; font-weight: 700; }
.nav-call:hover { background: #22c55e; }
@media (max-width: 640px) {
  .top-nav { flex-direction: column; gap: 0.75rem; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
}

.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.post-header { margin-bottom: 3rem; }

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.post-meta {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.post-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.meta-left { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  font-weight: 500;
}
.meta-link { color: var(--gold); text-decoration: none; }
.meta-link:hover { color: var(--gold-light); }
.meta-right { display: flex; align-items: center; }

.like-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2rem;
  padding: 0.4rem 0.9rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.like-btn:hover { border-color: #f87171; color: #f87171; }
.like-btn.liked { border-color: #f87171; color: #f87171; background: rgba(248,113,113,0.08); }
.like-icon { transition: transform 0.2s; }

/* Author Box */
.author-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
}
.author-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b8941f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #000;
}
.author-info { flex: 1; }
.author-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 0.25rem; }
.author-name { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0; }
.author-role { font-size: 0.85rem; color: var(--gold); font-weight: 600; margin: 0.15rem 0 0.5rem; }
.author-bio { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; margin: 0; }
@media (max-width: 640px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .post-meta-bar { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
}

.post-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(90deg, #d4a843, #e8c86e, #fff, #e8c86e, #d4a843);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.post-content { font-size: 1.05rem; color: rgba(255,255,255,0.75); }

.post-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(212,168,67,0.2);
}

.post-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin: 2rem 0 0.75rem;
}

.post-content p { margin: 1rem 0; }

.post-content ul, .post-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.post-content li { margin: 0.5rem 0; }

.post-content strong { color: #fff; }

.post-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-content a:hover { color: var(--gold-light); }

.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(255,255,255,0.03);
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
}

.post-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 1rem;
  text-align: center;
}

.post-cta h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.post-cta p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-call, .btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-call {
  background: #16a34a;
  color: #fff;
}
.btn-call:hover { background: #22c55e; }

.btn-book {
  background: var(--gold);
  color: #000;
}
.btn-book:hover { background: var(--gold-light); }

.btn-area {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-area:hover { background: var(--gold); color: #000; }

.related-links {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem;
}
.related-links h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.related-links a {
  display: inline-block;
  margin: 0.25rem 0.5rem 0.25rem 0;
  padding: 0.4rem 1rem;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 2rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
}
.related-links a:hover { background: var(--gold); color: #000; }

@media (max-width: 640px) {
  .hero-image { height: 250px; }
  .cta-buttons { flex-direction: column; }
  .btn-call, .btn-book, .btn-area { justify-content: center; }
}
