

body{
    font-family: Arial, Helvetica, sans-serif;
}

/* Header Styles */
.header {
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}


.logo {
  flex: 0 0 auto; /* Ensures logo stays at its natural size */
}



/* Navigation */
nav {
  text-align: center;
  margin-top: 10px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 5px;
  background: rgb(240 239 239);
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: lighter;
  font-family: Arial, Helvetica, sans-serif;
  transition: color 0.3s;
  padding: 5px 0;
  background: none;
  padding: 15px 30px;
}

.nav-menu a:hover {
  color: #333;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
}


.cta-button {
    background: #9C7411;
    color: white;
    padding: 12px 30px;
    border: none;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
    border-radius: 3px;
}

.cta-button:hover {
    background: #f0ebec;
    text-decoration: none;
    color: white;
}

.hero-visual {
    flex: 1;
    text-align: center;
}

.newspaper-header {
    background: #333;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

.newspaper-content {
    padding: 20px;
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
}

.newspaper-content h3 {
    margin-bottom: 10px;
    font-size: 14px;
}

.hero-nav:hover {
    background: rgba(0,0,0,0.7);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* Search Section */
.search-section {
    background: white;
    padding: 60px 0;
}

.search-container {
    max-width: auto;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.search-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.search-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.search-form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.search-input, .search-select {
    padding: 12px 15px;
    border: 2px solid #ddd;
    font-size: 16px;
    min-width: 200px;
    border-radius: 3px;
}

.search-input:focus, .search-select:focus {
    outline: none;
}

.search-button {
    background: #333;
    color: white;
    padding: 12px 30px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 3px;
}

.search-button:hover {
    background: white;
    color: #333;
}

/* Features Section */


.feature-bar {
  /* base look */
  --sep-color: rgba(255,255,255,0.35);  /* separator color */
  --sep-width: 4px;                     /* separator thickness */
  --sep-height: 56px;                   /* separator height */
  --text-color: #cfd8dc;                /* body text on dark bg */
  --title-color: #b0bec5;               /* heading color */
  --bg: #1f1f1f;                        /* dark background */
  --container-max: 1200px;
  --x-pad: 16px;

  background: var(--bg);
  color: var(--text-color);
  font-family: Arial, Helvetica, sans-serif; /* page-level default if needed */
  padding: 24px 0 28px;
}

/* Title container (full width) */
.feature-bar .features-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--x-pad);
  text-align: center;
}

/* Title */
.feature-bar .features-title {
  margin: 0 0 12px 0;
  text-align: center;
  color: var(--title-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: clamp(18px, 2.6vw, 28px);
}

/* Content container (grid wrapper) - full width */
.feature-bar .container {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Five items in a row with separators between them */
.feature-bar .feature-grid {
  display: flex;
  align-items: center;
  justify-content: stretch;
  width: 100%;
  gap: 0;
}

/* Each item */
.feature-bar .feature-item {
  position: relative;
  flex: 1 1 0;        /* equal widths to fill entire width */
  min-width: 0;       /* prevents overflow on small screens */
  padding: 0 40px;    /* increased padding for better spacing */
  text-align: center; /* center alignment */
  line-height: 1.35;
}

/* Vertical grey bar BETWEEN items (not before first item) */
.feature-bar .feature-item + .feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: var(--sep-width);
  height: var(--sep-height);
  background: var(--sep-color);
  border-radius: 2px;
}

/* Optional: slightly lighter text inside items */
.feature-bar .feature-item { color: #d7dde1; }

/* -------------------------
   Responsive (stacked view)
   ------------------------- */
@media (max-width: 768px) {
  .feature-bar {
    --sep-width: 80%;   /* reused as horizontal bar width below */
    --sep-height: 2px;  /* reused as horizontal bar height below */
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .feature-bar .features-container {
    padding: 0 15px;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .feature-bar * {
      word-break: normal !important;
      overflow-wrap: break-word !important;
      white-space: normal !important;
      hyphens: manual !important;
      max-width: 100%;
      box-sizing: border-box !important;
  }

  .feature-bar .feature-grid {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .feature-bar .feature-item {
    padding: 14px 0;
    text-align: center;
  }

  /* Convert separators to horizontal lines between stacked items */
  .feature-bar .feature-item + .feature-item::before {
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    width: var(--sep-width);
    height: var(--sep-height);
  }
}

/* ------------------------------
   High-contrast/print friendliness
   ------------------------------ */
@media print {
  .feature-bar { background: #fff; color: #000; }
  .feature-bar .feature-item + .feature-item::before {
    background: #777;
  }
}



/* Info Blocks */
.info-blocks {
    width: 100%;
}

.info-row {
    display: flex;
    flex-wrap: nowrap; /* keep side-by-side on desktop */
    min-height: 300px;
}

/* Columns */
.info-col {
    width: 50%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Base Colors */
.info-col.white {
    background-color: #ffffff;
    color: #333;
}

.info-col.grey {
    background-color: #f5f5f5;
    color: #333;
}

/* Alternate Row Styling (excluding last row) */
.info-row:not(.last-row):nth-child(odd) .info-col:first-child {
    background-color: #ffffff; /* left white */
}

.info-row:not(.last-row):nth-child(odd) .info-col:last-child {
    background-color: #f5f5f5; /* right grey */
}

.info-row:not(.last-row):nth-child(even) .info-col:first-child {
    background-color: #f5f5f5; /* left grey */
}

.info-row:not(.last-row):nth-child(even) .info-col:last-child {
    background-color: #ffffff; /* right white */
}

/* Last row: full black */
.last-row .info-col {
    background-color: #000000;
    color: white;
}


/* Info Sections */
.info-sections {
    padding: 80px 0;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 30px;
}

.info-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.info-description {
    color: #666;
    line-height: 1.6;
}

.info-visual {
    width: 150px;
    height: 200px;
    background: linear-gradient(45deg, #c8102e, #a00d26);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
}

/* Search Results Styles */
.search-results-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.search-results-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Container Layout */
.main-container {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: calc(100vh - 200px); /* Adjust based on header/footer height */
}

/* Filters Sidebar */
.filters-sidebar {
    flex: 0 0 300px; /* Fixed width, won't shrink */
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    height: fit-content;
    position: sticky;
   
}

/* Content Area */
.content-area {
    flex: 1; /* Take remaining space */
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    overflow-y: auto; /* Add scroll when content exceeds height */
    display: flex;
    flex-direction: column;
}

/* Filter Section Styles */
.filter-section {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 1px solid #eee;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-section h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 1px;
    padding-bottom: 1px;
    border-bottom: 2px solid #f0f0f0;
}

/* Date Filter Styles */
.direct-date-input {
    margin-bottom: 15px;
}

.direct-date-input label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.direct-date-input input[type="date"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.filter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-form input,
.filter-form select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.filter-form button {
    background: #c8102e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
}

.filter-form button:hover {
    background: #a00d26;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.result-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}


.result-placeholder {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ccc;
}


.result-date,
.result-region {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}


.view-details-btn {
    background: #333;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    transition: background 0.3s;
    display: inline-block;
}

.view-details-btn:hover {
    background: #555;
    text-decoration: none;
    color: white;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

/* Content Area Scrollbar Styling */
.content-area::-webkit-scrollbar {
    width: 8px;
}

.content-area::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.content-area::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.content-area::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Filters Sidebar Scrollbar Styling */
.filters-sidebar::-webkit-scrollbar {
    width: 6px;
}

.filters-sidebar::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
}

.filters-sidebar::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 3px;
}

.filters-sidebar::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

/* Results Grid in Content Area */
.content-area .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
    overflow-y: visible; /* Let parent handle scrolling */
}

/* Pagination Styling */
.pagination {
    margin-top: auto; /* Push to bottom of content area */
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid #eee;
    flex-shrink: 0; /* Don't shrink when content overflows */
}

.pagination button,
.pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.pagination button:hover:not(:disabled) {
    background: #e9ecef;
    border-color: #adb5bd;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination .current {
    background: #595959;
    color: #595959;
    border-color: 1px solid #595959;
}

.pagination .nav-btn {
    font-weight: bold;
}

.pagination .page-info {
    font-size: 13px;
    color: #666;
    border: none;
    background: none;
    cursor: default;
    margin: 0 10px;
}

/* Footer */

/* ---------- Base ---------- */
.footer {
  background: #181818;          /* dark like the screenshot */
  color: #fff;
  padding: 48px 0 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Top grid ---------- */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr; /* left wider than right */
  gap: 80px;
  margin-bottom: 28px;
}

/* Title + list resets (FIX) */
.footer-section h4 {
  font-size: 18px;
  margin: 0 0 16px;
  color: #fff;
}
.footer-section ul {
  list-style: none;     /* remove bullets */
  margin: 0;
  padding: 0;
}
.footer-section ul li {
  list-style: none;     /* ensure no bullets on li either */
  margin-bottom: 10px;
}

/* Global footer links (apply to both columns) */
.footer a,
.footer a:visited {
  color: #cfcfcf;
  text-decoration: none;
}
.footer a:hover,
.footer a:focus-visible {
  color: #fff;
  text-decoration: none;
}

/* Brand title */
.brand-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin: 0 0 22px;
}

/* Contact block (works whether you use <ul><li> or <p>) */
.contact-block p,
.footer-section ul li {   /* keep spacing consistent */
  margin: 6px 0;
  color: #d8d8d8;
  font-size: 15px;
}
.contact-block strong,
.footer-section ul li strong {
  color: #fff;
  font-weight: 700;
}

/* Right column links */
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { transition: color .25s ease; }

/* ---------- Social icons ---------- */
.social-block h5 {
  margin: 22px 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.social-list {
  list-style: none;   /* ensure no bullets */
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #f1f1f1;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  background: transparent;
  transition: border-color .2s ease, transform .2s ease, background-color .2s ease;
}
.social-btn:hover,
.social-btn:focus-visible {
  border-color: #fff;
  transform: translateY(-1px);
  background-color: rgba(255,255,255,0.05);
}

/* ---------- Bottom bar ---------- */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;  /* copyright left, cards right */
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid #2b2b2b;
  color: #bdbdbd;
  font-size: 14px;
}

/* If you still have a simple "Follow Us" list in the bottom bar */
.follow-us ul { list-style: none; margin: 0; padding: 0; }
.follow-us li { list-style: none; }

/* Payment logos */
.card-logos {
  list-style: none;    /* remove bullets */
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .card-logos {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-btn,
  .footer a { transition: none; }
}

/* Tablet Layout */
@media (max-width: 1024px) and (min-width: 769px) {
    .main-container {
        padding: 15px;
    }

    .filters-sidebar {
        flex: 0 0 250px;
    }

    .content-area .results-grid {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    }
}

