@font-face {
    font-family: bob;
    src: url(./Fonts/Roboto-Regular.ttf);
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  /* reset */
  :root{
    --text-color: #2c346D;
    --light-color: #F5F7FF;
    --primary-color : #DB7093;
  }
  /* reset */
body, p, a, ul, li{
    margin: 0;
    padding: 0;
    text-decoration: none;
}
li{
    list-style-type: none;
}
body{
    overflow-x: hidden;
    font-family: bob, sans-serif;
    color: var(--text-color);
}

/* Header Styling */
nav{
    display: flex;
    padding: 20px 30px;
    height: 80px;
    border-bottom: 1px solid #f2f2f2;
}
.logo{
    cursor: pointer;
}
.hamburger{
    margin-left: auto;
    padding: 5px 15px;
    cursor: pointer;
    
} 
.ham-popup{
    height: 1000vh;
    width: 50%;
    position: absolute;
    left: -100%;
    top: 0;
    background-color: #fff;
    transition:  .5s ease-in-out;
    z-index: 1000;
}
.ham-popup.open {
    
    left: 0%; 
}
.ham-content{
    display: flex;
    flex-direction: column;
    padding: 40px;
}
.ham-content{
    
    
}
.ham-content span {
    padding: 10px 0;
    cursor: pointer;
    transition: color .3s ease-in-out, font-weight .1s ease-in-out ;
    color: #2c346D;
}
.ham-content span:hover a{
    font-weight: bold;
    color: var(--primary-color);
}
/* Main Styling */

main{
}
.about{
    padding: 20px 0;
}
.text-wrap{
    background-color: var(--primary-color);
    padding: 8px;
    color: var(--light-color);
    border-radius: 8px;
    margin: 50px 0; 
    max-width: 100%;
    font-weight: bolder;
    cursor: pointer;
    transition: .3s ease-in;
}
.text-wrap:hover{
    background-color: #DB7060;
}

.about-text{
    text-align: justify;
}

/* Review Section */
.review{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    transition: .3s ease-in-out;
}

.top{
    width: 200px;
    height: 200px;
    border-radius: 50%;
}
.top img{
    object-fit: cover;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}
.bottom{
    padding: 20px 0;
    text-align: center;
}
.review:hover{
    transform: scale(1.1);

}

/* Footer section */
footer{
    background-color: var(--primary-color);
    width: 100%;
    margin-top: 50px;
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: var(--light-color);
    font-weight: bold;
    height: 100px;
    width: 100%;

}
.footer-content span a{
    padding: 0px 5px;
    cursor: pointer;
    color: #fff;
}
.footer-content span:hover a{
    border-bottom: 1px solid #fff;
}



/* Utilities */
.container{
    margin: auto;
    max-width: 380px;
}
/* Overlay */
.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dim effect */
    z-index: 999; /* Make sure it is on top */
    display: none; /* Hidden by default */
    transition: opacity 0.3s ease-in-out;
}

/* When the overlay is active */
.body-overlay.active {
    display: block;
    opacity: 1;
}
@media only screen and (min-width: 921px) and (max-width: 1400px) {
    nav{
        padding: 20px 90px;
    }
    body{
    }
    .container{
        margin: auto;
        max-width: 980px;
    }
    .review-grid{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-column-gap: 20px;
    }
    

}
@media only screen and (min-width: 950px) and (max-width: 1050px) {
    .review-grid{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-column-gap: 10px;
    }
        .container{
            margin: auto;
            max-width: 880px;
        }
    }

@media only screen and (min-width: 450px) and (max-width: 949px) {
    nav{
        padding: 20px 50px;
    }
    .container{
        margin: auto;
        max-width: 580px;
    }
    .review-grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 20px;
    }
}