/* General */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f8f9fa;
}
nav {
    background-color: #000000;
    padding: 10px;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
nav li {
    position: relative;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
}
nav li:hover {
    background-color: #555;
}
nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    padding: 0;
    width: 150px;
    z-index: 1000;
}
nav li:hover ul {
    display: block;
}
nav li ul li {
    padding: 10px;
    white-space: nowrap;
    display: block;
}
nav li ul li:hover {
    background-color: #666;
}
.content {
    /*display: flex;*/
    align-items: center;
    /* padding: 0px 20px; */
}

/* .content img {
    width: 250px;
    height: auto;
    margin-right: 20px;
    border-radius: 10px;
} */

.content .text {
    display: flex;
    flex-direction: column;
}
.content p {
    /* max-width: 600px; */
    font-size: 25px;
    margin: 20px 120px;
}
.content ul{
    display:block;
}
.content ul li{
    display:inline-block;
    width:100%;
}

.content ul li img{
    width:100px;
}
.content ul li span{
    font-size:35px
}

.content .text{
    /* font-size:35px; */
    width:100%;
    text-align: center;
    min-height: 650px;
}

.banner-box{

    width: 100%;
    padding-top: 25%;
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    width: 100%;
    bottom: 0;
}

footer a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
footer a img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
footer a:hover {
    text-decoration: underline;
}

.watermark {
    width: 250px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea.watermark {
    resize:vertical;
}

/* Menu */
/* #menu footer{
    position: relative;
} */

.menu-container {
    margin-bottom: 75px;
    width:80%;
    margin: 0px 10%;
}

.menu-container .menu-header{
    font-size: 25px;
    text-align:center;
}

.menu-container .menu-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.menu-container .menu-item{
    flex: 1 1 calc(32%);
    min-width: 250px; 
    /* background-color: lightgray; */
    padding: 20px;
    text-align: center;
    /* border: 1px solid #ddd; */
    min-height:250px;

}

.menu-container .menu-item-img{
    width: 250px;
    height:250px;
    /* padding-top: 25%; */
    margin-right: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    float:left;
    border-radius: 10px;
    overflow: hidden;
}

.menu-container .menu-item-title{
    font-weight: bold;
    font-size: 30px;
}

.menu-container .menu-item-description{
    font-size: 20px;
}

/* Gallery */
#gallery footer{
    position: relative;
}

#gallery .message {
    margin:75px 10%;
}

#gallery .image-container{
    margin: 75px 10%;
}

#gallery .image-container img{
    width: auto;
    height: 300px;
    transition: transform 0.3s;
}

#gallery .image-container img:nth-child(odd){
    transform: scale(1.2);
}

#gallery .image-container img:nth-child(even){
    transform: scale(0.8);
}


/* About Us */
#aboutus footer{
    position: relative;
}

#aboutus .banner-box
{
    margin-bottom: 75px;
}

#aboutus .content{
    text-align: center;
}

#aboutus .contact{
    display: flex;
    margin:75px 10%;
}

#aboutus .contact > div{
    flex-direction:row;
    width: 50%;
}

#aboutus .direction{
    display: flex;
    align-items: center;
    justify-content: center;
}