/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: "Noto Sans Bengali", sans-serif;

  background-image: url("../images/background.png"); /* path to image */
  background-size: cover; /* full screen */
  background-repeat: no-repeat; /* no repeat */
  background-attachment: fixed; /* stays fixed */

  color: #333;
}

/* NAVBAR */
.navbar {
  background: #1f1f1f;
  padding: 10px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  text-decoration: none;

  color: #c16a6a;

  font-size: 21px;

  font-weight: 600;

  letter-spacing: 0.5px;

  transition: 0.3s;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  font-size: 32px;
  margin: 40px auto 30px;
  color: #b23a3a;
  width: fit-content;

  /* Adds the underline from your sketch */
  border-bottom: 2px solid #b23a3a;
  padding-bottom: 5px;
}

/* --- NEW FEATURED GRID (Matches your sketch) --- */
.featured-grid {
  display: grid;
  /* Creates 3 equal columns */
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 0 40px;
}

/* CARD BASE */
.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
}

/* Fix for white space below images */
.card a {
  display: block;
}

/* STANDARD IMAGE */
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* --- THE MAGIC FOR THE TALL COVER --- */
.cover-card {
  grid-row: span 2; /* Tells the cover to stretch down through 2 rows */
}

/* Allows the cover image to stretch and fill the extra vertical space */
.cover-card img {
  height: auto;
  flex-grow: 1;
  min-height: 300px;
}

/* CONTENT */
.card-content {
  padding: 15px;
  text-align: center; /* Centers text like in your drawing */
  border-top: 1px solid #ccc; /* Creates the horizontal line above the text from your sketch */
}

.card-title {
  font-size: 20px;
  color: #5a2a2a;
  font-weight: bold;
}

.card-text {
  font-size: 14px;
}

/* BUTTON */
.btn {
  display: block;
  margin: 25px auto;
  padding: 10px 20px;
  background: #b23a3a;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.main-video-card img {
  height: auto;
  flex-grow: 1; /* Allows the image to stretch vertically */
  object-fit: cover;
  min-height: 400px; /* Crucial to keep it tall, like a main video player */
}

/* Small Videos Grid */
.small-videos-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}
.small-video-card img {
  height: 180px;
  object-fit: cover;
  cursor: pointer;
}

/* CONTENT STYLE FOR ALL CARDS: Centering and adding the dividing line from your sketch */
.card-content {
  padding: 15px;
  text-align: center; /* Centers text like in your drawing */
  border-top: 1px solid #ccc; /* Creates the horizontal line above the text from your sketch */
}

.card-title {
  font-size: 20px;
  color: #5a2a2a;
  font-weight: bold;
}

/* 'Show More' Button */
.show-more-btn-container {
  text-align: center;
  margin: 40px 0;
}

.show-more-btn {
  display: inline-block;
  text-decoration: none;
  color: #5a2a2a;
  border: 2px solid #5a2a2a; /* Creates the box from your drawing */
  padding: 10px 25px;
  border-radius: 50px; /* More modern than a sharp box */
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
}

.show-more-btn:hover {
  background-color: #5a2a2a; /* Fills with color on hover */
  color: white;
}

/* --- MOBILE RESPONSIVE UPDATES FOR VIDEO SECTION --- */
@media (max-width: 768px) {
  /* ... (Your previous responsive styles) ... */

  /* Collapse the Saampratik featured-grid to single column */
  .featured-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  /* Stop the cover card from trying to span 2 rows on mobile */
  .cover-card {
    grid-row: span 1;
  }

  /* Collapse the Video Section Grid on small screens */
  .video-section-grid {
    grid-template-columns: 1fr; /* Single column layout for mobile */
    gap: 15px;
  }

  .main-video-card img {
    min-height: 300px; /* Reduce min-height for mobile main video */
  }

  .play-btn-large {
    font-size: 24px;
    padding: 15px;
  }

  /* Stack small videos in a single list on mobile */
  .small-videos-grid {
    grid-template-rows: auto; /* Allow content to flow naturally */
    grid-template-columns: 1fr; /* Vertical list */
    gap: 10px;
  }

  .small-video-card img {
    height: 100px; /* Reduce height of small images on mobile */
  }

  .show-more-btn-container {
    margin: 30px 0;
  }

  .show-more-btn {
    padding: 8px 20px;
    font-size: 16px;
  }
}
/* other mobile styles... */
.navbar {
  flex-direction: column;
  gap: 10px;
}

/* HEADER */
.header {
  text-align: center;
}

.logo-section h1 {
  font-size: 42px;
  color: #5a2a2a;
  margin-bottom: 5px;
}

