/**
 * @file
 * Subtheme specific CSS.
 *
 * theme.css → Handles backgrounds, colors, and typography.
 *
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
  font-family: 'Arial', sans-serif; /* Example font; adjust as needed */
  background-color: #f8f9fa; /* Light background for the page */
  color: #ef6602;
}

.whole-header{
  background:#2a2d3b;
  color: #f8f9fa;
}

.logo-area h1 {
    position: absolute;
    /* text-align: center; */
}

/* 2. Header Sections */
.header-right {
  display: flex;
  align-items: center; /* Center items vertically */
}
.main-menu-area,
.main-header{
  width: 1200px;
  margin: auto;
}

.header-left {
  display: flex;
  align-items: center; /* Align items like the menu icon */
  gap: 10px; /* Space between elements, e.g., button and language switcher */
}

/* 3. Navigation Bar */
.navigation-bar {
  display: flex;
  align-items: center; /* Center content vertically */
}


/* 6. Footer Enhancements */
footer {
  padding: 40px 0; /* Add padding for better spacing */
}

footer .col-12 col-md-3 {
  /* Target the footer columns */
  text-align: left; /* Align text to left for readability */
}

footer .row {
  margin-bottom: 20px; /* Space between footer rows */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .top-utility-bar {
    padding: 5px 0; /* Reduce padding on smaller screens */
  }

  .news-ticker {
    height: 30px; /* Smaller height for mobile */
    font-size: 0.9rem; /* Smaller text */
  }

  .slideshow {
    height: 250px; /* Reduce slideshow height on mobile */
  }

  footer {
    padding: 20px 0; /* Less padding on mobile */
  }
}
