html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

body, h1, h2, h3, p, ul, li, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Baskerville Old Face', Baskerville, 'Goudy Old Style', Georgia, serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

header {
    background-color: #1a4232;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ec4899;
}

.logo-img {
  height: 80px;
  width: auto;
  margin-left: 16px;
}

@media(max-width: 767px) {
  .logo-img {
    height: 60px;
  }
}

nav ul {
  display: flex;
  gap: 24px;
  list-style:none;
  font-size:1.25em;
}

nav ul li a {
  color: #fff;
  transition: color 0.5s;
}

    nav ul li a:hover {
        color: #f7f5bb;
    }

    nav ul li a::after {
        content: '';
        display: block;
        height: 2px;
        width: 0;
        background: #f7f5bb;
        transition: width 0.3s;
    }

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  background-color: #ffffff;
  padding: 8px 16px;
}

.mobile-menu a {
  font-size: 1.1rem;
  padding: 8px 0;
  color: #4b5563;
  transition: color 0.2s;
}

    .mobile-menu a:hover {
        color: #7d961f;
        text-decoration: underline;
    }


footer {
    background-color: #f1f1f1;
    color: #000000;
    margin-top: 64px;
    font-size: 1.1rem;
}

footer .footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 32px 16px;
}

footer h3 {
  font-weight: bold;
  margin-bottom: 8px;
}

footer a:hover {
  color: #7d961f;
}

footer ul {
  list-style:none;
}

footer li + li {
  margin-top: 8px;
}

footer .footer-bottom {
  text-align: center;
  padding: 16px;
  font-size: 0.9rem;
}

.mobile-button {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fce7f3;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

    .mobile-button:hover {
        color: #7d961f;
    }

.mobile-button:focus {
}

@media(min-width: 768px) {
  nav ul {
    display: flex;
  }

  .mobile-button {
    display: none;
  }

  footer .footer-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 767px) {
  nav ul {
    display: none;
  }

  .mobile-button {
    display: block;
  }
}


.cms-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
  background-color: #f5f5f5;
}







.social-icons,
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  transition: fill 0.3s;
}

.social-icon:hover {
    fill: #7d961f; /* pink on hover */
}

/* Adjust spacing in header if needed */
header .social-icons {
  margin-left: 16px;
  margin-right: 16px;
}

footer .social-icons {
  margin-top: 8px;
  margin-left: 16px;
  margin-right:16px;
}