:root{
    --gold-color: #bd983f;
    --dark: #363636;
    --grey: #bfbdbd;
    --lightGrey: #f9f9f9;
    --transition: all 0.5s ease;
    --Poppins: 'Poppins' , sans-serif;
    --Mont: 'Montserrat', sans-serif;
    --Gara: 'Cormorant Garamond', sans-serif;
}

*{
    box-sizing: border-box;
}

/* Utilities */
a{
    color: var(--dark);
    text-decoration: none;
}
ul li{
    list-style-type: none;
}
img{
    width: 100%;
    display: block;
}
button{
    font-family: inherit;
    outline: none;
}
h1, h2, h3, h4, h5, h6, p{
    margin: 19.2px 0;
}
.btn{
    background: var(--gold-color);
    border: none;
    color: #fff;
    text-transform: capitalize;
    font-size: 15.2px;
    padding: 11.2px;
    display: block;
    transition: var(--transition);
    cursor: pointer;
}
.btn:hover{
    background: var(--dark);    
}
.container{
    width: 90vw;
    margin: 0 auto;
}
.section-py{
    padding: 80px 0;    
}
.para-text{
    color: var(--dark);
    line-height: 1.7;
    font-size: 15.2px;
    opacity: 0.8;
}

/* navbar */
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
    background: #fff;
}
.navbar-nav{
    padding-left: 0;
}
.nav-brand-toggler{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20.8px 0;
}
.navbar-toggler{
    border: none;
    background: transparent;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}
.navbar-toggler:hover{
    color: var(--gold-color);
}
.navbar-collapse{
    margin: 0 auto;
    padding-bottom: 25.6px;
    display: none;
}
.nav-item{
    padding: 10.56px 0;
    text-align: center;
}
.nav-link, .call-info{
    font-size: 14.4px;
    text-transform: uppercase;
    font-family: var(--Poppins);
    font-weight: 600;
    opacity: 0.8;
    transition: var(--transition);
}
.call-info{
    display: block;
    text-align: center;
    color: var(--dark);
    padding: 16px;
    cursor: pointer;
}
.nav-link:hover, .call-info:hover{
    color: var(--gold-color);
}
.btn-top{
    width: 280px;
    margin: 3.2px auto;
    font-family: var(--Mont);
}

/* header */
.header{
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.6)), url(../images/hero.jpg) center/cover fixed;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    
}
.header h1{
    font-size: 115px;
    color: #fff;
    text-align: center;
    font-family: var(--Gara);
}
.header h2{
    font-size: 80px;
    color: #fff;
    text-align: center;
    font-family: var(--Gara);
}
.header-title{
    color: #fff;
    font-size: 44.8px!important;    
    text-align: center;
    font-family: var(--Mont);
    
}

/* title */
.title{
    padding: 3.2px;
}
.title h4{
    text-transform: uppercase;
    color: var(--gold-color);
    font-size: 40px;
    font-family: var(--Gara);
}
.title h2{
    opacity: 0.9;
    text-transform: capitalize;
    font-size: 30px;
    font-family: var(--Mont);
}

/* about */
.about{
    overflow-x: hidden;
}

/*chef */
.chef{    
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.9)), url(../images/hero.jpg) center/cover no-repeat fixed;    
}
.chef .title{
    text-align: center;
    color: var(--lightGrey);
}
.chef-wrapper{
    margin: 32px 0;    
}
.chef-item-img{
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.chef-item-img img{
    transition: var(--transition);
}
.chef-item-img img:hover{
    transform: scale(1.2);
}
.chef-overlay{
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.6s ease-in-out 0.3s;
}
.chef-overlay p{
    font-family: var(--Mont);
    font-weight: 400;
    font-size: 19.2px;    
    width: 70%;
    text-align: center;
    line-height: 1.7;
}
.chef-icons{
    display: flex;
}
.chef-icons span{
    background: var(--dark);
    margin: 8px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 20.8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--lightGrey);
    transition: var(--transition);
}
.chef-icons span:hover{
    background: var(--gold-color);
}
.chef-item-img:hover .chef-overlay{
    transform: translateY(0);
}
.chef-item-footer{
    text-align: center;
    padding: 12.8px;
}
.chef-item-footer h2{
    font-size: 22.4px;
    font-family: var(--Mont);
    color: var(--grey);
}
.chef-item-footer h3{
    color: var(--lightGrey);
    text-transform: uppercase;
    font-size: 14.4px;
    font-family: var(--Mont);
}

