*{
    margin: 0;
}

body{
          background-image: url("imgs/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

section{
    padding: 30px 30px;

}

.landing-page{
     position: relative;                 /* required for ::after positioning */
  min-height: 90vh;                  /* full screen */
}

.landing-page{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border: #673858 1px solid;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    margin-left: 30px;
    margin-right: 30px;
    background-color: #f2e8e58e;
}

.logo-img{
    width: 150px;
    height: 190px;
    z-index: 999;
}

.logo-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-page h2{
    font-family: "Inter";
    font-weight: 500;
    font-size: 25px;
    margin: 0;
    color: #673858;
    z-index: 998;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.quote{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.landing-page p {
    color: #673858;
    font-family: "Inter";
    font-size: 11px;
    font-weight: 300;
    text-align: center;
}

.socials{
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.socials >a > div{
    width: 25px;
    height: 25px;
    background-color: #673858;
    border-radius: 50px;
    padding: 5px;
    transition: all 0.3s ease-in-out;
}

.socials img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.socials >a > div:hover{
    transform: scale(1.4);
}

.location{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
      position: absolute;
  bottom: 40px; /* adjust spacing as needed */
  left: 50%;
  transform: translateX(-50%);
}

.location p {
    font-size: 12px;
    font-weight: 300;
    text-transform: capitalize;
}

.location img{
    width: 20px;
    height: 20px;
}

.location a{
    color: #673858;
    text-decoration: none;
    font-family: "Inter";
    display: flex;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.location-div{
    display: flex;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
    border-radius: 30px;
    color: #673858;
}


.location-div:hover{
    border: #673858 1px solid;
    border-radius: 30px;
    padding: 5px 10px;
}


@media screen and (max-width:768px) {
    h2{
        font-size: 25px !important;
        letter-spacing: 2px !important;
        text-align: center;
    }    

    .landing-page{
        margin: 0 !important;
    }
    .location{
        width: 250px;
    }

    .logo-img{
        width: 130px;
        height: 170px;
    }
}


