/* Dark Blue and White color palette */
@keyframes slide-in {
  0% {transform: translateY(-100%);}
  100% {transform: translateY(0);}
}
@keyframes slide-right {
  0% {transform: translateX(-100%);}
  100% {transform: translateX(0);}
}
@keyframes slide-left {
  0% {transform: translateX(100%);}
  100% {transform: translateX(0);}
}
@keyframes slide-down {
  0% {transform: translateY(-50%);}
  100% {transform: translateY(0);}
}

body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #001f3d; /* Dark Blue background */
  color: #ffffff; /* White text */
  line-height: 1.6;
}
.values-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center the boxes horizontally */
  gap: 5px; /* Reduced gap between the boxes */
  margin-top: 20px;
}

.value {
  flex: 1;
  min-width: 130px; /* Smaller minimum width for boxes */
  max-width: 180px; /* Smaller maximum width for boxes */
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #333;
  margin: 0; /* Ensure no extra margin between boxes */
}

.value h4 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.value p {
  font-size: 1rem;
  color: #333;
}

.event-photos {
  display: flex;
  justify-content: center; /* Center the event photos */
  margin-top: 20px;
}

.event-photo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

header {
  text-align: center;
  padding: 20px 0;
  background-color: #003366; /* Dark Blue */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 80px;
}

.navbar .nav-link {
  font-weight: normal; /* Ensure normal font weight for nav links */
}

#logo-image {
  width: 150px;
  padding-left: 4rem;
  display: flex;
  animation: slide-in 2s forwards;
}

h1 {
  margin: 0;
  font-size: 2.5em;
  font-weight: 600;
}

p {
  margin: 20px auto;
  max-width: 800px;
  font-size: 1.2em;
}

nav {
  background-color: #003366; /* Dark Blue */
  padding: 10px 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  animation: slide-in 2s forwards;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #000000; /* White */
  text-decoration: none;
  font-size: 1.2em;
  transition: color 0.2s;
}

main {
  padding: 20px;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#resources {
  max-width: 5000px;
  display: flex;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 100px;
}

.resource-box {
  background-color: #004080; /* Dark Blue */
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  color: #FFFFFF; /* White */
  transition: transform 0.2s, box-shadow 0.2s;
}

.resource-box:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.resource-box h3 {
  margin-top: 0;
  font-size: 1.5em;
}

.resource-box p {
  margin: 10px 0;
}

a {
  color: #DAA520; /* Gold */
  text-decoration: none;
}

footer {
  background-color: #002147; /* Darker Blue */
  color: #FFFFFF; /* White */
  text-align: center;
  padding: 10px 0;
  width: 100%;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.menu{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 85%;
  margin: auto;
  color: #F1F2ED; /* White */
}

#banner-image{
  width:850px;
  object-fit: cover;
  justify-content: center;
  margin: auto;
  border: 2px solid #DAA520; /* Gold */
  border-radius: 20px;
  padding: 10px;
  display: inline-block;
  animation: slide-in 2s forwards;
}

.container{
  display: flex;
  color: #FFFFFF; /* White */
}

.navbar{
  background: #F1F2ED; /* White */
  margin: auto;
  padding: 0.5rem 1.5rem;
  margin-left: 100px;
  margin-right: 100px;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #002147; /* Dark Blue */
}

.nav-links{
  display: flex;
  gap: 2rem;
}

.nav-link, .drop-down li{
  list-style: none;
  height: 100%;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

a{
  text-decoration: none;
  color: currentColor;
}

.drop-down{
  position: absolute;
  padding: 0.5rem 0;
  flex-direction: column;
  margin: 0.5rem -0.5rem;
  background: #003366; /* Dark Blue */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  width: 150px;
  display: none;
}

.nav-link:hover{
  background-color: #004080; /* Dark Blue */
  border-radius: 0.5rem;
  transition: 0.3s;
}

.resources:hover .drop-down{
  display:block;
  transition-duration: 1s;
}

.dropDownItem:hover{
  text-decoration: underline;
}

.tracker:hover .dropDownTracker{
  display:block;
  transition-duration: 1s;
}

.dropDownTracker{
  position: absolute;
  padding: 0.5rem 0;
  flex-direction: column;
  margin: 0.5rem -0.5rem;
  background: #003366; /* Dark Blue */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  width: 150px;
  display: none;
}

.dropDownTrackerItem :hover{
  text-decoration: underline;
}
.execs-section {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.execs-title {
  font-size: 24px; /* Bigger font size */
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase; /* Optional: makes it all caps */
}

.execs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.exec {
  width: 250px; /* Adjust the width */
  text-align: center;
}

.exec-photo {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.watchnow{
  text-decoration: underline;
  color: #FFFFFF; /* White */
  cursor: pointer;
}

.readnow{
  text-decoration: underline;
  color: #FFFFFF; /* White */
  cursor: pointer;
}

.readnow:hover{
  color: #DAA520; /* Gold */
}

.watchnow:hover{
  color: #DAA520; /* Gold */
}

.title2{
  color: #FFFFFF; /* White */
  font-size: 30px;
  display: flex;
  justify-content: center;
}

.depression h3{
  color: #FFFFFF; /* White */
  font-size: 20px;
  display: flex;
  justify-content: left;
  margin: 5%;
}

.depression p{
  color: #FFFFFF; /* White */
  font-size: 18px;
  display: flex;
  justify-content: left;
  margin: 5%;
  font-weight: 400;
}

.depression{
  margin: auto;
  padding: 20px;
  display: flex;
  border-bottom: 10px;
}

.depression a{
  color: #FFFFFF; /* White */
  display: flex;
  justify-content: bottom;
  margin: 5%;
  font-weight: 400;
}

.depression a:hover{
  color: #DAA520; /* Gold */
  text-decoration: underline;
}

.disorders{
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  margin-top: 4px;
}

.current {
  font-weight: bold;
}

/* Styles for the login form */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  background-color: #003366; /* Dark Blue */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

form label {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #FFFFFF;
}

form input {
  padding: 10px;
  width: 100%;
  font-size: 1em;
  margin-bottom: 15px;
  border-radius: 5px;
  border: none;
}

form button {
  padding: 10px 20px;
  background-color: #DAA520; /* Gold */
  color: #003366; /* Dark Blue */
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #004080; /* Dark Blue */
}
