@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

*{
    font-family: "Inter", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing:border-box;
}
body{
    display: flex;
    flex-direction: column;
}

#container{
 display: flex;
 width: 100%;
 height: 100vh;
 font-weight: 400;
}
.larger_font_size{
    font-size: 38px;
}

.large_font_size{
    font-size: 34px;
}
.medium_font_size{
    font-size: 32px;
}
.small_font_size{
    font-size: 24px;
}
#info_box{
    width: 50%;
    background-color: black;
    color: white;
    background-image: url("./assets/landing_page_img.png");
    background-repeat: no-repeat;
    background-size: 45%;
    background-position: bottom 30% left 50%; 
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap:2rem
}
#get_started_btn{
    background-color: #575A85;
    color:#B8BCCC;
    width: 50%;
    border:2px solid #B8BCCC;
    padding:1rem 0;
    border-radius: 10px;
}
#btn_box{
    width: 50%;
    background-color: #575A85;
    color: #B8BCCC;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:2rem;
    padding: 1rem;
    text-align: center;
}


#onclick_container{
    background-color: black;
    color: rgba(184, 188, 204, 0.5);
    display: none;
    font-weight: 700;
    flex-direction: column;
    gap:4rem;
}
#first_info_div{
    display: flex;
    flex-direction: column;
    padding:3rem;
    margin-bottom: 4rem;
    gap:1rem;
}
#first_info_div > div:nth-child(1){
    margin-bottom: 3rem;
}
#first_info_div > div:nth-child(2),#first_info_div > div:nth-child(3){
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;  
 }
#map_div{
    background-color: rgba(87, 90, 133, 1);
    padding: 2% 3rem 4% 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:8%;
    height: 100vh;
}
#map_frame{
    width: 100%;
    height: 80%;
}
#second_info_div{
    display: flex;
    flex-direction: column;
    gap:1rem;
    padding: 3% 3rem;
}
#post_grid_div{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:2rem;
    padding:2rem 3rem;
}
#post_grid_div > div{
    display: flex;
    flex-direction: column;
    background-color: rgba(87, 90, 133, 1);
    border-radius: 15px;
    gap:2rem;
    padding:3rem 4rem;
}
#onclick_container > h1{
    text-align: center;
    margin: 2% 0;
    color:#B8BCCC;
}
#search_div{
    display: flex;
    align-items: center;
    justify-content: center;
    padding:0 3rem;
    margin:3rem 0;    
}
input{
    width: 100%;
    padding:15px 5rem;
    position: relative;
    border:2px solid #575A85;
    background-color: black;
    border-radius: 10px;
    color:#B8BCCC;
}
#search_div > img{
    position: absolute;
    left:4.5rem;
}
#first_info_div span , #second_info_div  span, #post_grid_div  span{
    font-weight: 300;
}

@media screen and (max-width: 1024px) {
    .larger_font_size{
        font-size: 34px;
    }
    
    .large_font_size{
        font-size: 30px;
    }
    .medium_font_size{
        font-size: 28px;
    }
    .small_font_size{
        font-size: 20px;
    }
  }

  @media screen and (max-width: 1024px) {
    #post_grid_div{
        grid-template-columns: 1fr;
    }
    #onclick_container > h1{
        margin: 3rem 0;
    }
  }

  @media screen and (max-width: 768px) {
    #first_info_div{
        gap:3rem;
    }
    #first_info_div > div:nth-child(2),#first_info_div > div:nth-child(3){
        display: grid;
        grid-template-columns: 1fr 1fr; 
        grid-row-gap:2rem
     }

     .larger_font_size{
        font-size: 30px;
    }
    
    .large_font_size{
        font-size: 26px;
    }
    .medium_font_size{
        font-size: 24px;
    }
    .small_font_size{
        font-size: 16px;
    }

  }

  @media screen and (max-width: 480px) {
     .larger_font_size{
        font-size: 26px;
    }
    
    .large_font_size{
        font-size: 22px;
    }
    .medium_font_size{
        font-size: 20px;
    }
    .small_font_size{
        font-size: 12px;
    }

  }
 