.tagline {
  font-size: 14px;
  color: #b23a3a;
}

/* BORDER STRIP */
.top-border {
  height: 20px;
  background: repeating-linear-gradient(
    45deg,
    #b23a3a,
    #b23a3a 10px,
    #f5efe6 10px,
    #f5efe6 20px
  );
}
/* HEADER LAYOUT */
.header-top {
  display: grid;
  /* This creates 3 columns: empty space on left, logo in center, controls on right */
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(
    45deg,
    #e8d7c6,
    #dcccb7 10px,
    #a89f90 10px,
    #e6c99e 20px
  );
}

/* THE CENTER BLOCK (Previously .left-header) */
.left-header {
  grid-column: 2; /* Forces this block into the exact middle column */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.main-logo {
  width: 280px;
}

.tagline {
  font-size: 14px;
  color: #5a2a2a;
  margin-top: 5px;
  font-weight: bold;
}

.issn {
  font-size: 12px;
  color: #777;
}

/* RIGHT SIDE */
.right-header {
  grid-column: 3; /* Forces this block into the far-right column */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* CONTROLS */
.header-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* FONT SIZE */
.font-controls span {
  cursor: pointer;
  font-weight: bold;
  color: #5a2a2a;
}

/* SEARCH */
.search-box {
  background: #b23a3a;
  color: white;
  padding: 8px 10px;
  border-radius: 50%;
  cursor: pointer;
}

/* SOCIAL */
.header-controls .social-icons a {
  color: #5a2a2a;
  font-size: 20px;
  margin-left: 8px;
  transition: 0.3s;
}

.header-controls .social-icons a:hover {
  color: #b23a3a;
}

/* UL FIX */
.navbar ul {
  display: flex;
  justify-content: center; /* center  */
  align-items: center;
  gap: 30px;

  max-width: 1100px; /* content width control */
  margin: 0 auto; /* center full nav */
  padding: 0 20px; /* two side space */

  list-style: none;
}

/* LINKS */
.navbar a {
  text-decoration: none;
  color: #9c5c5c;
  font-size: 18px;
  font-weight: 600;
}

/* Full Width Border */
.border {
  width: 100vw;

  height: 25px;

  background: #b23a3a;

  margin-left: calc(50% - 50vw);

  margin-top: 40px;
}
/* FOOTER */
.footer {
  background: #e6d6c3;
  margin-top: 50px;
}

/* TOP STRIP */
.strip {
  height: 20px;
  background: repeating-linear-gradient(
    45deg,
    #b23a3a,
    #b23a3a 10px,
    #4b1127 10px,
    #564e17 20px,
    #e6d6c3 20px,
    #e6d6c3 30px
  );
}

/* MAIN CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; /* <-- Reduced from 30px */
  padding: 30px 40px; /* <-- Reduced from 40px 60px */
}

/* COLUMN */
.footer-col h3 {
  margin-bottom: 10px;
  color: #5a2a2a;
}

.footer-logo {
  color: #5a2a2a;
  font-size: 20px; /* <-- Add this if you want the "চরৈবেতি.COM" text smaller */
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 5px; /* <-- Reduced from 8px */
}

.footer-col a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.footer-col a:hover {
  color: #b23a3a;
}

/* SOCIAL */
.social-icons a {
  font-size: 20px;
  margin-right: 10px;
}

/* BOTTOM */
.footer-bottom {
  background: #8f785a;
  text-align: center;
  padding: 15px; /* <-- Reduced from 20px */
  border-top: 1px solid #65543c;
  font-size: 12px; /* <-- Reduced from 14px */
}
/* LOGO IMAGE STYLE */
.logo-img {
  width: 260px; /* adjust size */
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* =========================================
   NAVBAR & BURGER MENU CSS
========================================= */

/* 1. Main Navbar Container */
.navbar {
  background: #000000;
  padding: 15px 30px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 2. Desktop Centered Links */
.desktop-links {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 30px;

  list-style: none;
  margin: 0;
  padding: 0;
}

/* 3. Link Text Styles (applies to both menus) */
.navbar a {
  text-decoration: none;

  color: #f9f3f3;

  font-size: 16px;

  font-weight: 600;

  letter-spacing: 0.5px;

  transition: 0.3s;
}
.navbar a:hover {
  color: #b23a3a;
}

/* 4. Burger Icon (Pinned to right) */
.burger-menu {
  display: none;
  font-size: 20px;
  color: #c17f7f;
  cursor: pointer;
}

/* 5. The Slide-Down Dropdown Menu */
.dropdown-list {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;

  /* THE FIX: Anchor to the right and make it smaller */
  right: 30px; /* Aligns perfectly with your 30px navbar padding */
  width: 250px; /* Makes it a neat, compact box instead of 100% width */

  background: #1f1f1f;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 0 0 8px 8px; /* Bonus: rounds the bottom corners for a polished look! */

  /* Smooth sliding animation */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  z-index: 999;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.dropdown-list.show-menu {
  max-height: 700px;
}

.dropdown-list li {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #333;
}

.dropdown-list li:last-child {
  border-bottom: none;
}

.dropdown-list a {
  display: block;
  padding: 10px 0;
}

/* --- MOBILE RESPONSIVE BEHAVIOR --- */
@media (max-width: 768px) {
  .navbar {
    justify-content: flex-end; /* Keep burger on right */
  }

  /* Hide the horizontal centered links on mobile screens */
  .navbar .desktop-links {
    display: none;
  }
}
.font-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  justify-content: flex-end;
}

.font-controls span {
  cursor: pointer;
  font-weight: bold;
  color: #5a2a2a;
  padding: 4px 8px;
  border-radius: 4px;
  transition: 0.3s;
}

.font-controls span:hover {
  background: #b23a3a;
  color: white;
}
/* Default state */
.search-box,
.social-icons a,
.font-controls span {
  transition: 0.3s;
}

/* Subtle pulse every few seconds */
@keyframes attention {
  0%,
  90%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  95% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Apply slowly */
.search-box {
  animation: attention 6s infinite;
}

.social-icons a {
  animation: attention 8s infinite;
}

.font-controls span {
  animation: attention 10s infinite;
}
/* Card Link */
/*.card-link{
    text-decoration:none;
    color:inherit;
    display:block;
}
    /* Writing Box */
.writing-box {
  width: 100%;
  min-height: 180px;

  margin-top: 15px;
  padding: 15px;

  border: none;
  outline: none;

  resize: vertical;

  border-radius: 12px;

  background: #f9f5ef;

  font-size: 15px;
  line-height: 1.8;

  color: #444;

  font-family: "Noto Sans Bengali", sans-serif;
}

/* Focus Effect */
.writing-box:focus {
  box-shadow: 0 0 0 2px #c8a27a;

  background: white;
}

/* ================= ক্রোড়পত্র ================= */

.krodpotro-section {
  padding: 20px 40px 50px;

  margin-top: 10px;
}
.krodpotro-section {
  border-top: 1px solid rgba(90, 42, 42, 0.15);
}
/* Main Layout */
.krodpotro-grid {
  display: grid;

  grid-template-columns: 1.2fr 2fr;

  gap: 30px;
}

/* Big Card */
.krodpotro-main img {
  height: 100%;

  min-height: 300px;

  object-fit: cover;
}

/* Small Grid */
.small-krod-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  grid-template-rows: repeat(2, 1fr);

  gap: 25px;
}

/* Small Images */
.small-krod-grid a {
  height: 100%;
}

.small-krod-grid img {
  /* height: 180px; */
  height: 100%;

  object-fit: fill;
}

/* Mobile */
@media (max-width: 768px) {
  .krodpotro-grid {
    grid-template-columns: 1fr;
  }

  .small-krod-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= BOTTOM BANNER ================= */

.bottom-banner {
  padding: 40px 20px;

  text-align: center;

  background: rgba(255, 255, 255, 0.45);

  backdrop-filter: blur(3px);
}

.bottom-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 5px 0;
}

/* Decorative Lines */
.banner-line {
  width: 100%;

  height: 2px;

  background: #7a2e2e;

  opacity: 0.5;
}

/* Text */
.banner-text {
  margin: 20px 0;

  font-size: 25px;

  color: #5a2a2a;

  letter-spacing: 3px;

  font-weight: 600;

  font-family: "Noto Sans Bengali", sans-serif;
}
/* ================= শুভেচ্ছাবার্তা ================= */

.greetings-section {
  padding: 60px 40px;

  background: rgba(255, 255, 255, 0.25);
}

/* Title */
.greetings-title {
  text-align: center;

  font-size: 25px;

  color: #5a2a2a;

  margin-bottom: 40px;

  border-bottom: 2px solid #b23a3a;

  display: inline-block;

  padding-bottom: 10px;

  position: relative;

  left: 50%;

  transform: translateX(-50%);
}

/* Grid */
.greetings-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

/* Card */
.greeting-card {
  background: white;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

  transition: 0.3s;
}

.greeting-card:hover {
  transform: translateY(-6px);
}

/* Image */
.greeting-card img {
  width: 100%;

  /* height: 220px; */
  height: 300px;

  /* object-fit: cover; */
  object-fit: fill;
}

/* Content */
.greeting-content {
  padding: 20px;

  text-align: center;
}

/* Name */
.greeting-content h3 {
  color: #5a2a2a;

  margin-bottom: 12px;

  font-size: 22px;
}

/* Message */
.greeting-content p {
  color: #555;

  line-height: 1.7;

  font-size: 15px;
}

/* --- New Profile Layout --- */
.greeting-content .greeting-profile {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 15px;
  margin-bottom: 15px;
}

.greeting-content .greeting-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.greeting-content .greeting-info h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.greeting-content .greeting-info p {
  font-size: 14px;
  margin-bottom: 0;
  color: #777;
}

.greeting-content .greeting-text p {
  text-align: justify;
}
/* ================= সম্পাদকীয় ================= */

.editorial-section {
  padding: 60px 40px;
}

/* Layout */
.editorial-container {
  display: grid;

  grid-template-columns: 2fr 1fr;

  gap: 30px;

  align-items: stretch;
}

/* LEFT */
.editorial-text {
  background: white;

  border-radius: 18px;

  padding: 30px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Title */
.editorial-text h2 {
  font-size: 20px;

  color: #5a2a2a;

  margin-bottom: 20px;

  border-bottom: 2px solid #b23a3a;

  padding-bottom: 10px;
}

/* Writing Area */
.editorial-box {
  width: 100%;

  min-height: 320px;

  border: none;

  outline: none;

  resize: vertical;

  padding: 20px;

  border-radius: 12px;

  background: #f9f5ef;

  font-size: 16px;

  line-height: 1.9;

  color: #444;

  font-family: "Noto Sans Bengali", sans-serif;
}

/* RIGHT */
.editorial-image {
  background: white;

  border-radius: 18px;

  overflow: hidden;

  padding: 20px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

  display: flex;

  flex-direction: column;

  justify-content: flex-start;
}

/* Upload */
.editorial-upload {
  margin-bottom: 15px;
}

/* Image */
.editorial-image img {
  width: 100%;

  height: 100%;

  min-height: 320px;

  object-fit: cover;

  border-radius: 12px;
}

/* Bottom Strip */
.editorial-strip {
  margin-top: 40px;

  padding: 20px;

  text-align: center;

  background: #f1e6d6;

  border-radius: 14px;

  font-size: 30px;

  color: #5a2a2a;

  letter-spacing: 3px;

  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .editorial-container {
    grid-template-columns: 1fr;
  }
}
/* ================= MESSAGE SECTION ================= */

.message-section {
  padding: 60px 40px;
}

/* Grid */
.message-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 40px;
}

/* Card */
.message-card {
  background: white;

  padding: 32px;

  border-radius: 18px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

  transition: 0.3s;

  min-height: 320px;
}
.message-grid {
  align-items: stretch;
}
.message-card:hover {
  transform: translateY(-5px);
}

/* Heading */
.message-card h2 {
  text-align: center;

  color: #5a2a2a;

  margin-bottom: 20px;

  font-size: 28px;

  border-bottom: 2px solid #b23a3a;

  padding-bottom: 10px;
}

/* Message Profile Layout */
.message-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.message-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.message-profile .profile-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f1e6d6;
  color: #5a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
}

.message-profile h3 {
  font-size: 18px;
  color: #5a2a2a;
  margin: 0;
}

/* Message Text */
.message-text {
  font-size: 15px;

  line-height: 1.8;

  color: #444;

  text-align: justify;

  margin-bottom: 12px;

  overflow: hidden;

  position: relative;

  transition: 0.4s ease;

  /* Only 2 lines visible */
  display: -webkit-box;

  -webkit-line-clamp: 2;
  line-clamp: 2;

  -webkit-box-orient: vertical;
}

/* Full Expanded */
.message-text.show-full {
  display: block;

  overflow: visible;
}

/* Button */
.read-more-btn {
  border: none;

  background: none;

  color: #7a2e2e;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.read-more-btn:hover {
  color: #b23a3a;

  letter-spacing: 1px;
}

/* Mobile */
@media (max-width: 768px) {
  .message-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= COMPONENT PAGES (Shruti, Lekhalikhi, interview, archieve,samikkha)================= */

/* Overlay */
.page-overlay {
  background-image: url("background.png");

  backdrop-filter: blur(3px);

  border-radius: 22px;

  padding: 22px;
}
/* Page Title */
.page-title {
  font-size: 30px;

  margin-bottom: 35px;

  padding-bottom: 8px;

  letter-spacing: 1px;
}

/* Featured Layout */
.featured-layout {
  display: grid;

  grid-template-columns: 1.2fr 2fr;

  gap: 25px;

  margin-bottom: 60px;
}

/* Featured Card */
.featured-card {
  background: white;

  border-radius: 22px;

  overflow: hidden;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);

  transition: 0.3s;
}

.featured-card:hover {
  transform: translateY(-6px);
}

/* Featured Image */
.featured-card img {
  width: 100%;

  height: 250px;

  object-fit: cover;
}

/* Featured Content */
.featured-content {
  padding: 16px;
}

.featured-content h2 {
  color: #5a2a2a;

  font-size: 22px;

  margin-bottom: 15px;
}

.featured-content p {
  font-size: 14px;

  line-height: 1.7;

  color: #555;
}

/* Side Grid */
.side-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}

/* Small Card */
.small-card {
  background: white;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

  transition: 0.3s;
}

.small-card:hover {
  transform: translateY(-5px);
}

/* Small Card Image */
.small-card img {
  width: 100%;

  height: 120px;

  object-fit: cover;
}

/* Small Content */
.small-content {
  padding: 13px;

  text-align: center;
}

.small-content h3 {
  color: #5a2a2a;

  margin-bottom: 8px;

  font-size: 15px;
}

.small-content p {
  color: #555;

  line-height: 1.5;

  font-size: 13px;
}

/* Back Button Area */
.back-area {
  text-align: center;

  margin-top: 60px;
}

/* Button */
.back-btn {
  display: inline-block;

  text-decoration: none;

  padding: 10px 24px;

  background: #7a2e2e;

  color: white;

  border-radius: 40px;

  font-size: 14px;

  font-weight: 600;

  transition: 0.3s;
}

.back-btn:hover {
  background: #a63d3d;

  transform: translateY(-3px);

  letter-spacing: 1px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .featured-layout {
    grid-template-columns: 1fr;
  }

  .side-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 34px;
  }
}
body {
  overflow-x: hidden;
}
.video-card {
  width: 100%;

  min-width: 0;
}
.gallery-image,
.video-card img {
  width: 100%;

  max-width: 100%;

  height: 180px;

  object-fit: cover;

  display: block;
}
/* ================= FULL MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  /* NAVBAR */
  .navbar {
    padding: 12px 15px;
  }

  .navbar a {
    font-size: 16px;
  }

  .burger-menu {
    display: block;
    width: 100%;
    text-align: right;
  }

  .dropdown-list {
    right: 15px;
    width: calc(100% - 30px);
  }

  /* HEADER */
  .header-top {
    grid-template-columns: 1fr;

    text-align: center;

    padding: 20px;
  }

  .left-header,
  .right-header {
    grid-column: auto;

    align-items: center;
  }

  .font-controls {
    justify-content: center;
    margin-top: 15px;
  }

  .header-controls {
    justify-content: center;
    margin-top: 10px;
  }

  .main-logo {
    width: 180px;
  }

  /* SECTION PADDINGS */
  .krodpotro-section,
  .greetings-section,
  .editorial-section,
  .message-section {
    padding: 40px 15px;
  }

  /* FEATURED GRID */
  .featured-grid {
    grid-template-columns: 1fr;

    padding: 0 15px;
  }

  /* VIDEO GRID */
  .small-videos-grid {
    grid-template-columns: 1fr;
  }

  /* MESSAGE SECTION */
  .message-grid {
    grid-template-columns: 1fr;
  }

  .message-card {
    padding: 20px;
    min-height: auto;
  }

  /* GREETING SECTION */
  .greetings-grid {
    grid-template-columns: 1fr;
  }

  /* EDITORIAL */
  .editorial-container {
    grid-template-columns: 1fr;
  }

  .editorial-text {
    padding: 20px;
  }

  .editorial-image img {
    min-height: 220px;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;

    padding: 30px 20px;

    text-align: center;
  }

  /* TITLES */
  .section-title,
  .page-title {
    font-size: 26px;
  }

  /* CARDS */
  .card img,
  .gallery-image {
    height: 180px;
  }

  .cover-card img {
    height: auto;
    min-height: auto;
  }

  /* KRODPOTRO IMAGE */
  .krodpotro-main img {
    height: auto;
    min-height: auto;
  }

  /* SOCIAL ICONS */
  .header-controls .social-icons a {
    font-size: 22px;
  }
}

/* ================= IMAGE MODAL ================= */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}
.image-modal img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}
.image-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: 0.3s;
}
.image-modal .close-btn:hover {
  color: #b23a3a;
}
