@import url('https://fonts.googleapis.com/css2?family=Slabo+27px&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Londrina+Sketch&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Farsan&display=swap');

* {
  margin: 0;
  padding: 0;
  list-style: none;
}

html {
  scroll-behavior: smooth; 
}

:root {
  --header-font-family: "Slabo 27px", serif;
  --header-color: rgb(255, 255, 255);
  --header-hover-color: hsl(209, 100%, 84%);
  --footer-bg-color: rgb(50, 90, 145);
  --footer-color: rgb(255, 255, 255);
  --main-font-family: "Farsan", cursive;
}


.navContainer {
  background-image: url(images/blue-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  font-family: var(--header-font-family);
  color: var(--header-color);
  font-size: 1.5rem; 
  position: relative;
  padding: 20px 0; 
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center; 
  position: relative;
}

.items {
  display: flex;
  align-items: center;
  justify-content: center; 
  list-style: none; 
  margin: 0;
  padding: 0;
}

.items a {
  text-decoration: none; 
  color: var(--header-color);
}

.logo {
  width: 170px;
  border-radius: 12px;
  position: absolute;
  left: 20px; 
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.logo:hover {
  box-shadow: 3px 3px 1px rgb(0, 98, 255);
}

li {
  cursor: pointer;
  margin: 0 30px; 
  transition: all 0.2s ease;
}

li:hover {
  text-underline-offset: 7px;
  color: var(--header-hover-color);
  text-decoration: underline;
}


.about-section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(images/Lehman-campus.jpg);
  height: 400px;
  text-align: center;
  animation: campus-bg 22s linear infinite;
  h1 {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: white;
    font-family: "Londrina Sketch", sans-serif;
  }
  button {
    cursor: pointer;
    position: relative;
    width: 50px;  
    height: 50px;  
    text-align: center;
    font-size: 2.2rem; 
    line-height: 30px; 
    border-radius: 50%;
    color: white;
    background-color: rgba(128, 128, 128, 0.486);
    border: none;
    transition: all 0.4s ease;
  }
  button:hover {
    color: rgb(37, 37, 37);
    background-color: rgba(255, 255, 255, 0.585);
  }
  #left-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  #right-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  } 
}

@keyframes campus-bg {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 70% 70%;
  }
  100% {
    background-position: 0% 0%;
  }
}


.main-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  font-family: var(--main-font-family);
}


