body, html {
    height: 100%;
    margin: 0 auto;
    font-family: "Sedan",'Roboto', sans-serif;
    font-weight: 400;
    font-size: large;
}

.page-top {
    padding-top: 10vh;
    width: 100vw;
    height: 48vh;
    padding-bottom: 3vh;
    background-color: #ff713d;
}

.page-heading {
    color: #eaeaea;
    margin-left: 15vw;
    margin-right: 15vw;
    font-size: 4em;
    margin-bottom: 1vh;
}

.page-details {
    color: #eaeaea;
    margin-left: 15vw;
    margin-right: 15vw;
    font-size: 1.5em;
    
}

.page-breadcrumb {
    color: #eaeaea;
    margin-left: 15vw;
    margin-right: 15vw;
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 2vh;
    margin-top: 0;
}

.page-breadcrumb + .page-heading {
    margin-top: 1vh;
}

@media screen and (max-width: 1200px) {
    .page-heading {
        margin-left: 10vw;
        margin-right: 10vw;
        font-size: 3.5em;
    }
    .page-details {
        margin-left: 10vw;
        margin-right: 10vw;
        font-size: 1.3em;
    }
    .page-breadcrumb {
        margin-left: 10vw;
        margin-right: 10vw;
        font-size: 1em;
    }
    .heading-long {
        font-size: 2.5em;
    }
}
@media screen and (max-width: 650px) {
    .page-top {
        height: 50vh;
        padding-top: 10vh;
    }
    .page-heading {
        margin-left: 5vw;
        margin-right: 5vw;
        font-size: 3.5em;
    }
    .page-details {
        margin-left: 5vw;
        margin-right: 5vw;
        font-size: 1.3em;
    }
    .page-breadcrumb {
        margin-left: 5vw;
        margin-right: 5vw;
        font-size: 1em;
    }
    .heading-long {
        font-size: 2.5em;
    }
}

@media screen and (max-height: 600px) {
    .page-top {
        height: 50vh;
    }
    .page-details {
        font-size: 1.2em;
    }
    .page-heading {
        font-size: 3em;
    }
    .page-breadcrumb {
        margin-top: 2vh;
    }
    .heading-long {
        font-size: 2em;
    }
}


@media screen and (max-width: 400px) {
    .page-top {
        height: 50vh;
    }
    .page-details {
        font-size: 1.2em;
    }
    .page-heading {
        font-size: 3em;
    }
    .heading-long {
        font-size: 2em;
    }
}




.hero {
    height: 95vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url("../images/ambiance.jpeg") no-repeat center center; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.logo {
    display: flex;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid #fff;
    margin: 20px;
}

.hero-text > h1 {
    color: #fff;
    font-size: 4em;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.hero-text > p {
    color: #fff;
    font-size: 1.5em;
    text-align: center;
    margin: 10px;
}

@media (max-width: 400px) {
    .logo {
        width: 210px;
        height: 210px;
    }

    .hero-text > h1 {
        font-size: 2em;
        margin-left: 10px;
    }
}

.about, .chefs, .reviews {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(#090909, #161616,#090909);
    color: #eaeaea;
    padding-left: 15vw;
    padding-right: 15vw;
    padding-top: 5vh;
    padding-bottom: 5vh; 
    min-height: 50vh;
}

.section-heading {
    font-size: 2.5em;
}

.about {
    min-height: 60vh;
}

.section-images {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 14vh;
    margin-bottom: 14vh;
    max-height: 30vh;
}

.float-image {
    max-width: 30vw;
}

.float-image > img {
    width: 100%;
    height: auto;
    max-width: 50vw;
    max-height: 50vh;
    box-shadow: 0px 0px 5px 0px #000000;
}

.link {
    color: #eaeaea;
    font-style: italic;
    text-decoration: underline;
    /* font-size: 1.2em; */
    font-weight: bold;
}
.link:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.tilt-back-right {
    transform: rotate(-5deg);
    transition: ease-in-out 0.5s;
}

.tilt-back-left {
    transform: rotate(5deg);
    transition: ease-in-out 0.5s;
}
.tilt-back-right:hover, .tilt-back-left:hover {
    transform: rotate(0deg);
}

.polaroid-border {
    border: #ffffff 10px solid;
    border-bottom: #ffffff 25px solid;
}

@media screen and (max-width: 500px) {
    .section-images {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 4vh;
        margin-bottom: 4vh;
        max-height: fit-content;
        width: 60vw;
    }
    .float-image > img {
        width: auto;
    }
}

.about > p {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 3vh;

}

.rounded-btn {
    background-color: #ff713d;
    color: #eaeaea;
    border-radius: 18px;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2em;
    margin: 10px;
    cursor: pointer;
    transition: all ease-in-out 0.2s;
}

.rounded-btn:hover {
    color: #ff713d;
    background-color: #eaeaea;
    border: solid 1px #ff713d;
}

.reviews {
    background: linear-gradient(#ff713d, #f86e44, #ff713d);
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 5vh;
    padding-bottom: 5vh;
    max-width: 100vw;
}
.review {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #eaeaea;
    color: #fc5b20;
    padding: 20px;
    border-radius: 10px;
    width: 25%;
    height: 100%;
    margin: 4vh;
}
.review > p {
    color: #000000;
}

.leave-a-review {
    margin-top: 4vh;
    color: #ff713d;
    background-color: #eaeaea;
    transition: all ease-in-out 0.4s;
}
.leave-a-review:hover {
    color: #eaeaea;
    background-color:#ff713d;
    border: solid 3px #eaeaea;
    transform: scale(1.01);
}

@media screen and (max-width: 1100px) {
    .review {
        width: 100%;
        margin: 1vh;
    }
}
@media screen and (max-width: 600px) {
    .about, .chefs, .reviews {
        padding-left: 10vw;
        padding-right: 10vw;
        min-height: 80vh;
        justify-content: space-around;
    }

    .rounded-btn {
        font-size: 1em;
    }
}


.chefs-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-top: 5vh;
    padding-bottom: 5vh;
}

.chef {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background: #eaeaea;
    color: #fc5b20;
    padding: 20px;
    border-radius: 10px;
    margin: 4vh;
}

.chef-image > img {
    width: 100%;
    height: auto;
    max-width: 30vw;
    max-height: 30vh;
    border-radius: 50%;
    box-shadow: 0px 0px 5px 0px #000000;
    margin: 2vh;
}

.chef-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 20%;
}

.chef-details {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    width: 50%;
}

.chef-designation {
    margin-top: 0;
    margin-bottom: 5px;
    color: #000000;
    font-size: 1.2em;
    font-style: italic;
}

.chef-story {
    margin-top: 5px;
    margin-bottom: 5px;
    color: #000000;
}

@media screen and (max-width: 1100px) {
    .chef {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }
    .chef-image > img {
        max-width: 50vw;
        max-height: 50vh;
    }
    .chef-details {
        width: 100%;
        padding-bottom: 5px;
    }
}
