main {
    padding: 40px;
    /* text-align: center; */
    background-color: rgb(237, 236, 236);

}


.project-header{
    padding-bottom: 10px;
    text-align: center;
}
.project-gallery .main-image{
  display: flex;
  justify-content: center;
  align-items: center;

}
.project-header h1{
    font-size: 36px;
    font-weight: 700;
}
.project-gallery img {
    height: 450px;
    width: 80%;
    /* max-width: 800px; */
    margin: 10px 0;
    border-radius: 10px;
    transition: transform 0.9s ease;
    /* border: 2px solid red; */

}
.project-gallery img:hover {
    transform: scale(1.05);
}
.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    /* border: 2px solid red; */
}
.gallery-thumbnails img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gallery-thumbnails img:hover {
    transform: scale(1.1);
}
.project-details ul {
    list-style-type: circle;

    padding: 0;
}
.project-details li {
    padding: 5px 0;
    font-size: 1.1em;
}
.project-overview,.project-highlight, .project-amenities, .project-floor-plans, .project-location, .project-contact {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.project-amenities ul {
    list-style:circle;
    padding: 0;
    columns: 2;
    
}


.project-amenities li {
    padding: 5px 0;
}
.project-contact, .floor-plan {
    margin-bottom: 15px;
    text-align: center;
}
.floor-plan {
    margin-bottom: 15px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/
/**
 * responsive for screen between 300pxc and  than 600px screen
 */
 @media (min-width: 300px) and (max-width: 580px) {
    main {
        padding: 20px;
        text-align: center;
        background-color: lightgray;

    }
    .project-gallery .main-image{
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .project-gallery img {
        height: 300px;
        width: 90%;
        /* max-width: 800px; */
        margin: 10px 0;
        border-radius: 10px;
        /* border: 2px solid red; */
    
    }
    .gallery-thumbnails {
        display: flex;
        justify-content: center;
        gap: 10px;
        /* border: 2px solid red; */
    }
    .gallery-thumbnails img {
        width: 70px;
        height: 80px;
        object-fit: cover;
        border-radius: 5px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    .gallery-thumbnails img:hover {
        transform: scale(1.1);
    }
    .project-details ul {
        list-style: circle;
        padding: 0;
    }
    .project-details li {
        padding: 5px 0;
        font-size: 1.1em;
    }
    .map-container iframe {
        width: 100%;
        height: 300px;
        border: none;
    }
   
  
   }
  
  
  
  /**
   * responsive for larger than 600px screen
   */
  
  @media (min-width: 600px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-2: 1.875rem;
  
    }
}