/* styles.css */


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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

html {
  scroll-padding-top: 30px;
  scroll-behavior: smooth;
}

.header-footer-container {
  max-width: 1200px;
  margin: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
}

.site-header .header-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-header {
  background-color: #1d4260;
  color: #ebe9e6;
  padding: 0;
  width: 100%;
  max-width: none;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-title {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  text-align: left;
  flex: 1;
}

.header-title-link {
  color: #ebe9e6;
  text-decoration: none;
  padding-top: 15px;
  padding-bottom: 0px;
}

/* .nav-links { */
  /* display: flex; */
  /* display: block; */
  /* display: none; */
  /* list-style: none; */
  /* gap: 1rem; */
/* } */
/* 
.nav-link {
  color: white;
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: underline;
} */

.nav-menu {
  /* background-color: #0000; */
  background-color: transparent;
  flex-shrink: 0; /* prevents it from squishing */
  display: block;
}

.nav-menu > ul {
  list-style: none;
  padding: 0;
  /* padding-left: 20px; */
  margin: 0px;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  justify-content: center;
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}



/* 
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

.hamburger, .close {
  display: none;
}




.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
} */

.nav-menu {
  display: flex;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

/* Remove default list item margins/padding */
/* .nav-menu li { */
  /* position: relative; Needed for the submenu to be positioned absolutely */
/* } */

.nav-menu a {
  color: #ebe9e6;
  text-decoration: none;
  font-weight: 600;
}

.nav-menu a:hover {
  color: #b6c7e0;
  border-radius: 2px;
  background-color: transparent; /* No background */
}

/* Submenu setup */
.nav-has-submenu {
  position: relative;
}

.nav-menu .nav-submenu {
  display: none;
  position: absolute;
  top: 100%; /* Place submenu directly under parent item */
  left: 0;
  background-color: #525052; /* Match your nav background */
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  border-radius: 0 0 0.5rem 0.5rem;
  min-width: 150px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000; /* Makes sure submenu is on top */
}

/* Style the arrow */
.submenu-arrow {
  display: inline-block;
  margin-left: 0.3rem;
  font-size: 0.7em; /* Slightly smaller */
  transition: transform 0.3s ease;
}

/* Rotate the arrow when hovering over parent */
.nav-has-submenu:hover .submenu-arrow {
  transform: rotate(-90deg);
}

/* Styling submenu items */
.nav-submenu li {
  padding: 0;

  /* background-color: transparent; */
}

.nav-submenu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #ebe9e6; /* Same as normal nav links */
  text-decoration: none;
  font-weight: 400;
  white-space: nowrap; /* Prevent text from wrapping weirdly */
}

.nav-submenu a:hover {
  color: #b6c7e0;
}

/* Show submenu on hover */
.nav-has-submenu:hover .nav-submenu {
  display: block;
}

/* Cursor style for submenu parent */
.nav-has-submenu > a {
  /* cursor: pointer; */
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-submenu a.disabled {
  color: #999; /* Lighter gray */
  pointer-events: none; /* Make it non-clickable */
  background-color: transparent; /* Don't change background on hover */
}

.announcement {
  justify-content: center;
}

.announcement h2 {
  color: #d76272;
  text-align: center;
  font-size: 3.5rem;
  font-style: italic;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background-color: #98cae4;
  padding-bottom: 20px;
  /* background-color: #e6ddec; */
  /* padding: 4rem 1rem; */
}

.hero-text {
  font-family: 'Inter', sans-serif;
  flex: 1 1 300px;
}

.hero-text h2 {
  font-size: 250%;
  font-weight: bold;
  margin-top: 0;
}

.hero-text p {
  font-size: 170%;
}

.cta-button {
  display: inline-block;
  background-color: #d76272; 
  color: #ebe9e6;
  padding: 0.75rem 1.5rem;
  margin-top: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

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


.hero-image {
  /* text-align: center; */
   /* Display next to each other */
   flex: 1 1 35%; 
   display: flex;
   justify-content: center;
   align-items: center;
}

.hero-image img {
  /* width: 100%; */
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
 
}

.info-section {
  padding: 3rem 2rem;
}

.info-section.alt {
  background-color: #ecf0f4; 
}

.features,
.faq {
  list-style: none;
  padding-left: 0;
}

.features li,
.faq li { 
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.service-highlights {
  display: flex;
  flex-wrap:wrap;
  justify-content: center;
  gap: 2em;
  padding: 2em;
  
}

.highlight-box {
  flex: 1 1 300px; /* Grow and shrink as needed, min width 300px */
  max-width: 300px;
  min-height: 400px; /* or whatever height you want */
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 1.5em;
  background-color: #f9f9f9;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  text-align: left;
  line-height: 1.6;
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Trigger animation when visible */
/* .highlight-box.show {
  opacity: 1;
  transform: translateY(0);
} */


/* Info section layout */
.info-intro,
.info-details {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.info-boxes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-box {
  flex: 1 1 calc(33.333% - 1rem); /* 3 boxes with a little spacing */
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  text-align: center;
  min-width: 240px; /* allows horizontal layout on wide screens */
  box-sizing: border-box;
}

.info-box h3 {
  margin-top: 0;
  color: #48495e;
}

.info-box ul {
  list-style-type: square;
  padding-left: 1.2rem;
  text-align: left;
  margin-top: 0.75rem;
}

.info-box li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Hover effect */
.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}


blockquote {
  font-style: italic;
  margin: 1rem 0;
  border-left: 4px solid #ccc;
  padding-left: 1rem;
  color: #555;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  font-size: 1rem;
  width: 100%;
}


.contact-form button {
  background-color:  #d76272; 
  color: #ffffff;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 0.4rem;
  cursor: pointer;
  font-weight: 600;
  justify-content: center;
  max-width: fit-content;
}

.contact-form button:hover {
  background-color: #917d9e;
}

.contact-form-button {
  text-align: center;
}

.site-footer {
  /* background-color: #525052; */
  background-color: #1d4260;
  color: white;
  text-align: center;
  padding: 0 0;
  width: 100%;
  margin: 0;
  /* border: 3px solid red; */
}



.logo-image img {
  width: 10%;
  padding-top: 25px;
  height: auto;
  justify-content: center;
  border-radius: 5%;
}

.social-icons {
  margin-top: 1.5rem;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0 0.75rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f1f1f17e;
}

.copyright h2 {
  font-size: 15px;
  font-weight:lighter;
  padding-top: 10px;
}

.copyright-link {
  color: #ffffff;
  text-decoration-color: fff; /* This controls underline color */
  padding-top: 15px;
  padding-bottom: 0px;
}

.copyright-link:hover {
  color: #f1f1f17e;
  text-decoration-color: #ffffff;
}

.go-to-top {
  text-align: right;
}
.go-to-top h2 {
  font-size: 15px;
  font-weight: lighter;
}

.go-to-top-link {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

.go-to-top-link:hover {
  color: #f1f1f17e;
  text-decoration-color: #ffffff;
}

.template-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px;
}


.template {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background-color: #0000;
  padding: 4rem 2rem;
}

/* ************************* */
/* RESPONSIVE STUFF */
/* Optional tweak for better layout on small screens */
/* ************************* */
@media (max-width: 768px) {
  /* .header-title {
    font-size: 30px;
    font-weight: 400;
    text-align: left;
    padding: 15px;
  } */

  .hamburger {
    display: flex;
    z-index: 1100;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #444;
    flex-direction: column;
    padding: 1rem 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 1rem;
  }

  .nav-menu a {
    width: 100%;
    text-align: center;
    padding-left: 1rem;
  }

  .announcement h2 {
    font-size: 2.5rem;
  }
  
  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size:130%;
  }

  .hero-text h2 {
    font-size: 170%;
  }


  .hero-text p {
    font-size: 120%;
  }

  .hero-image {
    justify-content: center;
    margin-top: 1rem;
  }

  .hero-image img {
    max-width: 100%;
  } 

  .logo {
    font-size: 30px;
  }

  .highlight-box {
    font-size: 1em;
    padding: 1.2em;
  }

