/* =====================================
   🔤 Global Styles
===================================== */
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* =====================================
   🔝 Header & Navigation Bar
===================================== */
.site-header {
  display: flex;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 65px;
  width: 100%;
  background: #e7e7e7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
  box-shadow: 0 3px 4px #ccc;
  z-index: 100;
}

.logo img {
  height: 65px;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

nav ul li {
  margin: 0 5px;
}

nav ul li a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

nav ul li a.active,
nav ul li a:hover {
  color: #ff0000;
  background: #fff;
}


/* ==============================
   🍔 Menu Icon
============================== */
nav .menu-btn i {
  color: #000;
  font-size: 30px;
  cursor: pointer;
  display: none;
}

input[type="checkbox"] {
  display: none;
}

/* =====================================
   📱 Responsive: Tablet & Mobile
===================================== */
@media (max-width: 1000px) {
  nav {
    padding: 0 40px 0 35px;
  }
}

@media (max-width: 920px) {
  nav {
    padding: 0 40px 0 10px;
  }
  nav .menu-btn i {
    display: block;
  }

  #click:checked ~ .menu-btn i::before {
    content: "\f00d";
    color: #ff0000;
  }

  nav ul {
    position: fixed;
    top: 65px;
    left: -100%;
    background: #cce4fe;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }

  #click:checked ~ ul {
    left: 0;
  }

  nav ul li {
    width: 100%;
    margin: 40px 0;
  }

  nav ul li a {
    color: black;
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  #click:checked ~ ul li a {
    margin-left: 0;
  }

  nav ul li a.active,
  nav ul li a:hover {
    background: none;
    color: #ff0000;
    font-weight: bold;
  }

  .theme-toggle-btn {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
}

/* =====================================
   🔻 Footer Base
===================================== */
.site-footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
}

/* =====================================
   🔹 Footer Sections
===================================== */

/* ---------- Left Section ---------- */
.footer-left {
  width: 30%;
  margin-bottom: 20px;
}

.footer-left .logo img {
  width: 120px;
  height: auto;
}

.footer-left .footer-description {
  margin-top: 15px;
  font-size: 16px;
  color: #ccc;
}

/* ---------- Middle & Right Section Layout ---------- */
.footer-middle,
.footer-right {
  width: 30%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Headings ---------- */
.footer-left h4,
.footer-middle h4,
.footer-right h4,
.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #816603;
  color: #ffffff;
  padding: 8px;
  border-radius: 4px;
}

/* =====================================
   🔹 Footer Links (Middle)
===================================== */

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.footer-links li a i {
  margin-right: 8px;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links li a:hover,
.footer-links li a:hover i {
  color: #ffcc00;
}

/* =====================================
   🔹 Contact Info (Right)
===================================== */

.contact-info-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.contact-info-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-info-list li span {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.contact-info-list li i {
  color: #ffcc00;
  margin-right: 8px;
  font-size: 18px;
}

.contact-info-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.contact-info-list a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

/* =====================================
   🔹 Social Media
===================================== */
.social-media {
    display: flex; /* Flexbox to align the icons */
    gap: 25px; /* Space between icons */
    justify-content: flex-start; /* Align icons to the left (for larger screens) */
    align-items: center; /* Center icons vertically */
}

.social-media a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Use inherited text color */
    font-size: 2rem; /* Adjust the icon size */
    transition: transform 0.3s ease, color 0.3s ease; /* Add smooth transition for hover effects */
}

.social-media a:hover {
    color: #0073e6; /* Change color on hover (example blue color) */
    transform: scale(1.2); /* Slightly scale the icon on hover */
}

/* =====================================
   🔹 Footer Bottom
===================================== */

.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  color: #ccc;
}

.footer-bottom p {
  margin: 0;
}

/* =====================================
   📱 Responsive (Max Width: 1000px)
===================================== */
@media screen and (max-width: 1000px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-middle ul,
  .contact-info-list {
    display: inline-block;
    text-align: center;
  }
}
