/* Normalize.css */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  max-height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Exo 2", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  scroll-behavior: smooth;
}

html {
  width: 100vw;
  background-color: var(--html);
}

body {
  max-width: 1920px;
  width: 100%;
  background-color: var(--body);
}

button {
  padding: 0px;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

a:-webkit-any-link {
  color: black;
  transition: all 0.2s ease;
}

input:-webkit-autofill {
  font-size: 16px;
  font-family: 'Exo 2', Arial;
  color: inherit;
}


input:focus,
textarea:focus,
select:focus {
  outline: none;
  border: 1px solid var(--primary);
  box-shadow: 0 0 0 3px rgba(9, 106, 46, 0.1);
  transition: all 0.2s ease;
}

p {
  margin: 0;
  padding: 0px;
  line-height: 1.7;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}


/* Disbale Print */
@media print {
  body {
    display: none;
    /* Hide the entire page */
  }
}

/* Variables - Enhanced for Modern Design */
:root {
  --primary: #096a2e;
  --accent: #8ABE53;
  --light-grey: #E6E6E6;
  --dark-grey: #7a7a7a;
  --font-size: 16px;
  --font-family: 'Exo 2', 'Arial', sans-serif;
  --spacing-unit: 12px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --dark-mode-content: #161616;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;

  --html: #353434;
  --body: white;
  --header: black;
  --nav: white;
  --nav-link: #222222;
  --nav-link-selected: #1f1f1f;
  --active-grey: #7a7a7a;
  --shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  --shadow-modern: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-search: 0 4px 4px rgba(0, 0, 0, 0.2);
  --searchbar: #eeeeee;
  --search-icon: #eeeeee;
  --search-button: #949494;
  --search-text: #222222;
  --login-hover: #e6e6e6;
}

.dark-theme {
  --html: #171717;
  /* --body: #161616; */
  /* --body: hsl(0, 0%, 7%); */
  --body: #222222;
  /* --header: #131313; */
  --header: #1f1f1f;
  --nav: #222222;
  --nav-link: #7a7a7a;
  --nav-link-selected: #dadada;
  --active-grey: #7a7a7a;
  --shadow-search: none;
  --searchbar: #333333;
  --search-icon: #333333;
  --search-text: #E6E6E6;
  --login-hover: #333333;
}


/*********************************** PAGES ***********************************/


.app-letters {
  fill: var(--primary);
}

.app-logo {
  fill: var(--accent);
}

.search-bar-form {
  border-radius: 24px;
  height: 48px;
  /* width: 504px; */
  position: relative;
  padding: 4px;
  background-color: var(--searchbar);
  box-shadow: var(--shadow-search);
  border: 1px solid #e8e8e8;
  transition: all 0.2s ease;
  width: 100%;
}

.search-bar-form:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.search-bar-focus {
  border-color: #096a2e !important;
  box-shadow: 0 0 0 3px rgba(9, 106, 46, 0.1) !important;
}

#search-bar::placeholder {
  color: var(--active-grey);
  font-family: 'Exo 2';
  line-height: 1.6;
}


.welcome {
  font-size: 14px;
  font-weight: 400;
  color: #eeeeee;
}


.sign-up-out-icon {
  background-color: #a3e061;
  height: 32px;
  width: 32px;
  justify-content: center;
}

.sign-out-icon {
  fill: var(--dark-grey);
  height: 20px;
  width: 20px;
}


.navbar {
  justify-content: space-evenly;
  /* background-color: var(--light-grey); */
  /* background-color: var(--body); */
  background-color: var(--nav);
  /* color: var(--light-grey); */
  align-items: center;
  height: 40px;
  width: 100%;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  /* left: 0px; */
  z-index: 1;
  box-shadow: var(--shadow);
}

.content-wrap {
  padding: var(--spacing-xl) var(--spacing-lg);
  height: fit-content;
  width: 100%;
  flex: 1 0 auto;
  background-color: transparent;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .content-wrap {
    padding: var(--spacing-lg) var(--spacing-unit);
  }
}

.slogan-home {
  font-size: 64px;
}

#footer-site {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 120px;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 24px 64px;
  flex-direction: column;
  flex-shrink: 0;
  gap: 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.footer-links-container {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.footer-copyright {
  margin-top: 8px;
}

.footer-copyright p {
  color: #949494;
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.footer-links:link,
.footer-links:visited {
  text-decoration: none;
  color: #e8e8e8;
  position: relative;
  padding: 8px 20px;
  transition: all 0.3s ease;
  font-weight: 500;
  border-radius: 4px;
}

.footer-links:hover {
  color: #8ABE53;
  background-color: rgba(138, 190, 83, 0.1);
  transform: translateY(-1px);
}

.footer-links::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.3);
  top: 20%;
  right: 0;
}

.footer-links.no-brdr::after {
  display: none;
}

/* Responsive footer */
@media (max-width: 1024px) {
  #footer-site {
    padding: 20px 48px;
    min-height: 110px;
  }

  .footer-links:link,
  .footer-links:visited {
    font-size: 18px;
    padding: 7px 16px;
  }
}

@media (max-width: 768px) {
  #footer-site {
    padding: 20px 32px;
    min-height: auto;
    gap: 12px;
  }

  .footer-links-container {
    flex-direction: column;
    gap: 4px;
  }

  .footer-links:link,
  .footer-links:visited {
    font-size: 16px;
    padding: 8px 16px;
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .footer-links::after {
    display: none;
  }

  .footer-copyright p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  #footer-site {
    padding: 16px 20px;
    gap: 12px;
  }

  .footer-links:link,
  .footer-links:visited {
    font-size: 15px;
    padding: 8px 12px;
  }

  .footer-copyright {
    margin-top: 4px;
  }

  .footer-copyright p {
    font-size: 12px;
    line-height: 1.5;
  }
}

.no-notes {
  padding: 2rem;
  text-align: center;
  color: #666;
}