/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}



/* HEADER */
header {
    background: #111;
    color: #fff;
    padding: 15px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ff9800;
}

.nav-links a {
    margin-left: 25px;
    font-weight: 500;
}

.nav-links a:hover {
    color: #ff9800;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('food/efo\ riro\ 3.png');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #e68900;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
    color:#ff9800;
}

.btn {
    background: #ff9800;
    padding: 12px 30px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn:hover {
    background: #e68900;
}

/* SECTIONS */
section {
    padding: 80px 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
}

/* ABOUT */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* MENU */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.menu-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.price {
    color: #ff9800;
    font-weight: 600;
}

/* CONTACT */
form {
    max-width: 600px;
    margin: auto;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* LIVE BUSINESS INFO */
#business-info {
    background: var(--section-bg);
}

.business-info-box {
    max-width: 700px;
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    background: var(--card-bg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
}

.info-item .label {
    display: block;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 6px;
}

.status {
    font-size: 20px;
    font-weight: 600;
}

.status.open {
    color: #4caf50;
}

.status.closed {
    color: #f44336;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .about {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    header {
        padding: 15px 20px;
    }
}
.menu-card img {
    border-radius: 8px;
    margin-bottom: 10px;
}

.tag {
    display: inline-block;
    font-size: 12px;
    background:#ff9800;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px
}
.whatsapp-box {
    background: #25D366;
    color: #fff;
    max-width: 700px;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.whatsapp-box p {
    margin: 15px 0 25px;
}

/*Testimonial styling*/
.testimonials {
    background: linear-gradient(135deg, #fff4e6, #ffe0b2);
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid #ff9800;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-card .emoji {
    font-size: 32px;
    display: block;
   margin-bottom: 15px;
}

/*Map Styling*/

/* Full screen map */
.full-map {
  width: 100%;
  height: 100vh; /* full viewport height */
  position: relative;
}

.full-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .full-map {
    height: 70vh; /* not too tall on phones */
  }
}



.socials {
    margin-top: 10px;
}

.socials a {
    margin: 0 10px;
    color: #ff9800;
    font-weight: 500;
}

.menu-section {
  padding: 60px 20px;
  background: #fff8f0;
  text-align: center;
}

.menu-section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.menu-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card h3 {
  margin-bottom: 15px;
  color: #c0392b;
}

.menu-card ul {
  list-style: none;
  padding: 0;
}

.menu-card li {
  padding: 6px 0;
}

/*Events styling*/

.events-section {
  padding: 60px 20px;
  background: #1e1e1e;
  color: #fff;
  text-align: center;
}

.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.event-info ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}

.event-info li {
  margin: 10px 0;
}

.event-form {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
}

.event-form input,
.event-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.event-form button {
  width: 100%;
  padding: 12px;
  background: #c0392b;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 30px;
  background: #25d366;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
}

.menu-card ul {
  list-style: none;
  padding: 0;
}

.menu-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 1rem;
}

.menu-card li img {
  width: 50px;          /* small thumbnail */
  height: 50px;
  object-fit: cover;     /* crops neatly */
  border-radius: 8px;    /* rounded corners */
  border: 1px solid #ddd;
  transition: transform 0.3s ease;
}

.menu-card li img:hover {
  transform: scale(1.1); /* subtle zoom on hover */
}

.directions-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #c0392b;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
}

