@font-face {
    font-family: Prata;
    src: url(assets/fonts/Prata-Regular.otf);
}

@font-face {
    font-family: Cinzel;
    src: url(assets/fonts/Cinzel-Regular.otf);
}

@font-face {
    font-family: Cinzel-Decorative;
    src: url(assets/fonts/CinzelDecorative-Regular.otf);
}

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: rgba(255, 4, 109, 0.363);
}

/* scrollbar */
/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 5px;

    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    /* border-radius: 10px; */
    border: 1px solid rgba( 255, 255, 255, 0.18 );

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ac004d; 
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}


html,body {
    height: 100%;
    width: 100%;
    background-color: 	#9c001ffa;
}

#content {
    /* border: 1px solid red; */
    display: grid;
    justify-items: center;
    height: 100%;
    /* grid-template-rows: 95px 1fr; */
    /* background-image: url(assets/background-2.jpg); */
    background: url(assets/background-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.logo-container {
    /* border: 1px solid black; */
    height: 35px;
    display: grid;
    grid-template-columns: 40px 1fr;
    justify-items: center;
    align-items: center;
    /* border-bottom: 1px solid black; */
}

.brand-name {

    font-family: Prata,'Times New Roman', Times, serif;
    color: white;

}


.nav-container {
    z-index: 2;
    padding-top: 10px;
    display: grid;
    justify-items: center;
    align-items: start;
    
    grid-template-rows: repeat(2,1fr);
    width: 100%;
    height: 95px;  /*change height at #content grid template column*/
    /* border: 1px solid orange; */
    /* background-color: aqua; */

    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    /* border-radius: 10px; */
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    position: fixed;
    top: 0px;

}

.logo-div > img {

    width: 30px;
}

.nav-btn-div {

    display: grid;

    /* border: 1px solid black; */
    grid-template-columns: repeat(3,1fr);
    justify-items: center;
    align-items: center;
    width: 270px;
    height: 35px;
    
    

}


.main-content {
    height: 100%;
    width: 100%;
    /* background-color: yellowgreen; */
    /* border: 1px solid red; */
    text-align: center;
    display: grid;
    justify-items: center;
    overflow: auto;
}

.nav-btn {

    width: 90px;
    height: 20px;

    /* border-radius: 10px; */
    font-size: 12px;
    font-family: Cinzel,'Times New Roman', Times, serif;
    /* font-weight: 600; */
    /* border: 3px solid black; */

    /* background: rgba( 255, 255, 255, 0.25 ); */
    background: rgba(255, 255, 255, 0);
    /* box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 ); */
    /* backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px ); */
    /* border-radius: 10px; */
    /* border: 1px solid rgba(107, 107, 107, 0.171); */
    border: none;
    cursor: pointer;
    color: white;
}


.nav-btn-clicked {

    /* background: rgba(242, 255, 57, 0.25); */
    /* font-weight: 600; */
    color: white;
    border-left: 4px solid rgba( 255, 255, 255, 0.18 );
    border-right: 4px solid rgba( 255, 255, 255, 0.18 );
    /* border: 1px solid red; */

    
}

.content-display {
    width: 100%;
    height: 100%;
    /* border: 1px solid blue; */
    /* background-color: violet; */
    overflow: auto;
    display: grid;
    /* padding-left: 20px;
    padding-right: 20px; */
    /* position: relative; */
    
}

/* .content-display > video {
    position: relative;

    right: 0;
    bottom: 0;

} */


/* Home */

.home-container {
    z-index: 1;
    height: calc(100vh - 200px);
    width: 100%;
    display: grid;
    padding-top: 100px;
    align-items: end;
    padding-bottom: 50px;
    /* border: 1px solid yellow; */
}

.home-content {
    display: grid;
    /* row-gap: 10px; */
    /* align-self: center; */
    justify-self: center;
    align-items: center;
    justify-items: center;
    /* width: min(100%, 400px); */
    /* height: 100vh; */
    width: 100%;
    /* position: absolute; */
    padding: 10px;
    /* border-radius: 10px; */

    background: rgba(32, 32, 32, 0.25);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 3px );
    -webkit-backdrop-filter: blur( 3px );
    color: white;


    
}

/* .home-logo-div {
    width: 100px;
    display: grid;
    align-items: end;
}

.home-logo-div > img {
    width: 100%;
} */

.home-header {
    /* border-top: 5px solid black; */
    padding-top: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba( 255, 255, 255, 0.18 );
}

.home-header > h1 {
    color: rgb(255, 183, 198);
    font-family: Cinzel-Decorative,'Times New Roman', Times, serif;
}

.home-info {
    margin-bottom: 15px;
    width: 300px;
    font-weight: 00;
}

.home-info > p {

    font-weight: 00;
    font-family: 'Times New Roman', Times, serif;
}



.button-container{
    display: grid;
    gap: 10px;
    grid-auto-flow: column;
}


.explore {
    width: 120px;
    height: 35px;
    border-radius: 10px;
    /* border: 1px solid black; */

    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    /* border-radius: 10px; */
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    cursor: pointer;
    font-family: Prata,'Times New Roman', Times, serif;
    color: rgb(255, 195, 195);
    font-weight: bold;
    font-style: italic;
    font-size: 11px;
}

.explore:hover,
.explore:active {
    background: rgba(255, 0, 157, 0.363);
}


/* Menu */


.menu-content {

    display: grid;
    row-gap: 30px;
    padding-bottom: 30px;
    /* grid-template-rows: repeat(); */
    grid-template-columns: minmax(365px,500px);
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-left: 6px;
    padding-right: 6px;
    width: 100%;



    

}