/* menu */
.menu.section-py{
    padding-bottom: 0;    
}
.menu .title{
    text-align: center;
}
.menu-wrapper{
    margin-top: 32px;
}
.menu-item{
    position: relative;
    cursor: pointer;
}
.menu-item img{
    height: 400px;
}
.menu-overlay{
    height: 130px;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
    overflow: hidden;
}
.menu-overlay-content {
    font-family: var(--Mont);
    overflow: hidden;
    transition: all 0.5s ease;
    transform: translateY(100%);
}
.menu-overlay-content div{
    display: flex;
    justify-content: space-between;
}
.menu-overlay-content h2{
    text-transform: capitalize;
    margin-bottom: 0;
}
.menu-overlay-content h5{
    text-transform: uppercase;
    color: var(--grey);
    margin-top: 9.6px;
    font-size: 12.8px;    
}
.menu-item:hover .menu-overlay{
    opacity: 1;
}
.menu-item:hover .menu-overlay-content{
    transform: translateY(0);
}

/* reviews */
.reviews{
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/hero.jpg) center/cover no-repeat fixed;
    overflow: hidden;
}
.reviews .title{
    text-align: center;
    color: #fff;
}
.reviews-slider{
    margin: 32px 0;
}
.reviews-item img{
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
}
.reviews-item{
    text-align: center;
}
.reviews-item p{
    color: #fff;
    font-family: var(--Mont);
    font-size: 19.2px;
    line-height: 1.7;
    width: 80%;
    margin: 24px auto 16px;
    color: var(--lightGrey);
    opacity: 0.9;
}

.reviews-item h3{
    font-family: var(--Mont);
    color: var(--grey);
}

/* contact */
.contact-map{
    margin-bottom: 28.8px;
}
.contact-form{
    margin: 16px 0;
}
.form-control{
    font-family: var(--Mont);
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--grey);
    padding: 16px 9.6px;
    font-size: 15.2px;
    opacity: 0.8;
    margin: 4.8px;
    outline: none;
}
.form-group{
    display: flex;    
}
.btn.contact-btn{
    font-family: var(--Mont);
    width: 100%;
    margin-top: 8px;
    font-weight: 600;
    padding: 16px 0;
}

