/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/

/* font-family: 'Karla', sans-serif; */

::selection {
  background-color: #e4e4e4;
  color: rgb(20, 20, 20);
}


.header {
    position: relative;
    width: 100%;
    height: 60vh;
    background-color: rgb(22, 22, 22);

}

.hero_text {
    position: relative;
    display: inline-block;
    top: 40vh;
    left: 15%;
    line-height: 6rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    font-size: 7rem;
}



.about_container {
    position: relative;
    width: 100%;
    height: auto;
    background-color: rgb(22, 22, 22);
    padding-bottom: 10rem;
}

.client_logo {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 2rem 0 2rem;
    
}

.client_logo img {
    width: 15%;
    height: auto;
    display: block;
}

.michau_about_info_text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    display: flex; /* Enable flexbox */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    gap: 4rem; /* Add spacing between the boxes */
    justify-content: center; /* Center the boxes horizontally */
    
}

.michau_about_info_text .box-1,
.michau_about_info_text .box-2 {
    flex: 2 2 40%; /* Allow boxes to grow, shrink, and take up 45% of the container */
    min-width: 200px; /* Set a minimum width to prevent boxes from becoming too small */
    padding: 1rem; /* Add padding inside the boxes */
    
}


  
  .project_header{
    position: relative;
    display: block;
    padding: 2rem 0 2rem;
    color: rgb(242, 242, 242);
    letter-spacing: 0.2rem;
    font-size: 2rem;
    
  }

  .image_gallery{
    position: relative;
    left: 50%;
    transform: translate(-50%);
    justify-content: center;
    width: 80vw;
  }
  
  .project_disclaimer{
    position: relative;
    height: 10vh;
    width: 40vw;
    color: rgb(242, 242, 242);
    display: inline-block;
    top: 2rem;
    left: 10%;
    font-size: 1rem;
    line-height: 2rem;
    font-weight: 300;
    font-kerning: normal;
    color: rgb(242, 242, 242);
  }


  /* ----------------------------------IMAGE GALLERY--------------------------------- */

  .huas_gallery {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 2rem 0 2rem 0; /* Add padding for spacing around the content */
    border-radius: 8px; /* Optional: Add rounded corners */
  }

  .huas_gallery img {
    width: 100%; /* Set the width of the images */
    height: 80vh; /* Set the height of the images */
    border-radius: 8px; /* Optional: Add rounded corners */
    object-fit: cover; /* Ensure images cover the grid cell */
    display: block; /* Ensure the image is treated as a block-level element */
    margin: auto; /* Center the image horizontally and vertically */
  }

  .huas_gallery img:hover {
    
    transform: scale(1.01); /* Slightly enlarge the image on hover */
    transition: transform 0.3s ease; /* Smooth transition for the scaling effect */
  }


  .huas_gallery_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Create 3 equal columns */
    gap: 2rem; /* Add a gap of 2rem between rows and columns */
  }

  @media only screen and (max-width: 37.5em) {
    .huas_gallery_grid {
        grid-template-columns: 1fr;
    }
}
  
  .huas_gallery_grid img {
    width: 100%; /* Set the width of the images */
    height: 30rem; /* Set the height of the images */
    border-radius: 8px; /* Optional: Add rounded corners */
    object-fit: cover; /* Ensure images cover the grid cell */
    display: block; /* Ensure the image is treated as a block-level element */
    margin: auto; /* Center the image horizontally and vertically */
  }

  .huas_gallery_grid img:hover {
  
    transform: scale(1.05); /* Slightly enlarge the image on hover */
    transition: transform 0.3s ease; /* Smooth transition for the scaling effect */
  }