body{
    /* need to take off margins */
    margin: 0; 
    background-color: white;
   
   
}


/* NAVIGATION  */
.header{
    height: 60px; 

    display:flex;
    flex-direction: row; 
    justify-content: space-between; 

    /* making sure the header doesn't move */
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0;
    /* USE Z-INDEX TO MAKE HEADER APPEAR ABOVE THUMBNAIL (default = 0) */
    z-index: 100; 

    background-color:  #ecf0f3;  
    /* adding a border */
    border-bottom-width: 1px; 
    border-bottom-style:hidden;
}


.logo{
  margin-left: 80px;
  align-content: center;
  cursor: pointer;
  transition: 0.15s; 
  height: 70%;
  margin-top: 12px;
   
}

.logo:hover{
    opacity: 85%; 
    transition: 0.15s; 
}


.header_buttons{
    display:flex; 
    justify-content: center; 
    align-items: center; 
    padding-right: 100px;
}


.home_container ,
.about_container,
.portfolio_container{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px; 
  margin-left: 20px; 
 
 
}

.contact_container {
    margin-right: 0;
  }

.button1, .portfolio-button{
    font-family: Outfit; 
    font-weight: 500; 
    font-size: 15px;
    color: #293241; 
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-color: #293241; 
    border-style:solid;
    border-width: thin;
    cursor:pointer; 
    transition: 0.15s; 

}

.button1:hover{
    opacity: 0.7;
    /* color:  #f29389;
    border-color:  #f29389; */
}

.button2{
    border-radius: 0;
    border: none; 
    font-family: Outfit; 
    font-weight: 700; 
    font-size: 15px;
    /* color: #f29389;  */
    color: #293241;
    cursor: pointer; 
    transition: 0.15s; 
}

.button2:hover{
  opacity: 0.7;
 
}

.dropdown:hover .portfolio-button { opacity: 0.7; }


/* GRAPHIC */
.Container {
    padding-top:0px;
    padding-right: 0; 
    padding-left: 0;
    position: absolute;  
}

.main-img{
    position: relative;
    width: 100vw;
    overflow-x: hidden;
    object-fit: contain;
}


/* PROJECTS */

.featured-work{
  font-family: outfit;
  font-weight: 500;
  font-size: 2.1rem;
  color: #293241;

}

.projects-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #ecf0f3;
}

.image-display img {
  /* width: 300px;
  height: 300px; */
  width: 800px;
  height: 400px;
  object-fit: cover;
  border-radius: 3px;
  transition: opacity 0.4s ease;
}

#projectImage{
    opacity: 0.8;
}

.project-tags {
  margin-top: -2%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.project-tags button {
  background: none;
  border: none;
  color: #293241;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
  font-family: outfit;
  font-weight: 300;
  font-size: 20px;
}

.project-tags button:hover {
  color: #888;
}

.view-button {
  display: inline-block;
  margin-top: 30px;
  padding: 20px 28px;
  background-color:#293241;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  transition: background-color 0.3s;
  font-family: Outfit; 
  font-weight: 500; 
  font-size: 1.1rem;
  text-align: center;
}

.view-button:hover {
  background-color: #333;
}

.project-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 300;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.project-btn:hover {
  color: #888;
  font-weight: 500;
}

/* When you click on project title */
.project-btn.active {
  font-weight: 700;
  color: #000;
}

.banner{
    display: flex;
    height: 80px;
    background-color:white;
}

.link{
    flex-direction: row;
    padding-top: 2%;
    margin-left: 10%;
    font-size: 1.1rem;
    font-family: futura;
    text-decoration: none;
    color:#293241;
}




/* MEDIA QUERIES */
@media (max-width: 1056px) {

    .main-img{
        top: 50;
    }

  .projects-preview {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .image-display img {
    margin-top: 10%;
    width: 80vw;
    height: auto;
    aspect-ratio: 1 / 1.12;
    
  }

  .project-tags {
     margin-top: -5%;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  
   
  }

  .project-tags button {
    font-size: 1.5rem;
    padding: 8px;
  }

  .button1, .portfolio-button{
    
    padding: 4px 8px;

  }

  .logo{
  margin-left: 40px;
   
  }


 
}

@media (max-width: 580px) {
  .image-display img {
    height: 300px;
    width: 90vw;
    margin-top: 10%;
    
  }

  .project-tags {
    margin-top: -5%;
    flex-direction: column;
    gap: 10px;
  }

  .project-tags button {
    font-size: 1.2rem;
    padding: 8px;
  }


}




/*ALL WORK OR FUN STUFF BUTTONS */
/* .image-buttons {
  position: relative;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 1999;
  background-color:white;
  padding: 10px;
}

.image-button {
  position: relative;
  width: 40vw; 
  max-width: 400px;
  height: auto;
  aspect-ratio: 1 / 1; 
  overflow: hidden;
  border-radius: 3px;
  text-decoration: none;
  background-color:#eafbfd;
}

.image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.image-button:hover img {
  opacity: 0.7;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color:#ecf0f3;
  font-weight: 100;
  font-size: 20px;
  font-family:outfit;
  text-align: center;
  pointer-events: none;
} */


/* FOR MEDIA QUERIES LATER */
/* PROJECTS */
/* .projects-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #ecf0f3;
}

.image-display img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: opacity 0.4s ease;
} */