@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700&family=Varela+Round&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
  font-family: 'Lexend', sans-serif;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  background-color: #f6f6f6;
}


.logo_header {
  display: flex;
  align-items: center;
  background-color: brown;
}

.logo {
  max-width: 130px;
  height: max-content;
  height: auto;
  margin: 10px 10px;
  cursor: pointer;
}

.logo_head {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content:center;
  background-color: brown;
}

/* Logo Breakpoints */
@media only screen and (max-width: 600px) {
  .logo {
    max-width: 80px;
    margin-left: 25px;
  }
}

.nav {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hamburger {
  display: none;
}

.nav-bar ul {
  display: flex;
}

.nav-bar ul.nav-items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.nav-bar ul li a {
  display: block;
  color: brown;
  font-size: 25px;
  padding: 10px 25px;  font-weight: 400;
  align-items: center;
  transition: 0.2s;
  /* margin: 0 5px; */
}

.nav-bar ul li a:hover {
  color: #ffa0a0;
}

/* Hamburger Navigation Menu Breakpoints */
@media only screen and (max-width: 600px) {

  .hamburger {
    flex: 1;
    display: block;
    cursor: pointer;
    color: #f6f6f6;
    margin-right: 30px;
    font-size: 30px;
    background-color: brown;
  }
  
  .fa-bars {
    font-size: 22px;
  }

  .nav-bar {
    height: 0;
    top: 100px;
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    background: brown;
    transition: 0.5s;
    overflow: hidden;
    z-index: 1;
  }

  .nav-bar.active {
    height: 45vh;
  }

  .nav-bar ul.nav-items {
    margin-top: 3%;
    flex-direction: column;
    align-items: flex-start;
  }

  .icons {
    margin-left: auto;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }

  .nav-bar.active {
    opacity: 1;

  }

  .nav-bar ul li a {
    margin-bottom: 12px;
    color: #ffffff;
  }

  .nav-bar ul li a:hover {
    color: rgb(255, 215, 215);
  }

  .nav ul li.icons {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    margin-left: 0;
  }

  .nav {
    height: 0;
  }

}



/* intro section */
.intro {
  margin: 5px;
}

.intro h1 {  font-size: 42px;
  font-weight: 500;
  color: brown;
  text-align: center;
  padding: 50px 0px;
  /* font-family: 'Varela Round', sans-serif; */
}


/* Intro Section Breakpoints */
@media only screen and (max-width: 600px) {
  .intro {
    margin-top: 45px;
  }

  .intro h1 {
    font-weight: 500;
    font-size: 2rem;
    padding-top: 0;
    margin: 0 auto;

  }
}

/* Intro Section Breakpoints */
@media (width < 400px) {

  .intro {
    margin-top: 45px;
  }

  .intro h1 {
    font-weight: 500;
    font-size: 1.6em;
    padding-top: 0;
    margin: 0 auto;
  }
}




/* projects */
.proj p.title {  font-size: 28px;
  color: brown;
  text-align: center;
  padding: 40px 0px
}

p.temp {  text-align: center;
  color: brown;
  padding-bottom: 25px;
}

/* Project Section Breakpoints */
@media only screen and (max-width: 600px) {

  .proj p.title {
    font-size: 16px;
    color: brown;
    text-align: center;
    padding-bottom: 25px;
  }

  p.temp {
    font-size: 12px;
    text-align: center;
    color: brown;
    padding-bottom: 30px;
  }
}


/* parallex effect animation */
.parallax {
  position: relative;
  height: 75vh;
  width: 100vw;
  overflow: hidden;
}

.parallax-image {
  position: absolute;
  height: 150vh;
  top: 0%;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/images/background.jpeg');
  background-size:cover; /* Adjust this value to make the image bigger */
  background-repeat: no-repeat;
  background-position: center;
  transform: translateZ(-1px) scale(2);
  z-index: -1;
}

/* Parallex Effect Breakpoints */
@media only screen and (max-width:600px) {
  .parallax {
    position: relative;
    height: 35vh;
    width: 100vw;
    overflow: hidden;
  }

  .parallax-image {
    height: 80vh;
    position:absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/background.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: translateZ(-1px) scale(2);
    z-index: -1;
  }
}




/*  Footer */
.footer {
  background-color: brown;
  padding: 20px;
}

.footer-content {
  padding: 20px 10px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}

.footer-content h3 {
  margin-bottom: 15px;
  transition: color 0.3s;
}

.footer-content h3:hover {
  color: #bbb;
}

.footer-content p a {
  color: white;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;

}

.footer-content p {
  margin-bottom: 25px;

}

.footer-content p a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: white;
  transition: color 0.3s;
}

.footer-content p a::after:hover {
  background-color: #bbb;

}

.footer-content p a:hover {
  color: #bbb;
}

.social-icons {
  display: flex;
  justify-content: center;
}

.social-icons a {
  display: inline-block;
  margin: 5px 10px;
  color: white;
  font-size: 30px;
  transition: color 0.3s;
}

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