.context-matters {
  z-index: -3;
  background: linear-gradient(to right, #66b3ff, #6bfb6b);
  width: 100%;
  height: 550px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  h1, p {
    grid-column: 2;
    grid-row: 1;
  }
  h1 {
    color: #0f355b;
    font-weight: 900;
    letter-spacing: 1rem;
    margin: 20px;
    padding-top: 10px;
    font-size: 4em;
  }
  .important-text {
    font-size: 1.5em;
    color:  #0056B3;
  }
  p {
    font-size: 1.5em;
    margin-left: 7px;
    margin-top: 20%;
    line-height: 50px;
    color: #000000;
  }
  img {
    z-index: -1;
    filter: brightness(3);
    rotate: 12deg;
    border-radius: 30px;
    margin-top: 10px;
    margin-left: 30px;
    width: 500px;
  }
}

.fade-in {
  opacity: 0; 
  transform: translateY(20px); 
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.visible {
  opacity: 1; 
  transform: translateY(0);
}

.your-community {
  background: linear-gradient(to right, #003e7e, #fa0079); 
  padding: 20px;
  color: white; 
  font-family: var(--main-font-family);
  h1 {
    font-size: 3em;
    color: #a382ff;
  }
}

.community-content {
  display: flex;
  align-items: flex-start; 
}

.community-engagement {
  flex: 1; 
  padding-right: 15px; 
  padding: 15px;
}

.community-engagement h2,
.community-engagement h3 {
  color: #fa0079; 
}

.community-engagement h3 {
  margin-top: 30px; 
  margin-bottom: 10px; 
}

.community-engagement p {
  font-size: larger;
}


.your-community img {
  cursor: pointer;
  width: 450px;
  max-width: 100%; 
  height: auto; 
  margin-bottom: 20px; 
  margin-right: 22px;
  border-radius: 12px;
  rotate: 3deg;
  transition: all 0.4s ease-in;
}

.image:hover {
  scale: 1.1;
  box-shadow: 2px 2px 32px #003e7e;
}

.learning-hard {
  background: linear-gradient(to bottom, #3c83cb, #4d28b4);
  position: relative; 
  padding: 20px;
  color: white; 
  font-family: var(--main-font-family);
  display: flex; 
  align-items: flex-start; 
  h1 {
  flex: 1; 
  padding-right: 20px; 
  padding: 20px;
  color: #68caff;
  font-size: 3em;
  }
  p {
    padding: 50px;
    text-align: center;
    font-size: larger;
  }
}


.learning-hard img {
  cursor: pointer;
  width: 450px; 
  max-width: 100%; 
  height: auto; 
  margin-bottom: 20px; 
  border-radius: 12px;
  margin-right: 12px;
  transition: all 0.4s ease-in;
}

.image1:hover {
  scale: 1.1;
  box-shadow: 2px 2px 22px #74f8ff;
}

.change-ubiquitous {
  background: linear-gradient(to top, #3ccb5d, #d7ffca);
  position: relative; 
  padding: 20px;
  color: white; 
  font-size: 2em;
  font-family: var(--main-font-family);
  display: flex; 
  align-items: flex-start; 
  h1 {
  flex: 1; 
  padding-right: 20px; 
  padding: 20px;
  color: #00550d;
  font-size: 2em;
  }
  p {
    color: #000000;
    padding: 50px;
    text-align: center;
    font-size: larger;
  }
}

.change-ubiquitous img {
  cursor: pointer;
  width: 400px; 
  max-width: 100%; 
  height: 300px;
  margin-top: 30px;
  margin-left: 50px;
  margin-bottom: 20px; 
  border-radius: 12px;
  transition: all 0.4s ease-in;
}

.image2:hover {
  scale: 1.2;
  box-shadow: 2px 2px 22px #089700;
}

.wellness-challenging {
  background: linear-gradient(to right, #a45fad, #310c98);
  position: relative; 
  padding: 20px;
  color: white; 
  font-size: 2em;
  font-family: var(--main-font-family);
  display: flex; 
  align-items: flex-start; 
  h1 {
  flex: 1; 
  padding-right: 20px; 
  padding: 20px;
  color: #ff8181;
  font-size: 2em;
  }
  p {
    padding: 50px;
    text-align: start;
    font-size: larger;
  }
}

.wellness-challenging img {
  width: 500px;
  cursor: pointer;
  max-width: 100%; 
  height: auto; 
  margin-bottom: 15px; 
  border-radius: 12px;
  margin-right: 22px;
  rotate: -3deg;
  transition: all 0.4s ease-in;
}


.image3:hover {
  scale: 1.1;
  box-shadow: 2px 2px 32px #d400ff;
}


.slow-down {
  background: linear-gradient(to left, #e67ca1, #980b0b);
  position: relative; 
  padding: 20px;
  color: white; 
  font-family: var(--main-font-family);
  display: flex; 
  align-items: flex-start; 
  h1 {
  flex: 1; 
  padding-right: 20px; 
  padding: 20px;
  color: #ffdb8c;
  font-size: 3em;
  }
  p {
    padding: 50px;
    text-align: center;
    font-size: 23px;
    line-height: 30px;
  }
}




.conflict-inevitable {
  background: linear-gradient(to right, #fafdb8, #fb5928);
  position: relative; 
  padding: 20px;
  color: rgb(0, 0, 0); 
  font-size: 1.5em;
  font-family: var(--main-font-family);
  display: flex;
  align-items: flex-start; 
  h1 {
  flex: 1; 
  padding-right: 20px; 
  padding: 20px;
  color: #309167;
  font-size: 2.5em;
  }
  p {
    font-size: 5rem;
    padding: 90px;
    text-align: center;
    font-size: larger;
    line-height: 50px;
  }
}


.conflict-inevitable img {
  width: 300px;
  cursor: pointer;
  max-width: 100%; 
  height: auto; 
  margin-left: 50px;
  margin-bottom: 20px; 
  border-radius: 12px;
  rotate: -3deg;
  transition: all 0.4s ease-in;
}


.image5:hover {
  scale: 1.3;
  box-shadow: 2px 2px 32px #ffa200;
}


.success-surprise {
  background: linear-gradient(to left, #ffb98b, #4f085a);
  position: relative; 
  padding: 20px;
  color: rgb(255, 255, 255); 
  font-size: 3em;
  font-family: var(--main-font-family);
  display: flex; 
  align-items: flex-start; 
  h1 {
  flex: 1; 
  padding-right: 20px; 
  padding: 20px;
  color: #ffb1b1;
  font-size: 1em;
  }
  p {
    padding: 50px;
    text-align: center;
  }
}


.success-surprise img {
  width: 250px;
  cursor: pointer;
  max-width: 100%;
  height: 250px;
  margin-left: 50px;
  margin-bottom: 10px; 
  border-radius: 12px;
  rotate: -3deg;
  transition: all 0.4s ease-in;
}

.image6:hover {
  scale: 1.2;
  box-shadow: 2px 2px 32px #dd9dff;
}

#about {
  background: linear-gradient(to right, #003e7e, #004a99);
  color: var(--footer-color);
  padding: 30px;
  text-align: center;
  height: 200px;
  h1 {
    font-size: 4em;
  }
  p {
    font-size: 2em;
  }
}


footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-color);
  padding: 20px;
  text-align: center;
  position: relative;
  font-size: larger;
}

footer img {
  cursor: pointer;
  width: 250px;
  margin: 10px 0;
  border-radius: 12px;
}

.find-out-more {
  display: flex;
  justify-content: center; 
  align-items: center; 
  gap: 15px; 
}

footer svg {
  width: 50px;
  margin: 20px 10px;
  transition: transform 0.3s;
}

.linkedin {
  margin: 15px 10px;
  height: 60px;
  width: 60px;
}

footer svg:hover {
  transform: scale(1.2);
}

.info {
  font-size: 1.2em;
  padding: 20px;
  display: inline;
  cursor: pointer;
  font-family: "Farsan", cursive;
  transition: all 0.2s ease-in;
}

.info:hover {
  text-decoration: underline;
}

.right {
  cursor: pointer;
  color: rgba(197, 194, 194, 0.784);
}
 


