/* ==============================
   Layout Styles for Header/Footer/H1
   ============================== */

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

header .logo img {
  height: 60px;
}

header nav a {
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
  color: #80336b;
}

header nav a:hover {
  color: #f7b948;
}

/* Footer */
.site-footer {
  background: #fff;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #80336b;
  font-weight: 500;
}

.footer-links a:hover {
  color: #f7b948;
}

.social-icons {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: #80336b; /* purple base */
}

.social-icons a:hover {
  color: #f7b948; /* gold hover */
}

.social-icons a:active {
  color: #d49c2f; /* darker gold click */
}

.social-icons svg {
  width: 28px;
  height: 28px;
  fill: currentColor !important; /* force follow link color */
  transition: fill 0.3s ease;
}

.footer-address {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* Page Titles */
.page-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #80336b;
  text-align: center;
  margin: 20px 0;
}

.page-subtitle,
.results-count {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}.social-icons a {
  color: #80336b; /* purple base */
  text-decoration: none;
}

.social-icons a:hover {
  color: #f7b948; /* gold hover */
}

.social-icons a:active {
  color: #d49c2f; /* darker gold click */
}

.social-icons svg {
  fill: currentColor !important;
  transition: fill 0.3s ease;
}
.social-icons a {
  color: #80336b !important; /* purple base */
  text-decoration: none !important;
}

.social-icons a:hover {
  color: #f7b948 !important; /* gold hover */
}

.social-icons a:active {
  color: #d49c2f !important; /* darker gold click */
}

.social-icons svg {
  fill: currentColor !important;
  transition: fill 0.3s ease !important;
}
