body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: gainsboro;
}

* {
    transition: all 0.5s;
}

/* .offcanvas, .bg-body-tertiary {
    background-color: #222 !important;
}

.navbar-brand, .navbar-toggler {
    color: gainsboro;
} */

.navbar {
    background-color:#f18400;
}

/* .navbar-brand {
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: blue;
} */

.nav-item {
    padding: 0 10px;
    font-size: 1.2em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-bottom: 10px;
    border-radius: 5px;
}

.offcanvas-header {
    background-color: #f18400;
}

.nav-item:hover {
    background-color: #ffc700;
}

.navbar-toggler {
    transition: all 0.4s ease;
}

.navbar-toggler:hover {
    background-color: #ffc700;
}

.btn-close {
    transition: all 0.4s ease;
}

.btn-close:hover {
    background-color: #ffc700;
}

.container1 {
    position: relative;
    text-align: left;
    color: var(--text-color);
    margin: 0;
    margin-top: 1vh
}

.container1 img {
    width: 100%;
    height: 65vh ;
    object-fit: cover;
    opacity: 1;
}
  
.text-on-background{
    width: 50%;
    position: absolute;
    top: 0;
    left: 10%;
    transform: translate(-15%, 40%);
    font-size: 4vw;
    color: #fff;
}

.text-on-background p {
    margin: 0;
    
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #111;
}


@keyframes fadeInUp {
    0% {
      transform: translate(-15%, 100%);
      opacity: 0;
    }
    80%{
        opacity: 1;
    }
    100% {
      transform: translate(-15%, 40%);
      opacity: 1;
    }
}
  
.fadeInUp-animation {
    animation: 1.5s fadeInUp;
}

.background {
    margin-top: 1vh;
    width: 100%;
    height: 50%;
    opacity: 0.6;
}

.btn1, .btn2{
    margin-top: 15px;
    margin-left: 18%;
    width : 50%;
    border: 2px solid #fff;
    border-radius: 10px;
    background-color: transparent;
    color: #fff;
    padding: 20px 20px;
    font-size: 2.5vh;
    cursor: pointer;
}

.btn1:hover {
    border : 2px solid #ffc700;
    color: #ffc700;
}

.container2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 5vh;
    margin-bottom: 0;
}

.container2-images {
    max-width: 50%;
}

.container2-images img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    border-radius: 5px;
    margin-top: 1vh;
}


.container2 img:hover {
    opacity: 0.85;
}

.container2-text {
    max-width: 50%;
}

.desc {
    padding: 13%;
}

