/* ================================
   AJ PARKS - CINEMATIC BLOG STYLE
   ================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-black: #0a0a0a;
  --secondary-black: #1a1a1a;
  --tertiary-black: #2a2a2a;
  --gold: #d4af37;
  --light-gold: #f4d03f;
  --white: #ffffff;
  --light-gray: #e8e8e8;
  --medium-gray: #888888;
  --dark-gray: #444444;
  
  --font-bebas: 'Bebas Neue', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
  
  --transition: all 0.3s ease;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-poppins);
  background-color: var(--primary-black);
  color: var(--light-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-bebas);
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
  font-family: var(--font-poppins);
  font-size: 1rem;
  line-height: 1.8;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--light-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ========== LOADER ========== */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-bebas);
  font-size: 4rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 30px;
  animation: fadeInScale 1s ease-in-out;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
  animation: loadingBar 2s ease-in-out infinite;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loadingBar {
  0%, 100% { width: 100px; }
  50% { width: 200px; }
}

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  z-index: 100;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-bebas);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-montserrat);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--light-gray);
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/hero-1.jpg') center/cover;
  background-attachment: fixed;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(212, 175, 55, 0.1));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--light-gold);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-cta {
  display: inline-block;
  padding: 15px 50px;
  background: var(--gold);
  color: var(--primary-black);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid var(--gold);
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero-cta:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== CATEGORY SECTION ========== */
.categories {
  padding: 5rem 2rem;
  background: var(--primary-black);
}

.categories-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.5rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--secondary-black);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover {
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
  transform: translateY(-10px);
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

/* ========== FEATURED POSTS ========== */
.featured-posts {
  padding: 5rem 2rem;
  background: var(--secondary-black);
}

.featured-posts-container {
  max-width: 1400px;
  margin: 0 auto;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.post-card {
  background: var(--primary-black);
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

/* ========== MEDIA CONTAINERS - 9:16 VERTICAL ASPECT RATIO ========== */
.post-image-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: linear-gradient(135deg, var(--tertiary-black) 0%, var(--secondary-black) 50%, var(--tertiary-black) 100%);
  contain: layout style paint;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  display: block;
  background: var(--tertiary-black);
  /* Prevent overflowing the container */
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
}

.post-image-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--tertiary-black);
  /* Prevent controls from expanding container */
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
}

/* Skeleton loader styles */
.skeleton-loader {
  background: linear-gradient(90deg, var(--tertiary-black) 25%, var(--secondary-black) 50%, var(--tertiary-black) 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.post-card.skeleton {
  pointer-events: none;
  opacity: 0.6;
}

.post-card.skeleton .post-image-container {
  background-color: var(--tertiary-black);
}

.post-card.skeleton .post-image {
  background: linear-gradient(90deg, var(--tertiary-black) 25%, var(--secondary-black) 50%, var(--tertiary-black) 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.post-card.skeleton .post-content h3,
.post-card.skeleton .post-content p {
  background: linear-gradient(90deg, var(--tertiary-black) 25%, var(--secondary-black) 50%, var(--tertiary-black) 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
  color: transparent;
  border-radius: 4px;
  min-height: 1.2em;
}

/* Fade-in animation for loaded content */
.post-card {
  animation: fadeInCard 0.5s ease forwards;
}

.post-card.loading {
  opacity: 0;
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.post-card:hover .post-image {
  transform: scale(1.1);
}

.post-category-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--primary-black);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 10;
}

.post-content {
  padding: 2rem;
}

.post-date {
  color: var(--medium-gray);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.post-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-excerpt {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 0.85rem;
}

.read-time {
  color: var(--gold);
}

.post-card:hover {
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
  transform: translateY(-5px);
}

/* ========== SIDEBAR ========== */
.blog-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: 5rem 2rem;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-box {
  background: var(--secondary-black);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2rem;
}

.sidebar-box h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.sidebar-box p {
  color: var(--medium-gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.topics-list,
.recent-posts-list {
  list-style: none;
}

.topics-list li,
.recent-posts-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.topics-list a,
.recent-posts-list a {
  color: var(--light-gray);
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topics-list a:hover,
.recent-posts-list a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

/* ========== POST PAGE ========== */
.post-header {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(42, 42, 42, 0.8) 100%);
  contain: layout style paint;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-featured-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
}

#detailsVideo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: transparent;
  display: block;
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
}

#detailsMediaContainer {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(42, 42, 42, 0.8) 100%);
  overflow: hidden;
  contain: layout style paint;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Media wrapper for proper sizing within header */
.post-detail-media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.post-detail-media img,
.post-detail-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
}

.post-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.post-header-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem;
  color: var(--white);
}

.post-header-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.post-header-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--light-gold);
  font-size: 0.95rem;
}

.post-body {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.post-body h2 {
  margin: 2rem 0 1rem;
  font-size: 2rem;
}

.post-body h3 {
  margin: 1.5rem 0 1rem;
  font-size: 1.5rem;
}

.post-body p {
  margin-bottom: 1.5rem;
  color: var(--light-gray);
}

.post-body img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: block;
  object-fit: contain;
  background: var(--tertiary-black);
  padding: 1rem;
  border-radius: 8px;
}

.post-body video {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: block;
  object-fit: contain;
  background: var(--tertiary-black);
  padding: 1rem;
  border-radius: 8px;
}

.post-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  margin: 2rem 0;
  background: rgba(212, 175, 55, 0.05);
  font-style: italic;
  color: var(--gold);
}

.post-body ul,
.post-body ol {
  margin: 1.5rem 0 1.5rem 2rem;
}

.post-body li {
  margin-bottom: 0.5rem;
  color: var(--light-gray);
}

/* ========== COMMENTS ========== */
.comments-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 3rem;
}

