@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Poppins:wght@300;400;600&display=swap");

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    --brand-color1: #C62828;
    --brand-color2: #1E1E1E;
    --brand-color3: #F2B705;
    --brand-color3Hover: #F2B705cc;
    --brand-color4: #F7F7F7;
    --brand-gradient: linear-gradient(45deg, var(--brand-color1), var(--brand-color4), var(--brand-color2), var(--brand-color3)); 
    --border-color: #ddd;
    --heading-color: #333;
    --hover: rgba(0, 0, 0, 0.1);
    --light-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
body{
    font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    color:#222;
    margin:0;
}
h1,h2,h3{
    font-family: 'Poppins', Georgia, serif;
    /* margin:0 0 .5rem 0; */
    /* font-weight: 500; */
    /* color: var(--heading-color) */
}
p{
    color: var(--subheading-color, #555);
}
.brand h3{
    font-size:1.25rem;
    color:var(--brand-color);
    letter-spacing:0.04em;
}
i{
    font-size: 20px;
}
.brand{
    display: flex;
    align-items: flex-end;
}
.brand h3{
    font-weight: 400;
}
header .navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background: #ffffffe8;
    backdrop-filter: blur(10px);
    position: fixed;
    top:0;
    left:0;
    right: 0;
    padding:15px 20px;
    max-height: 80px;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--light-shadow)
}
img.logo{
    width:80px;
    height:50px;
    /* object-fit: stretch; */
    margin-right:10px;
}
.nav-links ul{
    display:flex;
    font-family: 'Inter';
    align-items: center;
    gap:20px;
    color: #808080;
}
.nav-links ul li{
    list-style:none;
    padding-bottom: 4px;
}
.nav-links ul li:hover:not(.location, .mkr){
    border-bottom: 1px solid var(--brand-color3);
    white-space: nowrap;
    transition: 0.3s ease;
}
.nav-links ul li a{
    text-decoration:none;
    color: #808080;
    font-weight:600;
    font-weight: 400;
}  
.nav-links ul li.location:hover i{
    color: var(--brand-color3);
    cursor: pointer;
}
.nav-links ul li.location .address{
    position: absolute;
    top: 50px;
    right: 1px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: var(--hover-shadow);
    border: 1px solid var(--border-color);
    opacity: 0;
    pointer-events: none;
}
.nav-links ul li.location:hover i + .address{
    opacity: 1;
    transition: .5s ease;
}
.nav-links ul li:hover a{
    color:var(--brand-color3);
}
.nav-links ul li button{
    font-family: 'Inter';
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-color3);
    color: #fdfdfd;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 100;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.nav-links ul li button i{
    font-size: 18px;
}
.nav-links ul li button:hover{
    background: var(--brand-color3Hover);
}
.content{
    margin-top: 80px;
    box-sizing: border-box;
} 
.hero{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url('assets/hero/hero-image.jpeg') no-repeat center center/cover;
    background-color: #1b1b1bef;
    background-blend-mode: darken;
    animation: bgSlide 20s ease infinite;
    margin-bottom: 100px;
}
section:not(.hero, .story-sec){
    margin-left: 20px;
    box-sizing: border-box;
}
.hero > * {
    position: relative;
    z-index: 10;
    filter: none;
    opacity: 1;
    color: var(--brand-color4);
    text-align: center;
}
.working-hours{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-start;
    width: fit-content;
    margin-bottom: 20px;
    padding: 8px 16px;
    gap: 5px;
    border-radius: 10px;
    background: var(--brand-color3);
}
.hero-content{
    max-width: 800px;
    padding: 20px;
}
.hero-content h1, .hero-content p{
    font-family: 'Poppins', sans-serif;
}
.hero-heading{
    font-size: 52px;
    line-height: 1.1;
}
.hero-heading .highlight{
    color: var(--brand-color3);
    animation: colorSwitch 3s ease-in-out infinite;
}
.hero-subtext{
    font-size: 15px;
    margin: 20px 0;
    color: #f2f2f2;
}
.perks{
    display: flex;
    align-items: center;
    justify-content: center;
    color:var(--brand-color4);
    font-weight: 600;
    margin-bottom: 20px;
}
.perks span{
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--brand-color3);
    border-radius: 50%;
    margin: 0 10px;
}
.hero .cta button{
    padding: 12px 30px;
    font-size: 16px;
    background: var(--brand-color3);
    color: #fdfdfd;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.hero .cta button.main{
    background: var(--brand-color4);
    color: var(--brand-color2);
}
.menu .head{
    text-align: center;
    margin-bottom: 30px;
}
.menu .head h1{
    font-size: 36px;
    color: var(--brand-color2);
    margin-bottom: 0;
}
.menu-items{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
    padding: 10px 20px 10px 10px;
}
.menu-items .details{
    padding: 20px;
}
.menu-items .menu-card{
    box-shadow: var(--light-shadow);
    border-radius: 10px;
    max-width: 400px;
    border: 1px solid var(--border-color);
    cursor: default;
    display: none;
}
.menu-items .menu-card.show{
    display: block;
}
.menu-items .menu-card:hover{
    box-shadow: var(--hover-shadow);
    transition: .5s ease-in-out
}
.menu-switch{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    border-radius: 10px;
    gap: 20px;
    background: var(--brand-color4);
    padding: 5px 5px;
    width: fit-content;
    margin-right: 20px;
    margin-bottom: 20px;
}
.menu-switch .menu-type{
    display: flex;
    align-items: center;
    font-size: 13px;
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;
    color: #555;
}
.menu-switch .menu-type:hover{
    background: #fff;
}
.menu-switch .menu-type.active{
    background: #fff;
    transition: 1s ease;
}
.menu-card img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.details h3{
    color: var(--brand-color2);
    margin-bottom: 10px;
    font-weight: 600;
}
.details p{
    font-size: 13px;
    letter-spacing: .5px;
}
.details .price{
    margin-top: 10px;
    font-weight: 600;
    color: var(--brand-color2);
    text-align: right;
}
.details .price h4{
    font-size: 18px;
}
.story-sec{
    margin-top: 100px;
    padding: 20px 20px 20px 20px;
    background: var(--brand-color3)
}
.story-sec .story-content{
    display: flex;
    align-items: center;
    gap: 40px;
    width: calc(100% - 200px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.story-sec .story{
    width: calc(100% - 400px);
}
.story-sec .story p{
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}
.story-sec .story h1{
    font-weight: 500;
}
.story-sec .image-sec{
    width: 400px;
    height: 400px;
    box-shadow: var(--light-shadow);
    background: url('assets/brand/biggerLogo.png') no-repeat center center/cover;
    border-radius: 10px;
}
.reservation{
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    padding: 10px 20px 10px 20px;
    border-radius: 10px;
    z-index: 2000;
    backdrop-filter: blur(20px);
    width: 400px;
    border: 1px solid var(--border-color);
    box-shadow: var(--hover-shadow)
}
.overlay{
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    z-index: 1100;
    opacity: 0;
}
.reservation.open{
    transform: translate(-50%, -50%) scale(1);
    top: 50%;
    transition: 1s ease;
}
.overlay.show{
    opacity: 1;
    pointer-events: all;
    z-index: 1000;
}
.reservation .head{
    margin-bottom: 20px;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    gap: 0px;
    padding: 0 0 10px 0;
    border-bottom: 1px solid var(--border-color);
}
.head .cancel span{
    width: 40px;
    font-size: 30px;
    border-radius: 50%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.head .cancel span:hover{
    background: var(--hover);
}
.reservation input{
    display: block;
    margin-bottom: 10px;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    border: 1px solid var(--brand-color3);
    background: #f2b70528;
    color: var(--brand-color2);
    width: 100%;
    height: 40px;
    outline: none;
}
.guestNumber{
    padding-left: 5px;
    display: flex;
    gap: 10px;
    align-items: center;
    
}
.guestNumber select{
    border: 1px solid var(--brand-color3);
    padding: 0 3px 0 3px;
    width: 50px;
    border-radius: 7px;
    background: none;
    outline: none;
}
.guestNumber input{
    display: inline-block;
    margin-right: 10px;
}
.guestNumber .label{
    display: block;
    font-weight: 600;
    /* margin-bottom: 10px; */
}
ul{
    text-decoration: none;
    list-style: none;
}
.notes{
    margin-top: 10px;
    margin-left: 10px;
}
.notes li{
    font-size: 11px;
}
.notes .fluttr{
    display: block;
    font-size: 11px;
    letter-spacing: .2px;
    color: #0047b3;
}
.reservation .showCard{
    background: none;
    padding: 0;
    color: var(--brand-color2);
    font-size: 15px;
}
.reservation button{
    background: var(--brand-color3);
    padding: 10px;
    border-radius: 6px;
    border: none;
    width: 100%;
    margin-top: 20px;
    cursor: pointer;
    color: #fff;
}
footer{
    background: var(--brand-color2);
    height: 400px;
    padding-top: 10px;
}
footer .top{
    margin: 20px;
    margin-top: 100px;
}
footer .top .brand{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.socials{
    display: flex;
    gap: 20px;
    margin: 20px 0 20px 0;
}
.socials a{
    color: var(--brand-color4);
    text-decoration: none;
}
.contact p{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}
@keyframes colorSwitch {
    0%{color: var(--brand-color1)}
    50%{color: var(--brand-color3)}
    100%{color: var(--brand-color1)}
}
@keyframes bgSlide {
  0% {background-image:url('assets/hero/hero-image.jpeg');}
  33% {background-image:url('assets/hero/hero-image2.jpeg');}
  66% {background-image:url('assets/hero/hero-image3.jpeg');}
  100% {background-image:url('assets/hero/hero-image.jpeg');}
}
@media (max-width: 900px) {
    .hero-heading{
        font-size: 44px;
    }
}
@media (max-width: 920px) {
    .story-sec .story-content{
        flex-direction: column;
        width: 100%;
        align-items: center;
        left: 0;
        transform: unset;
    }
    .story-sec .story-content .image-sec{
        width: 100%;
    }
    .story-sec .story{
        width: 100%;
    }
}
@media (max-width: 695px) {
    .hero-heading{
        font-size: 33px;
    }
    .hero-subtext{
        font-size: 12px;
    }
    .hero .cta button{
        padding: 10px 20px;
        font-size: 12px;
    }
    .menu-items .menu-card{
        max-width: unset;
    }
}
@media(max-width: 600px){
    .working-hours{
        font-size: 12px;
        padding: 5px;
        /* align-items: flex-end; */
    }
    .working-hours i{
        font-size: 15px;
    }
    .working-hours:not(.icon){
    /* margin-top: 5px; */
    }
    .nav-links ul li:not(.mkr, .location){
        display: none;
    }
    .menu-items{
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    .menu-switch{
        left: 0;
        transform: unset;   
    }
    .menu-switch .menu-type{
        font-size: 11px;
        text-align: center;
    }
    section:not(.hero, .story-sec){
        margin: 10px;
        /* margin-left: 5px; */
    }
    p.subtext{
        font-size: 13px;
    }
}
@media (max-width: 420px) {
    .nav-links ul li.mkr button{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
    }
    .nav-links ul li.mkr button span{
        display: none;
    }
    .perks{
        font-size: 11px;
    }
    .nav-links ul li.location .address{
        font-size: 13px;
    }
    .content{
        margin-top: 0px;
    }
    .reservation{
        width: calc(100% - 50px);
    }
}