@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #0b1625;

}

.header {
    background-color: #0b1625;

    padding: 5px;
    height: 70px;

    display: flex;
    justify-content: space-around;
    align-items: center;

    position: sticky;
    top: 0;

    z-index: 1000;
}

.navbar-container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-container ul {
    list-style-type: none;
    margin: 0;
    padding: 0;

    gap: 30px;
    display: flex;
    text-align: center;
}

.navsec a{
    text-decoration: none;
    color: #774a2e;
    font-family: "Merriweather";
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;

}

.navicon{
    display: none;

    background: transparent;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #774a2e;
    transition: all 0.3s ease-in-out;
}

.unternav {
    display: none;
    position: absolute;

    top: calc(100%);
    background-color: rgb(11, 5, 78);
    border-radius: 7px;

    box-shadow: 2px 2px 5px black;
    font-family: sans-serif;
    text-transform: uppercase;
    font-weight: bold;
}

/* über uns */
.mekong-img {
    position: relative;
    height: 100vh;
    background: url("images/mekongdelta.jpg") center/cover no-repeat;
    background-attachment: fixed;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mekong-img::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 5, 59, 0.4);
    z-index: 1;
}

.mekong-title {
    text-transform: uppercase;
    font-family: "Merriweather";
    font-size: 70px;
    color: #774a2e;
    text-shadow: 2px 2px 4px black;
    z-index: 2;
  
}

.mekongdelta-info {
    color: bisque;
    font-family: "Merriweather";
    max-width: 800px;
    text-align: center;
    text-shadow: 2px 2px 4px black;
    padding: 0 20px;
    z-index: 2;

}

/* index */
.index-bg {
    height: 800px;
    background-image: url("images/menu_karte.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: #0b1625;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.greet-headline {
    text-transform: uppercase;
    font-family: "Merriweather";
    font-size: 60px;
    color: #774a2e;
    text-shadow: 2px 2px 4px black;
    text-align: center;
}

.greet-underline {
    color: black;
    font-family: "Merriweather";
    font-size: 20px;
    text-shadow: 2px 2px 9px black;
    text-align: center;
    font-weight: bold;

}


.specialmeal-container {
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.specialmeal {
    align-self: center;
    margin-bottom: 0;
    padding-bottom: 0;

    text-shadow: 2px 2px 5px black;
    font-size: 25px;
}

.meal-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;
    padding-bottom: 20px;

    margin-top: 0;
    padding-top: 0;
}

.meal-card-img {
    width: 220px;
    height: auto;
    border-radius: 5px 5px 0 0;
    padding: 30px;
}

.meal-names {
    font-size: 22px;
    font-family: "Merriweather";
    text-transform: uppercase;
    color: #774a2e;
    margin: 0;
    padding-top: 0;
    text-align: center;
}

.meal-info {
    color: aliceblue;
    text-align: center;
    max-width: 268px;
    padding-bottom: 20px;
}
    
/* googlemaps */
iframe {
    width: 100%;
    height: 500px;
}

/*überschriften*/
h2{
    text-transform: uppercase;
    font-family: "Merriweather";
    color: #774a2e;
    text-shadow: 2px 2px 9px black;
}

h1{
    text-transform: uppercase;
    font-family: "Merriweather";
    color: #774a2e;
    text-shadow: 2px 2px 9px black;
    font-size: 50px;
}

/* reservieren */
form{
    max-width: 600px;
    margin: 50px auto;
    background-color:#774a2e;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 2px 2px 5px black;
    color: aliceblue;
    font-family: 'merriweather';
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #e3c6a0;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 6px;
    background-color: #e2cfb6;
}

.reservierung-form button{
    background-color: #e3c6a0;
    color: #774a2e;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'merriweather';
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* footer */
footer{
    background-color: #774a2e;
    color: #0b1625;
    margin-top: 100px;
}

footer a {
    color:#0b1625;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

footer a:hover{
    text-decoration: underline;
}

.copy {
    font-size: 12px;
    color: whitesmoke;
    padding: 10px;
    border-top: 2px solid #0b1625;
    background-color: #0b1625;

    text-align: center;
}

.footer-middle {
    padding-top: 2em;
    color: #0b1625;
    font-size: 16px;
}

.frow {
    display: flex;
    align-items: center;
    justify-content: space-around;

    padding-bottom: 20px;
    gap: 25px;
}

.ftitel{
    font-size: 20px;
}

.f-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    
}

.footer-pad-o {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-direction: row;
}

.social-network{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
}


/* impressium&datenschutz */
#impressum{
    background-color: #e3c6a0;
    padding-bottom: 20px;
    padding-top: 20px;
}

.imname{
    font-weight: bolder;
    font-size: larger;
    color: #774a2e;

}

#impresstext{
    padding-left: 250px;
}


.impressknt{
    text-decoration: none;
    color: black;
}

.impressknt:hover{
    text-decoration: underline;
}

#datenschutz {
    text-decoration: none;
    font-weight: bolder;
}

/* Menues */
.menuecarte {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.menuetext {
    text-align: center;
    padding: 10px;

    font-size: 23px;
    color: #e2cfb6;
}
.menuetext2{
    text-decoration: none;
    font-size: 21px;
    color: #e3c6a0;
}
.menuetext2:hover{
    text-decoration: underline;
}

/* später löschen */

.delete{
    display: none;
}

.basic-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    width: 500px;
}

.restext {
    color: azure;
    text-align: center;
    padding-left: 10px;
}


@media (max-width: 1440px) {
    .meal-row {
        flex-direction: column;
    }
}
@media only screen and (max-width: 768px){
   .navbar-container .navsec{
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.7rem !important;
        position: absolute;
        height: 100vh;
        width: 250px;
        top: 0;
        right: 0;
        padding: 5rem 1.5rem;

        box-shadow: 0 10px 10px black;
        background-color: #0b1625;
   }

   .navbar-container .navsec.active {
        display: flex;
   }

   .navicon{
        display: block;
        z-index: 999;
   }

   .navicon.active .bar:nth-child(2){
        opacity: 0;
   }

   .navicon.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
   }

   .navicon.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
   }

   .greet-headline{
    font-size: 55px;
   }

   .specialmeal{
    font-size: 23px;
    text-align: center;
   }

   .mekong-title {
    font-size: 35px;
    
   }

   .mekongdelta-info{
    font-size: 13px;
   }

   /*footer*/
   .frow{
    display: flex;
    flex-direction: column;
   }

   #impresstext{
    padding-left: 30px;
    font-size: medium;
   }

}   
@media only screen and (max-width: 480px) {
    .greet-headline {
        font-size: 35px;
    }

    .greet-underline{
        font-size: smaller;
    }

    .specialmeal{
        font-size: 18px;
        text-align: center;
        
    }

    .meal-info{
        font-size: 15px;
       
    }

 
    .frow{
        display: flex;
        flex-direction: column;

        font-size: 14px;
    }
   
    #impresstext{
        padding-left: 10px;
        font-size: 16px;
    }

    .mekong-title{
        text-align: center;
    }
  
    form {
        max-width: 220px;
    }

    label{
        font-size: 16px;
    }

    .basic-img {
        width: 300px;
    }

    #MenueTitle{
        font-size: 24px;
    }
.menuetext {
    text-align: center;
    padding: 10px;

    font-size: 19px;
    color: #e2cfb6;
}
.menuetext2{
    text-decoration: none;
    font-size: 17px;
    color: #e3c6a0;
}
.menuetext2:hover{
    text-decoration: underline;
}

    }

@media only screen and (max-width: 290px){
       .basic-img {
        width: 217px;
    }
}

