html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Reset and basic styles */
body, h1, h2, h3, p, ul, li, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;


  /* background-color: #fff2f2; */
  /*background-color: #ffffff;*/
  /*background-image: url("https://www.transparenttextures.com/patterns/cream-paper.png");*/
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
header {
  background-color: #3f3737;
  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; /* pink-500 */
}

.logo-img {
  height: 80px; /* Adjust as needed */
  width: auto;  /* Maintain aspect ratio */
  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; /* gray-700 */
  transition: color 0.5s;
}

nav ul li a:hover {
  color: #ec4899;
}

nav ul li a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #ec4899;
  transition: width 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  background-color: #ffffff;
  padding: 8px 16px;
}

.mobile-menu a {
  font-size: 1.1rem; /* bigger for easier tapping */
  padding: 8px 0;
  color: #4b5563;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: #ec4899;
  text-decoration: underline;
}

/*
.mobile-menu a {
  padding: 8px 0;
  color: #4b5563;
}

.mobile-menu a:hover {
  background-color: #fce7f3; 
}*/

/* Footer */
footer {
  background-color: #fff1f2; 
  color: #4b5563;
  margin-top: 64px;
}

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: #ec4899;
}

footer ul {
  list-style:none;
}

footer .footer-bottom {
  text-align: center;
  padding: 16px;
  border-top: 1px solid #fce7f3;
  font-size: 0.9rem;
}

/* Mobile hamburger button */
.mobile-button {
  background: none;          /* Remove default gray */
  border: none;              /* Remove border */
  font-size: 1.8rem;         /* Make the ☰ bigger */
  color: #fce7f3;            /* Dark gray color */
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

/* Hover effect */
.mobile-button:hover {
  color: #ec4899;            /* Pink ☰ on hover */
}

/* Optional: add subtle focus outline for accessibility */
.mobile-button:focus {
  /*outline: 2px solid #ec4899;
  outline-offset: 2px;*/
}

/* Responsive */
@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;
  }
}


/*
* {
  box-sizing: border-box;
}*/

/*
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f7f7f7;
  color: #222;
  margin: 0;
  padding: 0;
}*/

/* ---------- Layout helpers ---------- */
/*.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem;
}*/

.cms-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
  background-color: #f5f5f5;
}







/* Social icons container */
.social-icons,
.footer-social {
  display: flex;
  gap: 12px; /* space between icons */
  align-items: center;
}

/* Individual icons */
.social-icon {
  width: 24px;
  height: 24px;
  fill: #4b5563; /* default gray */
  transition: fill 0.3s;
}

.social-icon:hover {
  fill: #ec4899; /* 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;
}