*{
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    scroll-behavior: smooth;
}   

body{
    background-color: beige;
    animation: fadeIn 1.2s ease-in-out forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
header{
    background-color: transparent;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index:11;
    box-shadow: 0 4px 8px rgba(6, 6, 6, 0.1);
    transition: all 2s ease-out;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 60px;
    margin-right: 60px;

}
nav a {
    text-decoration: none;
    font-size: large;
    font-weight: 400;
    color: #3e2723	;
    
    /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); */
}

nav a:hover {
    color: #bfa35a;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    background-color: transparent;
}
nav.scrolled a {
    color: #d9a74d;
    transition: color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     backdrop-filter: blur(4px);
}





nav ul {
    display: flex;
    gap: 4rem;
}


nav li {
    list-style: none;
}

.hero{
    background-image: url('Hero.avif');
    height: 100vh;
    background-size: cover;
    padding-top: 200px;
    padding-bottom: 50px;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.5rem;
    word-spacing: 20px;
    position: relative;
    z-index: 10;
    font-family: "Playfair Display", Georgia, 'Times New Roman', serif;
    margin-bottom: 100px;
}


.hero .fill {
    position: absolute;
    /* position: relative; */
    height: 100%;
    width: 100%;
    background-color: rgba(135, 92, 30, 0.5);
    
    top: 0; 
}

.herotext{
    position: relative;
    z-index: 10;
}

.herotext h1 {
    font-family: "Playfair Display", Georgia, 'Times New Roman', serif;
    font-optical-sizing: auto;
    font-weight: 400;
    color: #f5f5dc;
     text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    transition: all 0.3s ease-in-out;
    
}

.herotext button {
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: 600;
}
.herobuttons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 4rem;
    gap: 3rem;
    
}

.herotext .Hero-left{
    background-color: #bfa35a;
    padding: 10px 20px;
    border-radius: 9px;
    color: whitesmoke;
    transition: background-color 0.3s ease;
    font-size: large;
}

.herotext .Hero-Right {
    border: 2px solid whitesmoke;
    color: whitesmoke;
    padding: 10px 20px;
    border-radius: 9px;
    font-size: large;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.Hero-left:hover{
    background-color: #a98945;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.Hero-Right:hover{
    background-color: whitesmoke;
    color: #3e2723	;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}




.Menu{
    display: flex;
    flex-direction: column;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 40px 60px ;
    

}
.Menu h2{
    font-family: "Playfair Display", Georgia, 'Times New Roman', serif;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 300;
    margin-bottom: 30px;
    border-bottom: 2px solid #d9a74d;
    display: inline-block;
    padding: 10px;

}


.dish-card {
    background-color: white;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover{
    transform: translateY(-5px);
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.15);
}

.dish-card img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.dish-card h3 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #3e2723;
}


.dish-card p {
    font-size: 1rem;
    color: #3e2723;
}

.menu-btn{
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    

}

.menu-btn button{
    /* background-color: #4a635d;
    color: #ffffff; */
    border: none;
    padding: 20px;
    border-radius: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    background-color: #b08d57; /* subtle bronze gold */
    color: #fff8e7;
;

}

.menu-btn button:hover{
    transform: scale(1.05);
    /* background-color: #722f37; */
    cursor: pointer;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
     background-color: #b08d57; /* subtle bronze gold */
     color: #fff8e7;

}

/* css gallery */
.gallery{
    margin-top: 100px;
    padding: 60px;
    background-color: #f9f9e6;
    border-radius: 15px;
    text-align: center;
}
.gallery-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px;
    box-sizing: border-box;
  
    
}

