@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Pacifico&family=Rancho&display=swap');


nav{
    background:#F2D2BD;
}
nav a{
    text-transform: uppercase;
}

nav .navbar-brand{
    font-family: 'Lobster', cursive;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-size: 2rem;
}
.style-logo{
    font-family: 'Lobster', cursive; 
}

.showcase-image{
    background: url('../img/bg2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;

}
.style-heading{
    font-family: 'Pacifico', cursive;
    
}
.showcase-text{
    background: #ea7069; 
   

}
.showcase{
    width: 100%;
    height: 80vh;
}
/* //utilities */
.btn-purple{
    background:  #fff;
    color:#ea7069;
    border-radius: 20px;
}

.btn-pink{
    background:  #f4a390;
    color:#fff;
    border-radius: 20px;
}
.bg-pink{
    background:  #F2D2BD;
}


.btn-read{
    background:  #F2D2BD;
    color: #fff;
    border-radius: 20px;
    border:none;
}

/* footer */
footer{
    position:relative;
}
.toNavbar{
    position:absolute;
    bottom:10px;
    right:10px;
}
.services{
    background: #F2D2BD;
}
.contact{
    background: #F2D2BD;
    border-top-left-radius: 20px;
}
.work-hours{
    background: #999;
}
.site-info{
    background: #999;
    border-top-right-radius: 20px;
}
.quick-menu{
    background: #F2D2BD;
}

.rounded-border-top{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.works{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap:20px;
}
.works > div{
    min-height: 200px;
}

.works > div:nth-of-type(1){
    grid-row: 1/ 3;
}
.works > div:nth-of-type(5){
    grid-row: 2/ 4;
}


/* //contact */
.contacts{
    box-shadow:  0px 5px 20px 25px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
.contact-info{
    background: #F2D2BD;
}
.booking .bg-pink:focus{
    border: #fff;
    color:#000;
    background: #f4a390;
}
.booking form button{
    border-radius: 20px;
}

.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
.alert {
    position: fixed;
    top:0;
    width:100%;
}

/* about */
.about-showcase-image{ 
    height: 600px;
}
.about-showcase-image image{ 
    object-position: center;
    object-fit: cover;
}

/* //service */
.service-image{
    border-radius: 20px;
    
}


/* // media queries */
@media (max-width:760px){

    .showcase{
        width: 100%;
        height: 90vh;
    }
    .showcase-image{
        height: 40%;
    }
    .showcase-text{
        background: #ea7069; 
        height:60%
    
    }
    .works{
        grid-template-columns: 1fr;
    }
    .works > div:nth-of-type(1){
        grid-row: 1;
    }
    .works > div:nth-of-type(5){
        grid-row: 2;
    }
    .site-info,
    .contact {
        border-radius: 0;
    }
    

}
@media (max-width:576px){

    .showcase{
        width: 100%;
        height: 90vh;
    }
    .showcase-image{
        height: 40%;
        background: url('../img/bg2-small.jpg');
    }

    .showcase-text{
        background: #ea7069; 
        height:60%
    
    }
    .works{
        grid-template-columns: 1fr;
    }

}