.comments-section h2 {
  margin-bottom: 2rem;
}

.comment-form {
  background: var(--secondary-black);
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--light-gray);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--primary-black);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--light-gray);
  padding: 0.75rem;
  font-family: var(--font-poppins);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.comment-submit {
  background: var(--gold);
  color: var(--primary-black);
  border: none;
  padding: 0.75rem 2rem;
  font-family: var(--font-montserrat);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.comment-submit:hover {
  background: var(--light-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.comments-list {
  list-style: none;
}

.comment {
  background: var(--secondary-black);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.comment-author {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.comment-date {
  color: var(--medium-gray);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.comment-text {
  color: var(--light-gray);
  line-height: 1.6;
}

/* ========== LIKE & SHARE ========== */
.post-actions {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--secondary-black);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
}

.like-btn,
.share-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-montserrat);
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.like-btn:hover,
.share-btn:hover {
  background: var(--gold);
  color: var(--primary-black);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.like-btn.liked {
  background: var(--gold);
  color: var(--primary-black);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary-black);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section a {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--light-gray);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--primary-black);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--medium-gray);
}

.footer-logo {
  font-family: var(--font-bebas);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

/* ========== ABOUT PAGE ========== */
.about-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: url('/images/about-hero.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(212, 175, 55, 0.1));
  z-index: 1;
}

.about-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
}

.about-content {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 2rem;
  color: var(--light-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.about-card {
  background: var(--secondary-black);
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.about-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--medium-gray);
}

/* ========== CONTACT PAGE ========== */
.contact-container {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-intro p {
  font-size: 1.1rem;
  color: var(--medium-gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-info {
  background: var(--secondary-black);
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-info h3 {
  color: var(--gold);
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h4 {
  color: var(--light-gray);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--medium-gray);
}

.contact-form {
  background: var(--secondary-black);
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form h3 {
  color: var(--gold);
  margin-bottom: 2rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary-black);
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .blog-container {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: -1;
  }

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

  .post-header-content h1 {
    font-size: 1.8rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .nav-logo {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

  .post-actions {
    flex-direction: column;
  }
}

/* ========== POST STATS ========== */
.post-stats {
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.share-menu {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 150px;
}

/* ========== BLOG POST ACTION BUTTONS ========== */
.blog-like-btn,
.blog-comment-btn,
.blog-share-btn {
  transition: all 0.3s ease;
}

.blog-like-btn:hover,
.blog-comment-btn:hover,
.blog-share-btn:hover {
  background-color: rgba(212, 175, 55, 0.1) !important;
  border-color: var(--gold) !important;
}

.blog-like-btn.liked {
  color: #ff6b9d;
  border-color: #ff6b9d;
}

/* ========== DETAILS PAGE ========== */
.back-link {
  transition: opacity 0.3s ease;
}

.back-link:hover {
  opacity: 0.8;
}

.comment-form {
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.submit-btn {
  background: var(--gold);
  color: var(--primary-black);
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-montserrat);
  font-weight: 600;
  transition: var(--transition);
  border-radius: 4px;
}

.submit-btn:hover {
  background: var(--light-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
