:root {
  --bg: #1a1a2e;
  --surface: #16213e;
  --gold: #d4a843;
  --neon-pink: #e94560;
  --neon-blue: #0f3460;
  --text: #e0e0e0;
  --text-muted: #a0a0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-header {
  border-bottom: 2px solid var(--gold);
  padding: 1.5rem 0;
  text-align: center;
}
.logo { text-decoration: none; color: inherit; }
.logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tagline {
  color: var(--neon-pink);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem 0 2rem;
}
.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}
.post-card {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(212, 168, 67, 0.15);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.15);
}
.card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.card-body { padding: 1.2rem; }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.card-body p { font-size: 0.9rem; color: var(--text-muted); }

/* Single Post */
.post { padding: 2rem 0; max-width: 750px; margin: 0 auto; }
.post h1 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.post-hero-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.post-content p { margin-bottom: 1rem; }
.post-content h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin: 2rem 0 1rem;
}

/* Shop Section */
.shop-collection {
  background: var(--surface);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2.5rem;
  text-align: center;
}
.shop-collection h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 1rem;
}
.shop-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.shop-link {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}
.shop-link:hover { background: #c49a3a; }

/* Video Section */
.video-section {
  margin-top: 2.5rem;
  text-align: center;
}
.video-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 1rem;
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 — will show letterboxed for Shorts */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(212, 168, 67, 0.3);
  max-width: 400px;
  margin: 0 auto;
  padding-bottom: 177.78%; /* 9:16 for Shorts */
  max-height: 600px;
}
@media (min-width: 601px) {
  .video-embed {
    max-width: 340px;
    padding-bottom: 0;
    height: 600px;
  }
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Tags */
.post-tags { margin-top: 2rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag {
  background: var(--neon-blue);
  color: var(--text);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
}

/* Related Posts */
.related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 168, 67, 0.3);
}
.related-posts h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.related-posts .post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.related-posts .post-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.related-posts .post-card-content {
  padding: 0.8rem;
}
.related-posts .post-card-content h3 {
  font-size: 1rem;
  margin: 0;
  line-height: 1.3;
}
.post-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(212, 168, 67, 0.3);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 3rem;
}
.site-footer a { color: var(--gold); }

@media (max-width: 600px) {
  .logo h1 { font-size: 1.8rem; }
  .posts-grid { grid-template-columns: 1fr; }
  .shop-links { flex-direction: column; }
}
