
body{
font-family: Arial, sans-serif;
margin:0;
background-image:url("bg.jpg");
background-size:cover;
background-repeat:no-repeat;
background-position:center;
background-attachment:fixed;
}


header{
background:#8B4513;
color:white;
padding:12px 20px;
display:flex;
align-items:center;
gap:15px;
}


.logo{
width:55px;
height:55px;
border-radius:50%;
object-fit:cover;
}



nav{
flex:1;
text-align:center;
}


nav a{
color:white;
margin:0 12px;
text-decoration:none;
font-weight:bold;
font-size:15px;
}


nav a:hover{
color:#8FBC8F;
}


.header-right{
margin-left:auto;
}



.content{
padding:20px;
}



.restaurant-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
justify-items:center;
text-align:center;
padding:20px;
}


.restaurant-grid .card{
background:white;
width:220px;
height:350px;
border-radius:18px;
box-shadow:0 6px 18px rgba(0,0,0,0.2);
overflow:hidden;
transition:0.2s;
display:flex;
flex-direction:column;
}


.restaurant-grid .card:hover{
transform:scale(1.03);
}


.restaurant-grid .card img{
width:100%;
height:50%;
object-fit:cover;
}


.card-content{
padding:12px;
flex:1;
display:flex;
flex-direction:column;
justify-content:space-between;
}


.card-content h3{
margin:0;
font-size:18px;
}


.card-content p{
font-size:13px;
color:#555;
margin:5px 0;
}


.card-logo{
width:30px;
height:20px;
object-fit:cover;
border-radius:50%;
padding:4px;
background:#f5f5f5;
}



button{
padding:12px;
font-size:14px;
background:#9a590b;
color:white;
border:none;
border-radius:10px;
cursor:pointer;
font-weight:bold;
}


button:hover{
background:#ffb700;
}


footer{
background:#8B4513;
color:white;
text-align:center;
padding:15px;
margin-top:20px;
}



.contact-box{
width:500px;
margin:50px auto;
background:white;
padding:20px;
border-radius:10px;
text-align:center;
}


.contact-box input,
.contact-box textarea{
width:80%;
margin:10px 0;
padding:10px;
border-radius:5px;
border:1px solid #ccc;
}


.contact-box button{
width:100%;
padding:10px;
background:#8B4513;
color:white;
border:none;
border-radius:5px;
cursor:pointer;
}


.contact-box button:hover{
background:#6d3410;
}



.restaurant-logo{
width:180px;
display:block;
margin:auto;
margin-top:20px;
margin-bottom:20px;
}


.restaurant-header{
text-align:center;
padding:40px;
}


.restaurant-header-card{
text-align:center;
padding:40px 20px;
margin-bottom:30px;
}


.restaurant-header-card .restaurant-logo{
width:150px;
height:150px;
border-radius:50%;
object-fit:cover;
margin-bottom:20px;
border:4px solid #FFC72C;
}


.restaurant-header-card h2{
color:#8B4513;
font-size:36px;
margin:10px 0;
}



.menu-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:30px;
}


.menu-card{
display:flex;
gap:20px;
margin:20px 0;
padding:25px;
background:white;
border-radius:18px;
box-shadow:0 8px 25px rgba(0,0,0,0.15);
transition:all 0.3s ease;
}


.menu-card:hover{
transform:translateY(-5px);
box-shadow:0 12px 35px rgba(0,0,0,0.2);
}


.menu-img{
width:220px;
height:160px;
object-fit:cover;
border-radius:15px;
flex-shrink:0;
}


.menu-details{
flex:1;
padding-left:20px;
}


.menu-details h3{
color:#8B4513;
margin:0 0 15px 0;
font-size:24px;
}


.menu-details p{
margin:10px 0;
line-height:1.5;
}


.menu-details strong{
color:#8B4513;
font-size:16px;
}


.card-link{
text-decoration:none;
color:inherit;
}



.front-section{
display:flex;
justify-content:center;
align-items:center;
min-height:70vh;
padding:40px;
background-color:transparent;
}


.front{
max-width:850px;
text-align:justify;
font-size:17px;
line-height:1.7;
padding:30px;
background:white;
border-radius:10px;
}


.front h2{
text-align:center;
margin-bottom:25px;
font-size:32px;
}


.front p{
margin-bottom:18px;
}



#results {
    margin: 20px auto;
    width: 90%;
    max-width: 650px;
    display: block;
}

.results-label {
    color: white;
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.85;
    text-align: center;
    display: block;
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.result-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    transition: transform 0.2s;
    width: 100%;
}

.result-card:hover {
    transform: translateX(5px);
    background: rgba(255

.food-card{
background:rgba(255,228,196,0.7);
padding:15px;
border-radius:12px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}



.compare-box{
max-width:600px;
margin:20px auto;
padding:20px;
background:white;
border-radius:12px;
text-align:center;
}


.compare-box select{
padding:10px;
margin:5px;
width:45%;
}


.compare-box button{
padding:10px 20px;
background:rgb(113,71,3);
border:none;
color:white;
border-radius:8px;
cursor:pointer;
}


.compare-wrapper{
width:80%;
margin:30px auto;
}


.compare-table{
width:100%;
border-collapse:collapse;
background:rgb(113,71,3);
border-radius:12px;
overflow:hidden;
text-align:center;
}


.compare-table th{
background:rgb(244,192,109);
color:black;
}


.compare-table th,
.compare-table td{
border:1px solid #ccc;
padding:10px;
}


.compare-table small{
display:block;
font-size:12px;
color:rgb(127,85,8);
margin-top:3px;
}



.search-box{
width:200px;
padding:14px;
font-size:15px;
border-radius:20px;
border:none;
outline:none;
}


#foodPref{
padding:14px 18px;
border-radius:25px;
border:1px solid #ccc;
font-size:16px;
outline:none;
width:300px;
}



.loading{
grid-column:1 / -1;
text-align:center;
padding:40px;
font-size:18px;
color:#666;
}



@media (max-width:768px){


.restaurant-grid{
grid-template-columns:repeat(2,1fr);
}


.menu-card{
flex-direction:column;
text-align:center;
}


.menu-img{
width:100%;
height:200px;
margin-bottom:15px;
}


.menu-details{
padding-left:0;
}


}


@media (max-width:480px){


.restaurant-grid{
grid-template-columns:1fr;
}


}


.menu-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
padding:40px;  
}


