body {
    font-size: 2rem;
    font-family: Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    color: black;
    background-color:whitesmoke;
  }

a {
    text-decoration: none;
    display: block;
}

.container {
margin:3rem 4rem 0 4rem;
}


#intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black; 
    z-index: 10;
    overflow: hidden;
}

#main-text {
    position: absolute;
    top: 27%;
    left: 24%;
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    color: white;
    mix-blend-mode:difference ;
    text-align: center;
    z-index: 11; 
  }
  
  
  .name-part {
    color: white;
    display: inline-block; 
    overflow: hidden; 
    white-space: nowrap;
  }

  .name-part:hover {
    text-decoration: underline solid 2px; 
    
  }

    .decorativeimg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../assets/ID.png'); 
    background-size: 25rem;
    background-position: right; 
    background-repeat: no-repeat; 
    transform: rotate(8deg) translateX(-200px) translateY(-150px) ; 
    z-index: 0; 
    pointer-events: none; 
  }

  .heroimg {
    max-width: 20rem;
    position: absolute;
    transform: translateX(100px) rotate(-7deg) translateY(150px);
    transition: transform 0.3s ease;

  }
  
  .heroimg:hover {
    transform: translateX(100px) rotate(-7deg) translateY(150px) scale(1.05);
  }

#home {
    z-index: 1;
    height: 60rem;
}
  .content p {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
  }

  nav {
    margin-top: 1rem;
    float:right;    
    font-weight: 200;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-item {
  font-size: 1rem;
  font-weight: 200;
  color: black;
  text-decoration: none;
  overflow: hidden;
  transform: translateY(100%); 
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-item:hover {
  text-decoration: underline;
}

.home_abt {
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.5rem;
    max-width: 40ch;
    position: absolute; 
    bottom: 50px; 
    left: 50%; 
    transform: translateX(-50%); 
  }

  #about {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
  }

  .left {
    width: 50%;
  }

  .right {
    width: 50%;
  }

  .about-title {
    position: relative; 
    font-size: 10rem;
    font-weight: 400;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 1rem; 
  }

  .about-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; 
    width: 98%;
    height: 1px; 
    background-color:black; 
  }

h3 {
    font-size: 5rem;
    font-family: "Cormorant Garamond", serif;
}

.number {
    font-size: 20rem;
    font-weight: 800;
    margin: 0;
    z-index: 10;
  }
  
  

.about-section {
    padding-top: 8rem;
    height: 50rem;
}

.about-section p {
font-size: 1.5rem;
font-weight: 300;
padding: 2rem 0 0rem 0 ;
line-height: 2rem;
}

.categories {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
}

.category_title p {
padding-bottom: 1rem;
font-size: 1.5rem;
font-weight: 300;

}

.category_title ul li {
    font-size: 1rem;
    font-weight: 200;
    padding-bottom: 1.5rem;
}

.right {
    position: relative; 
    padding: 3rem;
}

.right::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px; 
    height: 100%; 
    background-color: black; 
  }

.timeline-item {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 200;
    margin-top: 1rem;
}

.timeline-date {
    font-weight: 400;
}

.timeline-section {
    margin-top: 2rem;
}

#highschool{
    margin-top: 2rem;
}


#where-i-want-to-go {
    height: 30rem;
}

button {
    font-size: 2rem;
    margin-top: 2rem;
    font-weight: 800;
    border-radius: 0;
    padding: 1rem;
    border: black solid 1px;
    color: black;
    background-color: whitesmoke;
    width:fit-content;
    transition: all ease-in 0.3s;
}

button:hover {
    padding: 1.5rem;
}


.works-title {
  position: relative;
  font-size: 10rem;
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 1rem; 
}

.works-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; 
  width: 98%;
  height: 1px;
  background-color:black; 
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr); 
  grid-template-rows: repeat(5, 400px); 
  position: relative;
  align-items: end;
  gap:1px;
  margin-bottom: 0rem;
}

.works-grid::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 400px,
    black 401px
  ); 
  z-index: -1;
}


.work-item-container {
  position: relative;
  overflow: hidden; 
  grid-column: span 3; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-item {
  transform: translateY(100%); 
  transition: transform 0.3s ease; 
}

.work-item img {
  width: 100%; 
  height: auto; 
  max-height: 250px; 
  max-width: 300px; 
  object-fit: cover; 
  display: block;
  transition: transform 0.3s ease;
}

.work-item img:hover {
  transform: scale(1.05); 
}

.field {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
  display: inline-block;
}
.work-item-container:nth-child(1) {
  grid-column: 1 / span 3;
  grid-row: 1;
}

.work-item-container:nth-child(2) {
  grid-column: 3 / span 4;
  grid-row: 1;
}

.work-item-container:nth-child(3) {
  grid-column: 7 / span 2;
  grid-row: 1;
}

.work-item-container:nth-child(4) {
  grid-column: 10 / span 4;
  grid-row: 1;
}

.work-item-container:nth-child(5) {
  grid-column: 2 / span 3;
  grid-row: 2;
}

.work-item-container:nth-child(6) {
  grid-column: 5 / span 3;
  grid-row: 2;
}

.work-item-container:nth-child(7) {
  grid-column: 7 / span 4;
  grid-row: 2;
}

.work-item-container:nth-child(8) {
  grid-column: 11 / span 2;
  grid-row: 2;
}

.work-item-container:nth-child(9) {
  grid-column: 1 / span 4;
  grid-row: 3;
}

.work-item-container:nth-child(10) {
  grid-column: 5 / span 3;
  grid-row: 3;
}

.work-item-container:nth-child(11) {
  grid-column: 9 / span 4;
  grid-row: 3;
}

.work-item-container:nth-child(12) {
  grid-column: 1 / span 3;
  grid-row: 4;
}

.work-item-container:nth-child(13) {
  grid-column: 4 / span 3;
  grid-row: 4;
}


.work-item-container:nth-child(14) {
  grid-column: 7 / span 3;
  grid-row: 4;
}

.work-item-container:nth-child(15) {
  grid-column: 10 / span 3;
  grid-row: 4;
}

footer {
  border: solid black 1px;
  color: black;
  background-color:whitesmoke;
  padding: 1rem 3rem 5rem 3rem;
  display: flex;
  flex-direction: column;
}

footer a {
  color: black;
  font-size: 1rem;
  line-height: 3rem;
  font-weight: 200;
}

.footer_container {
  display: flex;
  justify-content:space-evenly;
}

.copyright {
  padding: 1rem;
  justify-content: space-around;
  display: flex;
  font-size: 1rem;
  font-weight: 100;

}

.contact{
  font-size: 1rem;
  font-weight: 200;
  padding-bottom: 2rem;
  line-height: 3rem;

}

