/* Cine Nostalgia Dark Theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  background-color: #0d0d0d;
  color: #fff;
}
header {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1514306191717-452ec28c7814?q=80&w=869&au') center/cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
header h1 {
  font-size: 3rem;
  color: #ff3b3f;
  margin-bottom: 1rem;
}
header p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
}
header a {
  display: inline-block;
  margin-top: 2rem;
  background: #ff3b3f;
  color: #fff;
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
header a:hover {
  background: #e73236;
}
.gallery {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.05);
}
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #888;
}
.blog-container {
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
/* Professional blog container */
.article-container {
  max-width: 900px;            /* keeps lines readable */
  margin: 50px auto;            /* space from top & bottom */
  padding: 50px 40px;           /* generous padding */
  background-color: #fff;       /* clean white background */
  border-radius: 12px;          /* smooth corners */
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);  /* subtle shadow */
  line-height: 1.9;             /* comfortable reading */
  font-family: 'Inter', sans-serif;
  color: #111 !important;
}

/* Headings */
.article-container h1 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 20px;
}

.article-container h2 {
  font-size: 28px;
  margin: 35px 0 15px;
  color: #222  !important;
}

/* Paragraphs */
.article-container p {
  font-size: 18px;
  line-height: 1.9;
  margin: 20px 0;
  color: #222  !important;
  font-family: 'Inter', sans-serif;
}

/* Captions under iframes/images */
.article-container .caption {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
  font-style: italic;
}

/* Embedded videos */
.article-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  margin: 25px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Footer inside article */
.article-container .footer {
  margin-top: 50px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  color: #666;
  font-size: 14px;
  text-align: center;
}

.blog-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-content {
  padding: 20px;
}
.blog-content h3 {
  color: #ff3b3f;
  margin-bottom: 10px;
}
.blog-content p {
  color: #ccc;
  margin-bottom: 15px;
}
.blog-content a {
  text-decoration: none;
  color: #fff;
  background: #ff3b3f;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.blog-content a:hover {
  background: #e73236;
}
body.blog-page {
  background: #f4f4f4 !important;
  color: #111 !important;
}
.trailer-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.trailer-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}
.more-blogs {
  position: relative;
  z-index: 99;
  background-color: white;
  margin-top: 50px;
  margin-bottom: 30px;
  padding: 10px 0;
  border-top: 1px solid #ddd;
}

.more-blogs h2 {
  font-size: 26px;
  margin-bottom: 25px;
}

.related-card {
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
  padding: 18px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #eee;
}

.related-card:last-child {
  border-bottom: none;
}

.related-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  margin: 0;
  color: #111 !important;
}

.related-info p {
  font-size: 16px;
  color: #444 !important;
  margin: 0;
}

.related-card img {
  width: 140px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  margin-left: 25px;
}

.related-card:hover {
  transform: translateX(4px);
  transition: 0.2s ease;
}
.see-all {
  margin-bottom: 15px;
}

.see-all a {
  display: inline-block;
  padding: 10px 16px;
  background: #f2f2f2;
  color: #1a1a1a;
  border: 1px solid #d6d6d6;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 550;
  letter-spacing: 0.3px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: 0.2s ease;
  -webkit-font-smoothing: antialiased;
}

.see-all a:hover {
  background: #e6e6e6;
  border-color: #c8c8c8;
  transform: translateY(-1px);
}
/* --- Mobile Fix for Related Blog Cards --- */
@media (max-width: 600px) {
  .related-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .related-card img {
    width: 100%;
    height: auto;
    margin: 12px 0 0 0;
    border-radius: 10px;
  }

  .related-info h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .related-info p {
    font-size: 16px;
    line-height: 1.4;
  }
}



