@font-face {
  font-family: "Kohinoor-Bangla";
  src: url("../fonts/Kohinoor_Bangla/KohinoorBangla-Regular.otf")
    format("truetype");
  font-display: swap; /* Add this for better performance */
  font-weight: 100;
}
@font-face {
  font-family: "Kohinoor-Bangla-Bold";
  src: url("../fonts/Kohinoor_Bangla/KohinoorBangla-Bold.otf")
    format("truetype");
  font-display: swap; /* Add this for better performance */
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

section {
  font-family: "Kohinoor-Bangla";
}

a {
  text-decoration: none;
  color: inherit;
}

.hero {
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: white;
  text-align: center;
  position: relative;
  min-height: 300px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(77, 77, 77, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: -1;
}

.hero .container {
  max-width: 800px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background-color: #3b82f6;
  color: white;
  padding: 6px 12px;
  margin: 5px 5px 15px 5px;
  border-radius: 50px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 2.2rem;
  margin: 20px 0 10px;
}

.author-date {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 0;
}

.content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.7;
}

.content p {
  margin-bottom: 20px;
}

.comment-box,
.suggested-articles {
  margin-top: 60px;
}

.comment-box h2,
.suggested-articles h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #111;
}

/* COMMENT FORM */
.comment-box {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.comment-box input[type="text"],
.comment-box input[type="email"],
.comment-box textarea {
  width: 100%;
  padding: 15px;
  margin: 15px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.comment-box input:focus,
.comment-box textarea:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.comment-box label {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
}

.comment-box button {
  background-color: #f97316; /* Tailwind orange-500 */
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 999px; /* More rounded */
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comment-box button:hover {
  background-color: #ea580c; /* Tailwind orange-600 */
}

/* ARTICLE GRID - SUGGESTED CARDS */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.article-grid div {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.article-grid div:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-grid div:hover img {
  transform: scale(1.05);
}

.article-grid p {
  margin: 10px 15px;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
}

.article-grid p strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 6px;
}
/* Article navigation */
.article-nav {
  display: flex;
  justify-content: space-between;
  margin: 60px 0 30px;
  font-size: 0.95rem;
}

.article-nav a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.article-nav a:hover {
  color: #1d4ed8;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.social-icons .icon {
  font-size: 1.2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  color: #333;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
}

.social-icons .icon:hover {
  background-color: #3b82f6;
  color: #fff;
}

.social-icons .facebook:hover {
  background-color: #1877f2;
}

.social-icons .twitter:hover {
  background-color: #1da1f2;
}

.social-icons .linkedin:hover {
  background-color: #0a66c2;
}

.social-icons .instagram:hover {
  background-color: #e1306c;
}