.menu-card{
display:flex;
gap:20px;
margin:10px;
padding:25px;  
background:white;
border-radius:18px;
box-shadow:0 8px 25px rgba(0,0,0,0.15);
transition:all 0.3s ease;
}



.restaurant-logo-centered {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 25px auto;
    border: 5px solid #FFC72C;
    box-shadow: 0 8px 25px rgba(255, 199, 44, 0.4);
}

.restaurant-header-card { 
  text-align: center; 
  padding: 30px 30px;
   margin-bottom: 40px; background: 
   linear-gradient(135deg, #fffdf7 0%, #f9f5e8 100%);
    border-radius: 25px; 
    box-shadow: 0 12px 40px rgba(0,0,0,0.15); }

.restaurant-header-card h2 {
    color: #8B4513;
    font-size: 32px;
    margin: 20px 0 15px 0;
    text-align: center;
}

.restaurant-header-card p {
    font-size: 16px;
    color: #6B4423;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}


.menu-restaurant-card {
    background: white;
    width: 300px;
    height: 380px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    padding: 10px;
}

.menu-restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.menu-card-img {
    width: 100%;
    height: 55%;
    object-fit: cover;
}


.no-image-placeholder {
    width: 100%;
    height: 55%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid #FFC72C;
}

.dish-icon {
    font-size: 48px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.menu-restaurant-card .card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-restaurant-card h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #8B4513;
    line-height: 1.3;
}

.menu-price-highlight {
    font-size: 22px;
    font-weight: bold;
    color: #D2691E;
    background: linear-gradient(135deg, #FFC72C, #FFB347);
    padding: 10px 16px;
    border-radius: 25px;
    text-align: center;
    margin: 10px 0;
    box-shadow: 0 4px 15px rgba(255, 199, 44, 0.4);
}

.menu-info {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
    line-height: 1.4;
}


#page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
    justify-items: center;
}

.card-link {
    text-decoration: none;
    color: inherit;
}



.food-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    padding: 30px;
}

.food-card {
    background: linear-gradient(135deg, #fffdf7, #fef4e8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    text-align: center;
}

.food-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}


.food-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}


.food-info {
    padding: 15px;
}

.food-info h3 {
    margin: 10px 0 5px 0;
    color: #8B4513;
}

.restaurant {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: #D2691E;
}



.food-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    padding: 30px;
    max-width: 1100px;
    margin: 0 auto; 
}


.food-card {
    background: linear-gradient(135deg, #ae825b, #4f3f31);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: 0.3s ease;
    text-align: center;
}

.food-card:hover {
    transform: translateY(-6px);
}


.food-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}


.food-info {
    padding: 15px;
    color: white;
    font-family: Arial, sans-serif;
}

.food-info h3 {
    margin: 10px 0 5px 0;
    color: #e9e7e4;
    font-size: 18px;
}

.restaurant {
    font-size: 14px;
    color: #f1f1f1;
    opacity: 0.9;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: #FFC72C;
}


.food-title {
    text-align: center;
    color: white;
    font-size: 34px;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 20px 0;
}

.content {
    padding: 20px;
}

@media (max-width: 768px) {
    .menu-restaurant-card {
        width: 100%;
        max-width: 320px;
        height: 360px;
    }
    .restaurant-logo-centered {
        width: 140px;
        height: 140px;
    }
}


.content {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    padding: 40px 20px;
}


h2, h3 {
    color: white;
    font-family: Arial, sans-serif;
}


.content h2 {
    font-size: 34px;
    margin-bottom: 15px;
}


.content h3 {
    font-size: 20px;
    opacity: 0.95;
}


#foodPref {
    display: block;
    margin: 15px auto;
    width: 320px;
    max-width: 90%;
}


button {
    display: block;
    margin: 10px auto;
}


#results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
    justify-items: center;
}


.food-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    padding: 15px;
    border-radius: 12px;
    color: white;
}


.front-section {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

.front {
    max-width: 850px;
    text-align: justify;
    background: rgba(54, 37, 17, 0.35);
    padding: 30px;
    border-radius: 15px;
    color: white;
}


.front h2 {
    text-align: center;
}


.front p {
    color: #f2f2f2;
}
.compare-box {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
}

.compare-box select {
    padding: 20px;
    margin: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
}


body {
    margin: 0;
    text-align: center;
}


#compareResult {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  color: #4d441f;
}


.menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
    text-align: center;
}


.menu-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    text-align: center;
    color: #4f3f31;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#compareResult,
#compareResult * {
    color: #4f3e19 !important;
}
.menu-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 6px;
}

.no-result {
    color: white;
    font-size: 18px;
    margin-top: 20px;
    opacity: 0.8;
}

.why-contact {
    background-color: #bf9b7c;
    padding: 70px;
    margin-top: 5px;
    border-radius: 5px;

    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.why-contact h3 {
    margin-bottom: 10px;
    color: #6d3410;
}
.why-contact p {
    margin: 6px 0;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 15px;
    margin-top: 20px;
}

.team-card {
    background: #8e692d;
    padding: 15px;
    border-radius: 10px;
    width: 220px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.team-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}