.credits {
  margin-top: 2rem;
}

.credits p {  
  font-size: x-small;
  font-weight: 400;
  color: #f9f9f9;
  margin: 0;
}

.credits p a::after {
  height: 0.5px;
}

/* Breakpoints for Footer  */
@media only screen and (max-width:600px) {
  .footer {
    background-color: brown;
    padding: 15px;
  }

  .footer-content {
    padding: 15px 8px;
    padding-bottom: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
  }
  
  .footer-content h3 {
    font-size: 18px;
  }

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

  .social-icons a {
    margin: 3px 8px;
    font-size: 22px;
    transition: color 0.3s;
  }

  .credits {
    margin-top: 2rem;
  }

  .credits p {
    font-size: x-small;
    font-weight: 400;
    color: #f9f9f9;
    margin: 0;
  }

}

/* Eduation/Experience Section */
.education { 
  line-height: 1.5;
  color: brown;
  background-color: #f6f6f6;
  padding: 2rem;
  padding-bottom: 100px;
  margin: 0 auto;
}

.top-section {
  text-align: center;
  padding: 2rem 0;
  margin: 0 auto;
}

.timeline {
  position: relative;
  min-height: 150px;
}

.line {
  position: absolute;
  z-index: 2;
  left: calc(50% - 1px);
  width: 2px;
  top: -30px;
  bottom: -50px;
  background-color: brown;
  display: none;
}

.line::before,
.line::after {
  position: absolute;
  display: block;
  content: '';
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background-color: brown;
  left: 50%;
  transform: translateX(-50%);
}

.line::after {
  bottom: 0;
}

.section {
  display: flex;
  opacity: 0;
  transform: translateX(-100%);
  transition: 600ms ease;
  position: relative;
  z-index: 1;
  margin: 10px 0;
  padding: 1rem;
  border-radius: 1rem;
  align-items: center;
  min-height: 300px;
}

.section:nth-child(odd) {
  flex-direction: row-reverse;
  transform: translateX(100%);
}

.bead {
  position: absolute;
  display: block;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background-color: brown;
  left: 50%;
  
  transform: translateX(-50%);
}

.content {
  width: calc(50% - 2rem);
}

.show-me:nth-child(n) {
  transform: none;
  opacity: 1;
}

.education h2 {
  letter-spacing: 5px;
}


@media only screen and (max-width:600px) {
  
  .education {
    padding: 1rem;
    padding-bottom: 50px;

  }
  .education h2 {
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .top-section {
    font-size: 10px;
    margin: 0 auto;
    letter-spacing: 0;
  }

  .section {
    padding: 0rem;
    min-height: 0;
  }
  .education h3 {
    font-size: 1rem;
  }

  .education p {
    font-size: 0.8rem;
  }

  .bead {
    height: 0.5rem;
    width: 0.5rem;
  }
  
}

@media (width < 400px) {
  .education h2 {
    font-size: 1.6rem;
  }

}

/* Temporary Notice Text */
.temp-title {
  margin: 20vh;
  text-align: center;
  line-height: 2;
}

.temp-title .title {  font-size: 25px;
  font-weight: 500;
  color: brown;
}

.temp-title .temp a {
  text-decoration: underline brown 1px;  font-size: 18px;
  color: brown;

}
/* Breakpoints for Text */
@media only screen and (max-width:600px) {
  .temp-title {
    margin: 20vmax auto;
    text-align: center;
    line-height: 2;
  }
  
  .temp-title .title {
    font-size: 20px;
    font-weight: 500;
    color: brown;
  }
  
  .temp-title .temp a {
    text-decoration: underline brown 1px;
    font-size: 15px;
    color: brown;
  
  }
}

/* Contact Page */

.contact {
  width: 100%;
  padding: 1.5rem;
  display: flex;
}

.head h2 span {
  font-size: 2rem;
  padding-bottom: 0.07rem;
  margin-bottom: 10px;
  color: brown;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(183, 56, 56, 0.2);
  transition: 0.3s color; 
}

.head h2 span:hover {
  color: rgb(214, 110, 110);
  border-bottom-color: rgba(183, 56, 56, 0.3);
}

.head p {
  margin-top: 10px;
  padding-right: 50px;
}

.head p a {
  color: rgb(98, 98, 98);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(98, 98, 98, 0.2);
  transition: 0.3s color; 
}

.head p a:hover {
  border-bottom-color: rgba(80, 80, 80, 0.4);
 
}

.head {
  padding-left: 25px;
}

.image img {
  padding: 15px;
  padding-top: 0;
  margin-right: 25px;
  width: auto;
  height: 350px;
}

/* Breakpoints for Contact Page */
@media only screen and (max-width:600px) {
  
  .contact {
    display: flex;
    flex-direction: column-reverse;
  }
  
  .head {
    padding: 0;
  }

  .head p {
    margin-top: 1rem;
    padding: 0;
  }

  .head h2 span {
    font-size: 25px;
  }

  .head p {
    font-size: 15px;
  }

  .image img {
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
    align-content: center;
  }
}

