body {
  font-family: "Inter", sans-serif;
  background-color: #f5f6f8;
  margin: 0;
  color: #212529;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main-header {
  padding: 0.33rem 3rem;
  background-color: #fff;
  border-bottom: 1px solid #dee2e6;
  position: relative;
}

.logo-img {
  height: 50px;
  width: auto;
}
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    text-align: center;
  }

  .main-header > div {
    width: 100% !important;
    justify-content: center !important;
    margin-bottom: 0.5rem;
  }

  .main-title {
    font-size: 1.1rem;
  }

  .logo-img {
    height: 36px;
  }
}

.main-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  font-family: "Montserrat", sans-serif;
}

.main-title .highlight {
  color: #ff6200;
}

.hero-section {
  background-color: #e9ecef;
  padding-top: 35px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 55px;
  text-align: center;
}

.hero-section h2 {
  font-size: 2rem;
  font-weight: 700;
  max-width: 90%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-section h2 {
    font-size: 1.5rem;
  }
}

.hero-section span {
  color: #ff6200;
}

.search-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  max-width: 900px;
  margin: -50px auto 40px;
}

.search-controls .form-control,
.search-controls .form-select {
  border-radius: 10px;
}

.search-controls .btn {
  border-radius: 10px;
  background-color: #ff6200;
  color: white;
}

@media (max-width: 768px) {
  .search-card .row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .search-card .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  #clearBtn {
    margin-bottom: 0;
  }
}

.edition-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 100%;
  max-width: 300px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #e0e0e0;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.edition-img-container {
  height: auto;
  background-color: #f9f9f9;
  overflow: hidden;
}

.edition-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.edition-card:hover .edition-img {
  transform: scale(1.02);
}

.edition-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex-grow: 1;
}

.edition-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #212529;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.edition-date {
  font-size: 0.9rem;
  color: #6c757d;
  /* margin-bottom: 0.75rem; */
}

.edition-button {
  background-color: #ff6200;
  color: #fff;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 5px 12px rgba(255, 98, 0, 0.25);
  text-decoration: none;
}

.edition-button:hover,
.edition-button:focus {
  background-color: #e75a00;
  transform: translateY(-2px);
}

/* --- Responsive Layout --- */

/* Grid wrapper (editions-row) */
#editions-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0 1rem;
}

/* Adjust card image height on smaller screens */
@media (max-width: 576px) {
  .edition-card {
    max-width: 100%;
    margin: 0 auto;
  }

  .edition-img-container {
    height: 160px;
  }

  .edition-title {
    font-size: 1rem;
  }

  .edition-button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}
/* 
.footer {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  background-color: #ffffff;
  color: #6c757d;
}

.footer h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
}

.footer a {
  color: #ff6200;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .footer h5 {
    font-size: 1.1rem;
  }

  .footer p {
    font-size: 0.9rem;
  }
} */
.editions-section {
  padding-bottom: 3rem; /* Add this */
}

.footer-48201 {
  background-color: #000000;
  color: #ffffff;
  padding: 1.5rem 0 1.5rem;
  font-family: "Poppins", sans-serif;
}

.footer-48201 h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.footer-48201 p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.footer-48201 .text-muted {
  color: #ffffff;
  font-size: 0.85rem;
}

.footer-48201 a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-48201 a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-48201 .nav-links {
  list-style: none;
  padding: 0;
}

.footer-48201 .nav-links li {
  margin-bottom: 0.5rem;
}

.footer-48201 .nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-48201 .nav-links li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-48201 .footer-site-logo {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.footer-48201 .social-icon-link .bi {
  color: #ffffff;
  transition: color 0.3s ease;
  padding: 2px;
  font-size: 1rem;
}

.footer-48201 .social-icon-link:hover .bi.bi-youtube {
  color: #ff0000;
}

.footer-48201 .social-icon-link:hover .bi.bi-instagram {
  color: #e1306c;
}

.footer-48201 .social-icon-link:hover .bi.bi-twitter-x {
  color: #ffffff;
}

.footer-48201 .copyright {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-48201 .copyright small {
  font-size: 0.8rem;
  color: #ffffff;
}

.footer-48201 #copyright-footer {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-48201 #copyright-footer:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-48201 h3 {
    font-size: 1rem;
  }

  .footer-48201 p {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .footer-48201 .nav-links li a {
    font-size: 0.8rem;
  }

  .footer-48201 .social-icon-link .bi {
    font-size: 0.95rem;
  }

  .footer-48201 .copyright {
    margin-top: 1.5rem;
    padding-top: 0.75rem;
  }

  .footer-48201 .copyright small {
    font-size: 0.75rem;
  }
}

/* Add some spacing between footer sections */
.footer-48201 .col-md {
  margin-bottom: 1rem;
}

/* Style the QR code section */
.footer-48201 .qr-section {
  text-align: center;
}

.footer-48201 .qr-section img {
  max-width: 100px;
  height: auto;
  margin: 0.75rem auto;
}

.header-text {
  padding-right: 120px;
}
.logo-sm {
  width: 40px;
  height: auto;
}

.logo-lg {
  width: 120px;
  height: auto;
}

.mobile-logo {
  display: none;
}

.desktop-logo {
  width: 290px;
}

@media (max-width: 768px) {
  .main-header {
    flex-direction: row;
    text-align: center;
    justify-content: space-around;
    padding: 10px 0;
  }
  .header-text {
    padding-right: 0px;
  }
  .main-title {
    padding-left: 0px;
    font-size: 1.2rem;
  }
  .main-header > div {
    width: 100%;
  }

  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
    width: 60px;
    height: auto;
  }

  .logo-lg {
    width: 100px;
    margin-right: 5px;
  }

  .motto {
    font-size: 0.9rem;
  }

  .btn-outline-warning {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }
  .hero-section {
    font-family: "Cup Cakes", cursive;
    background: linear-gradient(1deg, #dcd9ca, #aca793);
  }
}
