
/* header, common elements are styled in style-services.css file */

.hero-section::after{
    content: "43 PREMIUM";
}

/* styling individual sections */
/* banquet section */
.banquet-section{
    display: flex;
    justify-content: space-between;
}
.banquet-section > .wrapper-leaf:nth-child(1){
    width: 15%;
    top: 0;
    right: -3%;
}
.banquet-section > .wrapper-leaf:nth-child(2){
    width: 15%;
    transform: rotateY(180deg);
    bottom: -2%;
    left: -6.5%;
}
.banquet-section > .box-description{
    padding-top: 80px;
    width: 40%;
}
.banquet-section > .collage-container{
    width: 50%;
}
.collage-container > .image-collage{
    width: 65%;
    height: 65vh;
    border: 3px solid var(--border-color);
    border-radius: 50px;
    position: relative;
}
.collage-container > .image-collage::before{
    content: "DELICIOUS AS U ARE";
    background-color: var(--primary-theme);
    padding: 0px 10px;
    color: var(--green-theme);
    font-family: var(--montserrat-font);
    font-weight: bold;
    font-size: var(--border-text-fs);
    letter-spacing: 2px;
    position: absolute;
    top: 0;
    left: 10%;
    transform: translateY(-50%);
}
.image-collage > .images-wrapper{
    background-color: var(--primary-theme);
    width: 90%;
    height: 90%;
    position: relative;
    transform: translate(35%, 20%);
}
.images-wrapper > img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.images-wrapper > img:nth-child(1){
    transform: rotate(20deg);
}
.images-wrapper > img:nth-child(2){
    transform: rotate(-20deg);
}


/* media queries */
/* mobile - 0px to 768px */ 
@media screen and (max-width: 768px) {
    
    /* styling individual sections */
    /* banquet section */
    .banquet-section{
        /* background-color: aqua; */
        flex-direction: column;
        row-gap: 50px;
    }
    .banquet-section > .wrapper-leaf:nth-child(1){
        width: 20%;
        top: 2%;
    }
    .banquet-section > .wrapper-leaf:nth-child(2){
        width: 20%;
        bottom: 0;
        left: -8%;
    }
    .banquet-section > .box-description{
        /* background-color: yellow; */
        padding-top: 0px;
        width: 100%;
    }
    .banquet-section > .collage-container{
        /* background-color: lightseagreen; */
        width: 100%;
    }
    .collage-container > .image-collage{
        /* background-color: red; */
        width: 90%;
        height: 55vh;
    }
    .image-collage > .images-wrapper{
        transform: translate(22%, 18%);
    }
    
}