.desc h3 {
    font-size: 3vh;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.desc .btn-menu {
    border: 2px solid #222;
    background-color: transparent;
    color: #222;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 2.5vh;
    cursor: pointer;

}

.group {
    padding : 0 15%;	
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.group-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 10px;
}

.desc .btn-reserve {
    border: 2px solid #f18400;
    background-color: #f18400;
    color: #222;
    padding: 10px 15px;
    font-size: 2.5vh;
    cursor: pointer;
    width: 100%;
}

.group a {
    text-decoration: none;
}

.desc .btn-menu:hover {
    border : 2px solid #f4510b;
    color: #f4510b;
}

.desc .btn-reserve:hover {
    background-color: #f4510b;
    color: #fff;
}

footer {
    bottom: 0;
    width: 100%;
    margin-top: 3%;
    border-radius: 5px;
    background-color: #f18400;
    display: flex;
    align-items: start;
    justify-content: center;
    vertical-align:baseline;
    flex-direction: row;
    text-align: center;
    transition: all 0.5s ease;
}



    footer p a {
        color: var(--text-color);
        /* font-size: 16px; */
        text-decoration: none;
        border-radius: 5px;
        transition: all 0.5s ease;
    }

    footer p {
        float: left;
        /* font-size: 1.8vh; */
        word-spacing: 2px;
    }

    footer ul {
        list-style: none;
        display: flex;
        /* flex-direction: column; */
        justify-content: center;
        align-items: center;
        padding-inline-start: 0;
    }

        footer ul li {
            padding: 3%;
            margin-right: 7%;
            transition: all 0.5s ease;
        }

            footer ul li a {
                color: var(--text-color);
                /* font-size: 1.8vh; */
                text-decoration: none;
                padding: 5px;
                border-radius: 5px;
                transition: all 0.5s ease;
            }

.opening-hours {
    margin-left: 20px;
    padding: 10px;
    display: flex;
    vertical-align: baseline;
    flex-wrap: wrap;
    width: 40%;
}

.line {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    text-align: left;
}

.line a {
    text-decoration: none;
    color: var(--text-color);
}

.line a:hover {
    text-decoration: underline solid #ffc700;
    color: #ffc700
}

.line p {
    padding: 0;
    margin: 0;
}

.footerCnt {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    /* align-items: center; */
    width: 50%;
    vertical-align: baseline;
    flex-direction: row;
    text-align: left;
}



footer ul li a:hover {
    background-color: #ffc700;
}

.copyright {
    /* background: #222; */
    /* width: 98%; */
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}

    .copyright p {
        float: left;
        /* font-size: 1.8vh; */
        word-spacing: 2px;
    }

        .copyright p a {
            color: var(--text-color);
            /* font-size: 1.8vh; */
            text-decoration: none;
        }

            .copyright p a:hover {
                color: var(--secondary-color);
            }

footer ul li a:hover {
    cursor: pointer;
}


.fa, .fa-brands {
    /* padding: 20%; */
    /* font-size: ; */
    width: 4vh;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
}

.fa-facebook, .fa-twitter, .fa-instagram, .fa-youtube, .fa-facebook-messenger {
    padding: 20%;
    background: transparent;
}

.fa-twitter {
    padding: 20%;
    background: transparent;
}

.fa-instagram {
    padding: 20%;
    background: transparent;
}

.fa-youtube {
    padding: 20%;
    background: transparent;
}

@media screen and (max-width: 1025px) {

    .desc h3 {
        font-weight: 600;
        font-size: 2.5vh;
    }

    .container2 {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin-top: 5vh;
        margin-bottom: 5vh;
    }

    .container2-images, .container2-text {
        max-width: 100%;
    }

    .desc {
        font-size: 3vh;
        padding: 5%;
    }

    .container2-images img {
        width: 100%;
        height: 40vh;
        object-fit: cover;
        border-radius: 5px;
        margin-top: 1vh;
    }
    
}

@media screen and (max-width: 350px) {
    .group-row {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
    }
    .group {
        justify-content: center;
    }
    .btn-menu, .btn-reserve {
        width: 100%;
    }

    .btn-menu {
        margin-top: 10px;
    }
    
}

@media screen and (max-width: 600px) {
    footer {
        flex-direction: column;
    }

    .footerCnt, .opening-hours {
        width: 100%;
        justify-content: space-between;
        flex-direction: column;
        text-align: left;
    }

    .opening-hours{
        margin: 0;
    }

    .copyright {
        width: 100%;
        align-items: center;
    }

    .group {
        padding : 0 ;
    }
    
}

@media screen and (max-width: 1025px) and (min-width: 768px) and (min-height: 1366px) {
    .text-on-background {
        margin-left: 5%;
        width: 90%;
        font-size: 7vw;
    }
    .text-on-background p {
        -webkit-text-stroke-width: 0.4px;
    }

    .btn1, .btn2 {
        padding: 5px;
    }

    .container1 img {
        height: 40vh;
    }
}

@media screen and (max-width: 767px) and (min-width: 541px) {
    .text-on-background {
        margin-top: 8%;
        margin-left: 5%;
        width: 90%;
        font-size: 8vw;
    }

    .text-on-background p {
        -webkit-text-stroke-width: 0.4px;
    }

    .btn1, .btn2 {
        padding: 5px;
    }

    .container1 img {
        height: 40vh;
    }
}

@media screen and (max-width: 540px) and (min-width: 430px) {
    .text-on-background {
        margin-top: 5%;
        margin-left: 5%;
        width: 90%;
        font-size: 6.5vw;
    }

    .text-on-background p {
        -webkit-text-stroke-width: 0.4px;
    }

    .btn1, .btn2 {
        padding: 5px;
    }

    .container1 img {
        height: 40vh;
    }
    
}

@media screen and (max-width: 430px) {
    .text-on-background {
        margin-top: 10%;
        margin-left: 5%;
        width: 90%;
        font-size: 8vw;
    }

    .text-on-background p {
        -webkit-text-stroke-width: 0.4px;
    }

    .btn1, .btn2 {
        padding: 5px;
    }

    .container1 img {
        height: 40vh;
    }
}	
