/*
Theme Name: Twenty Twenty-Five Child WNJ
Template: twentytwentyfive
*/

/* Global Styles */
* {
    box-sizing: border-box;
  }

  html, body {
    height: 100%;
  }
  
  body {
      margin: 0;
      padding: 0;
      font-family: 'Lato', sans-serif;
      background-color: #EDF0F7;
  }
  
  button {
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: none;
    padding: 0;
    box-sizing: border-box;
}

.btn-red {
    background-color: #f80a45;
    color: #fff;
    width: auto;
    height: auto;
    border-radius: 100px;
    padding: 11px 22px;
    gap: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-white {
    background-color: #fff;
    color: var(--Dark-grey, #3c4b6b);
    width: auto;
    height: auto;
    border-radius: 100px;
    padding: 11px 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-icon {
    aspect-ratio: 1;
    object-fit: contain;
    width: 16px;
    height: 16px;
}

.btn-icon path {
    stroke: white;
}
  
  @font-face {
      font-family: 'Lato';
      src: url('assets/fonts/lato/lato-regular.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
  }
  
  input[type="text"], input[type="number"], input[type="email"], select, textarea {
    width: 100%; /* Full width */
    padding: 10px 15px; /* Adjust padding for a modern look */
    border-radius: 8px; /* Round corners */
    font-size: 16px;
  }
  
  input:focus, select:focus, textarea:focus {
    outline: none; /* Remove default focus outline */
    border-color: #f80a45; /* Highlight border color */
    box-shadow: 0 0 5px rgba(248, 10, 69, 0.5); /* Optional focus glow */
  }
  
  /* Header Styles */
  
  body:not(.home) header {
    height: auto; /* Allow header to adjust dynamically */
    padding: 10px 0; /* Adjust padding if needed */
    background: radial-gradient(56.18% 56.18% at 58.58% 59.31%, #302c4f 0%, #302C4F 53.33%);
  }
  
  .header-content { display: flex; width: 100%; max-width: 1110px; flex-direction: column; margin: 0 auto; }
  .header-top {height: 72px; width: 100%; display: flex; align-items: center;}
  .top-nav { height: 39px; display: flex; width: 100%; gap: 25px; flex-wrap: wrap; }
  .logo-wrapper { align-self: start; display: flex; gap: 12px; font-family: Quicksand, sans-serif; font-weight: 700; }
  .logo-icon {
      width: auto;
      height: 100%; /* Or a specific value like 40px */
      max-height: 50px; /* Ensures it doesn’t stretch too much */
  }
  .logo-text { align-self: start; display: flex; gap: 3px; }
  .logo-primary { color: #fff; font-size: 20px; letter-spacing: -0.6px; flex-grow: 1; }
  .logo-accent { color: #f80a45; font-size: 13px; text-transform: uppercase; align-self: start; }
 
.nav-actions { display: flex; gap: 23px; }
  
  /* Default Styles: Hide both Hamburger and Sliding Menu */
  .hamburger-menu, .sliding-menu {
     display: none;
  }
  
/* Main Content Styles */

#site-content {
    max-width: 1110px;
    padding: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#site-main {
  flex-grow: 1;
}

/* End of Main Content Styles */

/* Footer Styles */
footer {
    width: 100%;
    background-color: #302C4F;
    color: #FFF;
    text-align: center;
    border-radius: 1em 1em 0 0;
}

.footer-container {
    border-radius: 0 0 0 0;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
  }
  
  .footer-base {
    border-radius: 31px 31px 0 0;
    background-color: rgba(49, 45, 80, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 38px 80px 61px;
  }
  
  .footer-content {
    display: flex;
    width: 100%;
    max-width: 1110px;
    flex-direction: column;
  }
  .header-section {
    display: flex;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .logo-container {
    align-self: start;
    display: flex;
    gap: 12px;
    font: 700 20px Quicksand, sans-serif;
  }
  
  .logo {
    aspect-ratio: 0.72;
    object-fit: contain;
    object-position: center;
    width: 26px;
  }
  
  .brand-text {
    align-self: start;
    display: flex;
    gap: 3px;
  }
  
  .brand-name {
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    letter-spacing: -0.6px;
    flex-grow: 1;
  }
  
  .brand-suffix {
    color: rgba(248, 10, 69, 1);
    font-size: 13px;
    text-transform: uppercase;
    align-self: start;
  }

  .nav-container {
    display: flex;
    gap: 40px 100px;
    flex-wrap: wrap;
    flex-grow: 1;
    align-items: center; /* Aligns children vertically */
    font: 14px Lato, sans-serif;
  }
  
  .nav-section {
    display: flex;
    gap: 40px 100px;
    flex-wrap: wrap;
    font: 14px Lato, sans-serif;
  }
  
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--Unactive-Purole, #aab6b3);
    white-space: nowrap;
    justify-content: start;
    margin: auto 0;
  }
  
  .nav-item {
    align-self: stretch;
    margin: auto 0;
  }
  
  .nav-item-active {
    color: rgba(255, 255, 255, 1);
  }
  
  .button-group {
    display: flex;
    gap: 23px;
    text-align: center;
  }
  
  .btn-white {
    align-self: stretch;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 1);
    color: var(--Dark-grey, #3c4b6b);
    padding: 11px 22px;
  }
  
  .btn-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 16px;
    align-self: stretch;
    margin: auto 0;
  }
  
  .copyright-text {
    color: rgba(255, 255, 255, 1);
    margin-top: 46px;
    font: 14px Lato, sans-serif;
    text-align: left;
  }

  .link-red {
    color: rgba(248, 10, 69, 1);
  }

  /* End of Footer Styles */