.menu-header > h1 {
    font-family: Cinzel-Decorative,'Times New Roman', Times, serif;
    color: white;
}

.menu-card {
    display: grid;
    height: 300px;
    width: 100%;
    border: 1px solid black;

    justify-self: center;
    justify-items: center;
    align-items: center;

    column-gap: 20px;
    padding: 20px;

    background: rgba(148, 148, 148, 0.25);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 5px );
    -webkit-backdrop-filter: blur( 5px );
    /* border-radius: 10px; */
    border: 1px solid rgba( 255, 255, 255, 0.18 );

    border-radius: 20px;
    color: white;
}


.food-img {
    
    height: 150px;
    width: 250px;
    /* border-radius: 20px; */

    display: grid;
    justify-items: center;
    align-items: center;
    margin-bottom: 10px;
}

.food-img > img {

    height: 150px;
    width: 250px;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.18);
    /* border: 5px solid yellow; */

}

.food-details {
    width: max(150px,100%);
    /* height: 150px; */
    /* border: 1px solid yellow; */
    display: grid;
    grid-template-rows: 30px 1fr;
    /* row-gap: 20px; */
    grid-template-areas: 
    "title price"
    "desc desc";


}

.food-title {
    /* border: 1px solid greenyellow; */
    font-size: 17px;
    font-weight: 600;
    grid-area: title;
    display: grid;
    justify-items: start;
    font-family: Cinzel,'Times New Roman', Times, serif;
}

.food-price {
    /* border: 1px solid brown; */
    font-size: 17px;
    font-weight: 600;
    grid-area: price;
    display: grid;
    justify-items: end;
    font-family: Cinzel,'Times New Roman', Times, serif;
}

.food-desc {
    border-top : 1px solid rgba(0, 0, 0, 0.18);
    padding-top: 10px;
    grid-area: desc;
    align-items: end;
}



/* CONTACT US */

.contact-content {
    padding-top: 100px;
    position: relative;
    height: 100%;
    display: grid;
    /* padding-top: 30px; */
}

.contact-header > h1 {
    font-family: Cinzel-Decorative,'Times New Roman', Times, serif;
    color: white;
}

.details-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-template-rows: repeat(auto-fit, minmax(300px,1fr));
    align-items: start;
    justify-items: center;
    padding-top: 40px;


}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #555;
    display: grid;
    align-items: center;
    justify-items: center;

    background: rgba(0, 0, 0, 0.37);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    /* border-radius: 10px; */
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    opacity: 0;
}

.contact-icon > img {

    width: 30px;
    height: 30px;
}

.details {

    display: grid;
    align-items: start;
    justify-items: center;
    width: 150px;
    height: 190px;
    grid-template-rows: 80px 30px 1fr;
}

.contact-subject {
    height: 40px;
    font-family: Cinzel,'Times New Roman', Times, serif;
    font-weight: 600;
    color: white;
    
}

.contact-detail {
    
    padding: 15px;
    background: rgba(148, 148, 148, 0.25);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
    color: white;
    
}

.contact-detail > a {

    color: white;
    text-decoration: none;

}

#contact-form {

    display: grid;
    background: rgba(97, 97, 97, 0.25);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    /* border-radius: 10px; */
    border-top: 1px solid rgba( 255, 255, 255, 0.18 );

    padding: 20px;
    position: relative;

    bottom: 0px;
    align-self: end;

}

fieldset {
    font-size: 30px;
    padding: 20px;
    border: none;
    /* border-top: 1px solid rgba( 255, 255, 255, 0.18 ); */
    color: white;
    font-family: Cinzel,'Times New Roman', Times, serif
}

.form-container {
    display: grid;
    align-items: center;
    justify-items: center;
    row-gap: 10px;
}

.input-container {
    height: 30px;
    width: 300px;
    display: grid;
    align-items: center;
    justify-items: center;
    

}

.input-container > input {
    appearance: none;
    border: 1px solid gray;
    width: 300px;
    height: 30px;
    padding-left: 10px;
    color: white;

    background: rgba(0, 0, 0, 0.363);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    font-family: 'Times New Roman', Times, serif;

}

::placeholder {
    color: #f1f1f1;
    font-family: 'Times New Roman', Times, serif;

}

.text-container > textarea {
    appearance: none;
    border: 1px solid gray;
    width: 300px;
    height: 200px;
    padding-left: 10px;
    padding-top: 10px;
    resize: none;
    color: white;
    
    background: rgba(0, 0, 0, 0.363);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    font-family: Prata,'Times New Roman', Times, serif;
}

.text-container {
    height: 200px;
}

.submit-btn {
    width: 300px;
    height: 30px;
    color: white;

    background: rgba(255, 11, 112, 0.363);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    font-family: Cinzel,'Times New Roman', Times, serif;
    font-weight: 600;
}
.submit-btn:hover {
    background: rgba(255, 0, 17, 0.363);
}

.footer {
    height: 40px;
    /* background-color: red; */
    display: grid;
    width: 100%;
    text-align: center;
    display: grid;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    /* border-radius: 10px; */
    border-top: 1px solid rgba( 255, 255, 255, 0.18 );
}


.footer > div > a {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 11px;
    font-family: Cinzel,'Times New Roman', Times, serif;
}

.footer > div {
    width: 200px;
    border-bottom: 1px solid rgba( 255, 255, 255, 0.18 );
}