/* footer */
.footer{
    font-family: var(--Mont);
    border-top: 2px solid var(--lightGrey);
}
.footer-item{
    margin-bottom: 48px;
}
.footer-item h3{
    opacity: 0.8;
}
.footer-item .para-text{
    margin: 0;
    font-size: 14.4px;
    opacity: 0.6;
}
.footer-icons{
    display: flex;
}
.footer-icons a{
    color: var(--gold-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}
.footer-icons a:first-child{
    margin-left: 0;
}
.footer-icons a:hover{
    background: var(--gold-color);
    color: #fff;
}

/* Top row – 3 equal columns */
.footer-wrapper.container:first-of-type {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
  margin-bottom: 2rem;
}

/* Bottom row – icons + text */
.footer-wrapper.container:last-of-type {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; /* centers everything nicely */
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1rem;
}

/* # Media Queries # */

@media screen and (min-width: 678px){
    .menu-wrapper{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 768px){
    .header-title{
        width: 100%;
    }
    .footer-wrapper{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 32px;
    }
}
@media screen and (min-width: 992px){
    .container{
        width: 85vw;
    }
    .navbar{
        background: transparent;
        display: flex;
        flex-wrap: wrap;
        padding-top: 19.2px;
        padding-right: 7vw;
        padding-left: 7vw;
    }
    .navbar-toggler{
        display: none;
    }
    .navbar-collapse{
        flex: 1 0 auto;
        display: flex!important;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 0,
    }
    .navbar-nav{
        flex: 1 0 auto;
        width: auto;
        display: flex;
        justify-content: center;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .nav-info{
        flex: 0 0 317px;
        display: flex;
        justify-content: center;
    }
    .nav-brand-toggler{
        flex: 0 0 150px;
    }
    .btn-top{
        width: auto;
    }
    .nav-item{
        padding: 0 12.8px;
    }
    .nav-link, .call-info{
        color: white;
        opacity: 1;
    }

    /*** navbar background change ***/
    .bg-navbar{
        width: 100%;
        background:#fff;
        padding-top: 8px;
        padding-bottom: 8px;
        -webkit-box-shadow: 0px 0px 25px 0px rgba(214, 214, 214, 0.75);
        -moz-box-shadow: 0px 0px 25px 0px rgba(214, 214, 214, 0.75);
        box-shadow: 0px 0px 25px 0px rgba(214, 214, 214, 0.75);
    }    
    .bg-navbar{
        color: var(--dark)!important;
    }
    .bg-navbar .nav-link, .bg-navbar .call-info{
        opacity: 0.8;
        color: var(--dark)!important;
    }
    .bg-navbar .nav-link:hover, .bg-navbar .call-info:hover{
        color: var(--gold-color)!important;
    }
}
/*********************/

.about{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 48px;
    align-items: center;
    font-family: var(--Mont);
}

.chef-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.reviews-item p{
    width:60%;
}
.contact-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 32px;
}
.contact-map iframe{
    height: 400px;
}
.footer-wrapper{
    grid-template-columns: repeat(4, 1fr);
}

@media screen and (min-width: 1200px){
    .menu-wrapper{        
        grid-template-columns: repeat(3, 1fr);
    }
}

.menucard{

        display: block;
        margin: 50px auto;
        width: 250px;

    a{
        background: var(--gold-color);
        border: none;
        color: #fff;
        text-transform: capitalize;
        font-size: 30px;
        padding: 12px;
        transition: var(--transition);
        cursor: pointer;
    }
}

/* Hover animation */
  .hover-scale:hover {
    transform: translateY(-5px) scale(1.03);
    transition: all 0.3s ease;
  }

  /* Card image border */
  .card-img-top {
    border-bottom: 3px solid #C69C3B;
  }

  /* Responsive adjustments */
  @media(max-width:767px){
    .card { margin-bottom: 20px; }
  }

  /* Optional: make badges look nicer */
  .badge {
    font-size: 0.85rem;
  }

  /* ===== CUSTOM MENU GRID WITHOUT BOOTSTRAP ===== */
#menuResults {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card styling */
#menuResults .card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#menuResults .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Card image */
#menuResults .card-img-top {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* Card content */
#menuResults .card-body {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Dish name and icons */
#menuResults .card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0.5rem;
}

/* Category badge */
#menuResults .badge {
  background: #d4af37; /* gold tone */
  color: #fff!important;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  padding: 0.3em 0.7em;
  display: inline-block;
  margin-bottom: 0.6rem;
  width: fit-content;
}

/* Description */
#menuResults .card-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Price */
#menuResults .fw-bold {
  color: #d4af37;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: auto;
}

/* Responsive behavior */
@media (max-width: 768px) {
  #menuResults {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* ===== MENU SECTION HEADER ===== */
.menu-section {
  padding-top: 100px;
  padding-bottom: 40px;
  text-align: center;
  background: linear-gradient(to bottom right, #fff, #faf9f6);
}

.menu-heading {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  position: relative;
  text-align: center;
}

/* ===== FILTER FORM ===== */
.menu-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  margin: 0 auto;
  max-width: 800px;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .filter-select, .filter-input {
    width: 100%;
  }
  .menu-filter {
    flex-direction: column;
    align-items: center;
  }
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap; /* allows wrapping on small screens */
}