/* General Header Styles */
header {
  background-color: #f8f8f8;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
header h1 {
  margin: 0;
  font-size: 2.2rem;
  font-family: "Lora", serif;
  display: flex;
  align-items: center;
}
#Logo {
  margin: 0;
  padding: 0;
  display: block;
  line-height: 0;
  vertical-align: middle;
}

header h1 a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 14px;
}

header h1 a span {
  display: inline-block;
  line-height: 1;
}

/* Navigation Menu Styles */
header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: #555;
  font-weight: bold;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #e9a50d;
}
/* Hamburger menu style*/
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 2em;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
/* Call to action button style */
.cta-button {
  display: inline-block;
  background-color: #e9a50d;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #d4940b;
}

.site-footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px;
  text-align: left;
}

.footer-section a {
  text-decoration: none;
  color: #fff;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-section p,
.footer-section ul {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  color: #f0b90b;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.social-links a {
  color: #fff;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #bbb;
}

.footer-bottom {
  background-color: #222;
  padding: 10px;
  margin-top: 20px;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  header .container {
    position: relative;
  }
  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  header nav ul {
    display: flex;
    flex-direction: column;
    padding: 15px;
  }
  header nav ul li {
    margin: 10px 0;
  }
  .hamburger-menu {
    display: block;
    margin: 0;
  }
  header nav.open {
    display: block;
  }
}
