*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{

    font-family:"Inter",sans-serif;

    background:#faf8f4;

    color:#222;

    line-height:1.7;

}


/* ===============================
   HEADER
================================ */


header{

    position:fixed;

    top:0;

    width:100%;

    padding:20px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(18,50,34,.9);

    backdrop-filter:blur(8px);

    transition:.3s;

    z-index:1000;

}


header.scrolled{

    padding:12px 8%;

    background:#123222;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

}


.logo{

    font-family:"Cinzel",serif;

    font-size:2rem;

    color:#d4af37;

}


nav{

    display:flex;

    gap:30px;

}


nav a{

    color:white;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}


nav a:hover{

    color:#d4af37;

}


.menu-toggle{

    display:none;

    background:none;

    border:none;

    color:white;

    font-size:2rem;

    cursor:pointer;

}





/* ===============================
   HERO
================================ */


.hero{

    height:100vh;

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

}


.hero-content{

    max-width:800px;

}


.hero h1{

    font-family:"Cinzel",serif;

    font-size:4.5rem;

    margin-bottom:20px;

}


.hero p{

    font-size:1.3rem;

}



.button{

    display:inline-block;

    margin-top:35px;

    padding:16px 40px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    background:#d4af37;

    color:#111;

    transition:.3s;

}


.button:hover{

    transform:translateY(-4px);

    background:white;

    box-shadow:0 12px 30px rgba(0,0,0,.3);

}





/* ===============================
   SECTIONS
================================ */


section{

    padding:90px 10%;

}


h2{

    font-family:"Cinzel",serif;

    color:#123222;

    margin-bottom:30px;

    font-size:2.4rem;

}





/* ===============================
   ABOUT
================================ */


.about{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}


.about img{

    width:100%;

    border-radius:12px;

}





/* ===============================
   CARDS
================================ */


.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}


.card{

    background:white;

    border-radius:14px;

    padding:35px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.35s;

}


.card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.18);

}





/* ===============================
   SUNDAY DINNER
================================ */


.menu-box{

    background:white;

    padding:45px;

    border-radius:15px;

    max-width:800px;

    margin:auto;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}


.menu-box h3{

    font-family:"Cinzel",serif;

    color:#123222;

    font-size:1.8rem;

    margin-bottom:20px;

}


.serving-time{

    background:#123222;

    color:white;

    padding:20px;

    border-radius:12px;

    max-width:350px;

    margin:30px auto;

    font-size:1.2rem;

}


.serving-time strong{

    color:#d4af37;

}


.menu-list{

    list-style:none;

    margin:30px 0;

    font-size:1.2rem;

}


.menu-list li{

    padding:10px;

}


.menu-note{

    font-style:italic;

    color:#555;

}





/* ===============================
   HOURS
================================ */


.hours{

    margin-top:20px;

    border-collapse:collapse;

}


.hours td{

    padding:10px 20px 10px 0;

    border-bottom:1px solid #ddd;

}





/* ===============================
   GALLERY
================================ */


.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

    margin-top:35px;

}


.gallery-grid img{

    width:100%;

    height:250px;

    object-fit:cover;

    border-radius:15px;

    transition:.4s;

}


.gallery-grid img:hover{

    transform:scale(1.05);

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}





/* ===============================
   LIGHTBOX
================================ */


.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.9);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:2000;

}


.lightbox.show{

    display:flex;

}


.lightbox img{

    max-width:90%;

    max-height:85%;

    border-radius:10px;

}


.close-lightbox,
.prev-lightbox,
.next-lightbox{

    position:absolute;

    background:none;

    border:none;

    color:white;

    font-size:2.5rem;

    cursor:pointer;

}


.close-lightbox{

    top:30px;

    right:40px;

}


.prev-lightbox{

    left:40px;

}


.next-lightbox{

    right:40px;

}





/* ===============================
   MAP
================================ */


.map-container{

    margin-top:40px;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}


.map-container iframe{

    width:100%;

    height:450px;

    border:0;

}





/* ===============================
   PHONE LINK
================================ */


.phone-link{

    color:#123222;

    font-weight:600;

    text-decoration:none;

}


.phone-link:hover{

    color:#d4af37;

}





/* ===============================
   CALL BUTTON
================================ */


.call-button{

    display:none;

    position:fixed;

    bottom:25px;

    right:25px;

    background:#d4af37;

    color:#111;

    padding:15px 25px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    box-shadow:0 8px 25px rgba(0,0,0,.3);

    z-index:1500;

}





/* ===============================
   FOOTER
================================ */


footer{

    background:#123222;

    color:white;

    text-align:center;

    padding:50px 20px;

}


footer h3{

    color:#d4af37;

    margin-bottom:15px;

}





/* ===============================
   FADE ANIMATION
================================ */


.fade{

    opacity:0;

    transform:translateY(40px);

    transition:.8s;

}


.fade.show{

    opacity:1;

    transform:translateY(0);

}





/* ===============================
   MOBILE
================================ */


@media(max-width:768px){


    header{

        padding:20px;

    }


    .menu-toggle{

        display:block;

    }


    nav{

        display:none;

        width:100%;

        flex-direction:column;

        text-align:center;

        margin-top:20px;

        background:#123222;

    }


    nav.show{

        display:flex;

    }


    nav a{

        padding:18px;

        border-top:1px solid rgba(255,255,255,.1);

    }


    .hero h1{

        font-size:3rem;

    }


    .hero p{

        font-size:1.1rem;

    }


    .about{

        grid-template-columns:1fr;

    }


    .menu-box{

        padding:25px;

    }


    .call-button{

        display:block;

    }


    .prev-lightbox{

        left:15px;

    }


    .next-lightbox{

        right:15px;

    }


    .close-lightbox{

        right:20px;

    }


}