.gallery-img img{
    max-width: 600px;
    max-height: 700px;
    object-fit: cover;
    object-position: center center;
    /* width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center; */
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery h2{
    font-family: "Playfair Display", Georgia, 'Times New Roman', serif;
    font-size: 2.5rem;
     text-align: center;
     font-weight: 300;
     border-bottom: 2px solid  #d9a74d;
     display: inline-block;
     padding: 10px;
     
}

.gallery-img img:hover{
    transform: scale(1.03);
}

/* CTA */

.CTA{
    background-image: url('CTA_4.jpg');
    /* max-width: 99%; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    padding: 100px 60px;
    height: 100vh;
    
}

.CTA .CTA-fill{
  /* background-color: rgba(221, 190, 123, 0.45);  */
  position: absolute;
  z-index: 10;
  top: 0;
  width: 100vw;
  height: 100%;
 background-color: rgba(73, 47, 23, 0.5);

}

.CTA-text{
    position: relative;
    z-index: 10;
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    text-align: center;
}

.CTA-text h2, 
.CTA-text p{
    color: white; 
    /* Classic white */ 
}

.CTA-text h2 {
    font-size: 2.8rem;

}

.CTA-text p {
    font-size: 1.5rem;
    /* max-width: 60%; */
    padding-top: 20px;
    padding-bottom: 10px;
}

.CTA-btn {
    padding: 20px;
    text-decoration: none;
    border-radius: 30px;
    text-align: center;
    position: relative;
    z-index: 11;
    margin-top: 20px;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-size: 1rem;
    word-spacing: 2px;
    transition: 0.3s ease;
}

.CTA-btn:hover {
    transform: translateY(-5px);
    background-color: #8B6A3F; 
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: white;
}



/* testimonial section */

.testimonials{
    padding: 60px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}


.testimonials h2{
    font-size: 3rem;
    line-height: 1;
    display: inline;
    border-bottom: 2px solid  #d9a74d;
    color: #5d3a00;
    font-family: "Playfair Display", Georgia, 'Times New Roman', serif;
}

.review-cards{
    display: flex;
    flex-wrap: wrap;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    
}

.review{
    width: 280px;
    text-align: center;
    color: #3e2723;
    padding: 24px;
    border-radius: 16px;
    max-width: 300px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.review:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.review p {
    font-size: 18px;
    line-height: 28px;
}

.review h4{
    font-size: 1rem;
    font-weight: 600;
}

.review span{
    font-size: 14px;
    line-height: 20px;
    color: #5d3a00;
}
.review img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 8px;
}


footer{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    padding: 60px;
    background-color: #fdfce6;
}

footer p{
    color: #4E342E;
    padding-top: 10px;
}

footer p:hover{
     text-decoration: underline;
    color: #8b6b4f;;
}

footer a{
    text-decoration: none;
    color: #A67C52 ;
}

footer a:hover{
    text-decoration: underline;
    color: #D4AF37;
}

.footer-logo{
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */
    flex-direction: column;
    gap: 30px;
}

.footer-logo p{
    font-size: 0.9rem;
    color: #6b4c3b;
    max-width: 250px;
    line-height: 1.5;
}


.footer-head{
    display: flex;
    flex-direction: column;

}

.footer-head h2{
    font-size: 25px;
    color: #3E2723;
}
.footer-logo img{
    width: 100px;
    max-width: 100px;
    height: auto;
}


.footer-links{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.quick-links{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-links ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-links li{
    list-style: none;
}

/* .quick-links a{
    text-decoration: none;
    color: #A67C52 ;
} */

/* 
.quick-links a:hover{
    text-decoration: underline;
    color: #D4AF37;
} */

.footer-links img{
    width: 30px;
   
}

.footer-links h3{
    color: #3E2723 ;
    border-bottom:2px solid #ffc75f ;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 6px;
}

.footer-location,
.footer-contact,
.footer-insta,
.footer-phone {
    display: flex;
    align-items: flex-start;
    gap:20px;
    margin-bottom: 12px;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    text-align: center;
    flex-direction: column;
}
.contact-info h3{
   margin-bottom: 20px;
}

.insta-fix{
    display: flex;
    align-items: flex-end;
}
.footer-open{
    display: flex;
    gap: 20px;
}
.footer-Opening-Hours{
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 20px;
}
.weeks, 
.footer-timing{
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.final{
    text-align: center;
    color: #b08d57;
    border-top: 2px solid #D4AF37;
    padding-top: 10px;
    /* display: inline; */
}








@media (max-width: 1024px) {
    nav {
        margin-left: 20px;
        margin-right: 20px;
    }

    .herotext {
        font-size: 1.8rem;
    }

    .hero {
        padding-top: 150px;
    }

    .herobuttons {
        flex-direction: column;
        gap: 1.5rem;
        padding: 3rem 2rem;
    }

    .Menu {
        padding: 20px 30px;
    }

    .gallery-img {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

   
}

@media (max-width: 600px) {
    nav ul {
        gap: 1rem;
        align-items: center;
    }

    .hero {
        font-size: 1.5rem;
        padding-top: 100px;
        padding-bottom: 20px;
        margin-bottom: 40px;
    }

    .herotext h1 {
        font-size: 2rem;
    }

    .herobuttons {
        padding: 2rem 1rem;
    }

    .Menu h2,
    .gallery h2,
    .testimonials h2 {
        font-size: 2rem;
    }

    .dish-card h3 {
        font-size: 1.5rem;
    }

  

    .testimonials {
        padding: 30px 20px;
    }

    .review-cards {
        flex-direction: column;
        padding: 0;
    }

    footer {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo img {
        width: 80px;
    }

    .gallery-img img {
        max-width: 100%;
        max-height: 400px;
    }

    

    .footer-Opening-Hours {
        flex-direction: column;
        gap: 10px;
    }

    .weeks, .footer-timing {
        gap: 10px;
    }
}
@media (max-width: 480px) {
  nav {
    /* display: none; */
    /* OR turn into hamburger */
    background: none;
    flex-direction: row;
    text-align: center;
  }

  nav img{
    padding-top: 3px;
    padding-left: 0px;
    margin: 0;
  }
  .linksnav ul{
    flex-direction: row;
  }
  
  .menu-toggle {
    display: block; /* hamburger icon */
  }
}

@media (max-width: 480px) {
 

}


@media (max-width: 600px){
    .CTA-text h2 {
        font-size: 1.8rem;
    }

    .CTA-text p {
        font-size: 1rem;
        max-width: 95%;
        margin: 0 auto;
    }

    .CTA-btn {
        font-size: 0.9rem;
        padding: 12px 24px;
        position: relative;
        margin-top: 20px;
    }
}