/* =====================================================
   NOVOSTAVBY V PRAZE - Modern Design
   Color Palette:
   - Primary: #1e3a34 (dark green)
   - Accent: #c47f41 (warm copper)
   - Background: #faf7f2 (warm cream)
   - Cards: #ffffff
   - Text: #2d2d2d
   - Light green: #e8f0ed
   ===================================================== */

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: #faf7f2;
  color: #2d2d2d;
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: #1e3a34;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #c47f41;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */

.top-bar {
  background-color: #1e3a34;
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.7);
}

.top-bar a:hover {
  color: #c47f41;
}

.header {
  background: linear-gradient(135deg, #1e3a34 0%, #2d524a 100%);
  padding: 20px 0;
  position: relative;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.header-brand {
  text-align: left;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.logo a {
  color: inherit;
  text-decoration: none;
}

.logo a:hover {
  color: #c47f41;
}

.tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 300;
}

.header-nav {
  display: flex;
  gap: 32px;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c47f41;
  transition: width 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: #ffffff;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

/* =====================================================
   DISTRICT NAVIGATION
   ===================================================== */

.district-nav {
  background-color: #ffffff;
  padding: 20px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.district-nav-label {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 12px;
  text-align: center;
}

.district-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.district-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px 10px;
  background-color: #e8f0ed;
  color: #1e3a34;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.district-link:hover,
.district-link.active {
  background-color: #1e3a34;
  color: #ffffff;
}

.district-link.external {
  background-color: transparent;
  border: 1px solid #ddd;
  color: #666;
}

.district-link.external:hover {
  background-color: #c47f41;
  border-color: #c47f41;
  color: #ffffff;
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
  padding: 30px 0;
}

.hero-text {
  margin: 0 0 30px 0;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  text-align: center;
}

/* Search Box */
.search-box {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  background: #ffffff;
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.search-box input[type="text"] {
  flex: 1;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  outline: none;
  background: transparent;
}

.search-box input[type="submit"],
.search-box button {
  background: linear-gradient(135deg, #c47f41 0%, #d4944f 100%);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-box input[type="submit"]:hover,
.search-box button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(196, 127, 65, 0.4);
}

/* =====================================================
   SECTION TITLES
   ===================================================== */

.section-title {
  font-size: 1.8rem;
  color: #1e3a34;
  margin-bottom: 30px;
}

/* =====================================================
   ADSENSE BANNER
   ===================================================== */

.adsense-banner {
  padding: 20px 0;
  background-color: #faf7f2;
}

/* =====================================================
   PROJECT CARDS
   ===================================================== */

.projects-section {
  padding: 30px 0 60px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.project-row {
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.project-row-image {
  flex: 0 0 350px;
  min-height: 100%;
}

.project-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-row-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .project-row {
    flex-direction: column;
  }

  .project-row-image img {
    width: 100%;
    max-width: 100%;
  }
}

.project-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.project-card-image {
  display: block;
}

.project-card-image img {
  width: 100%;
  height: auto;
  border-radius: 16px 16px 0 0;
}

.project-card-content {
  padding: 24px;
}

.project-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e3a34;
  margin-bottom: 10px;
  line-height: 1.3;
}

.project-card-title a {
  color: inherit;
}

.project-card-title a:hover {
  color: #c47f41;
}

.project-card-location {
  font-size: 1rem;
  color: #9a6232;
  margin-bottom: 8px;
}

.project-card-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.project-card-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #1e3a34;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.project-card-link:hover {
  color: #c47f41;
  gap: 10px;
}

.project-card-link::after {
  content: '\2192';
  transition: transform 0.3s ease;
}

.project-card-link:hover::after {
  transform: translateX(4px);
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #1e3a34 0%, #2d524a 100%);
  color: #ffffff;
}

.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 58, 52, 0.35);
}

.btn-accent {
  background: linear-gradient(135deg, #c47f41 0%, #d4944f 100%);
  color: #ffffff;
}

.btn-accent:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(196, 127, 65, 0.35);
}

.btn-outline {
  background: transparent;
  color: #1e3a34;
  border: 2px solid #1e3a34;
}

.btn-outline:hover {
  background: #1e3a34;
  color: #ffffff;
}

.text-center {
  text-align: center;
}

/* =====================================================
   PROJECT DETAIL
   ===================================================== */

.project-detail {
  padding: 40px 0 60px 0;
}

.project-detail-content {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 40px;
  margin-bottom: 30px;
}

.project-detail-title {
  font-size: 2rem;
  color: #1e3a34;
  margin-bottom: 8px;
  line-height: 1.3;
}

.project-detail-location {
  font-size: 1.1rem;
  color: #9a6232;
  margin-bottom: 24px;
}

.project-detail-location a {
  color: #c47f41;
  text-decoration: none;
}

.project-detail-location a:hover {
  text-decoration: underline;
}

.project-detail-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.project-detail-completion {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.project-detail-address {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 8px;
}

.project-detail-address a {
  color: #1e3a34;
  font-weight: 600;
  font-size: 1.1rem;
}

.project-detail-address a:hover {
  color: #c47f41;
}

.project-detail-developer {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.project-detail-developer a {
  color: #1e3a34;
  font-weight: 600;
}

.project-detail-developer a:hover {
  color: #c47f41;
}

.project-detail-image {
  margin-top: 30px;
}

.project-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .project-detail-content {
    padding: 24px;
  }

  .project-detail-title {
    font-size: 1.5rem;
  }

}

/* =====================================================
   FEATURED / RECOMMENDED
   ===================================================== */

.featured-section {
  background: linear-gradient(135deg, #e8f0ed 0%, #f0f5f3 100%);
  padding: 30px 0 60px 0;
  margin: 20px 0 0 0;
}

.featured-card {
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.featured-card-image {
  flex: 0 0 40%;
  max-width: 40%;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .featured-card {
    flex-direction: column;
  }

  .featured-card-image {
    flex: none;
    max-width: 100%;
  }

  .featured-card-image img {
    height: auto;
  }
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: linear-gradient(135deg, #1e3a34 0%, #162b27 100%);
  color: #ffffff;
  padding: 50px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #c47f41;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #c47f41;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: #c47f41;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 1024px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
  }

  .header-brand {
    text-align: center;
  }

  .header-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .header-nav a {
    font-size: 0.8rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 0.9rem;
  }

  .header {
    padding: 15px 0;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-text {
    font-size: 1rem;
  }

  .search-box {
    flex-direction: column;
    border-radius: 16px;
    padding: 12px;
  }

  .search-box input[type="text"] {
    padding: 14px;
    text-align: center;
  }

  .search-box input[type="submit"],
  .search-box button {
    width: 100%;
    padding: 14px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .district-links {
    gap: 6px;
  }

  .district-link {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .projects-section {
    padding: 40px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .project-card-content {
    padding: 20px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* =====================================================
   EMPTY STATE
   ===================================================== */

.empty-state {
  background: #ffffff;
  border: 2px dashed #ddd;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  color: #666;
}

.empty-state p {
  font-size: 1.05rem;
  margin: 0;
}

/* =====================================================
   UTILITIES
   ===================================================== */

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.py-1 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-2 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-3 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-4 {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* =====================================================
   CONTENT SECTION
   ===================================================== */

.content-section {
  padding: 40px 0 60px 0;
}

.content-text {
  max-width: 800px;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.content-text h3 {
  color: #1e3a34;
  font-size: 1.3rem;
  margin: 30px 0 15px 0;
}

.content-text ul {
  margin: 15px 0;
  padding-left: 25px;
}

.content-text li {
  margin-bottom: 8px;
}

.content-text p {
  margin-bottom: 15px;
}

/* =====================================================
   INFO CARDS & COMPONENTS
   ===================================================== */

.content-wrapper {
  max-width: 900px;
}

.intro-text {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 45px;
}

.intro-text p {
  margin: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.content-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.content-card h3 {
  color: #1e3a34;
  font-size: 1.15rem;
  margin: 0 0 14px 0;
  font-weight: 600;
}

.content-card p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.styled-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styled-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #555;
  line-height: 1.5;
}

.styled-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #c47f41;
  font-weight: bold;
}

.styled-list li:last-child {
  margin-bottom: 0;
}

.note {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
  grid-column: 1;
}

@media (max-width: 900px) {
  .content-main {
    order: 1;
  }

  .content-sidebar {
    order: 2;
  }

  .note {
    order: 3;
  }
}

/* Sidebar CTA Cards */
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-card {
  background: linear-gradient(135deg, #1e3a34 0%, #2d524a 100%);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.cta-card h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0 0 16px 0;
}

.email-link {
  display: inline-block;
  background: #c47f41;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.email-link:hover {
  background: #d4944f;
  color: #ffffff;
  transform: translateY(-2px);
}

.email-inline {
  color: #c47f41;
  font-weight: 600;
  text-decoration: underline;
}

.email-inline:hover {
  color: #1e3a34;
}

.cta-secondary {
  background: #ffffff;
  border: 1px solid #e5e5e5;
}

.cta-secondary h3 {
  color: #1e3a34;
}

.cta-secondary p {
  color: #666;
}

.cta-secondary .btn-outline {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.phone-number {
  display: inline-block;
  background: #c47f41;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
}

.business-info {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.business-info small {
  color: #888;
  font-size: 0.85rem;
}

/* =====================================================
   HOMEPAGE LAYOUT - Projects + News
   ===================================================== */

.homepage-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .homepage-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.projects-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.news-column {
  display: flex;
  flex-direction: column;
}

.news-column .news-sidebar {
  flex: 1;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .projects-grid-2x2 {
    grid-template-columns: 1fr;
  }
}

/* News Sidebar */
.news-sidebar {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.news-sidebar-title {
  font-size: 1.8rem;
  color: #1e3a34;
  margin: 0 0 30px 0;
  padding-bottom: 0;
  border-bottom: none;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.news-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.news-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.news-item-date {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 6px;
  font-weight: 600;
}

.news-item-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.news-item-text a {
  color: #9a6232;
  font-weight: 500;
}

.news-item-text a:hover {
  text-decoration: underline;
}

.news-analysis-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.95rem;
  color: #9a6232;
  font-weight: 600;
}

.news-analysis-link:hover {
  color: #1e3a34;
}


/* =====================================================
   NEWS ARCHIVE PAGE
   ===================================================== */

.news-archive-section {
  padding: 40px 0 60px 0;
}

.news-archive-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.news-archive-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding: 24px;
}

.news-archive-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news-archive-item-date {
  font-size: 0.95rem;
  color: #888;
  font-weight: 600;
}

.news-archive-item-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.news-archive-item-badge.novinka {
  background: #e8f0ed;
  color: #1e3a34;
}

.news-archive-item-badge.analyza {
  background: #fff3e6;
  color: #c47f41;
}

.news-archive-item-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.news-archive-item-text a {
  color: #9a6232;
  font-weight: 500;
}

/* Analysis Detail Page */
.analysis-detail-section {
  padding: 40px 0 60px 0;
}

.analysis-detail-content {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 40px;
}

.analysis-detail-title {
  font-size: 1.8rem;
  color: #1e3a34;
  margin-bottom: 24px;
  line-height: 1.3;
}

.analysis-detail-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

.analysis-detail-text p {
  margin-bottom: 16px;
}

.analysis-back-link {
  display: inline-block;
  margin-top: 30px;
  font-weight: 600;
  color: #1e3a34;
}

.analysis-back-link:hover {
  color: #c47f41;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination a {
  display: inline-block;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #1e3a34;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: #1e3a34;
  color: #ffffff;
  border-color: #1e3a34;
}