/* General styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background:pink;
  color: #e35c5c;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #fc8d8df6, #cb4f4f);
  padding: 15px 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-logo {
  color: #fff;
  font-size: 2.1rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
  transition: transform 0.2s ease;
  /* left side is default, no extra margin needed */
   font-family: "Lavishly Yours", cursive;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-left: auto; /* THIS pushes the menu to the far right */
}

.nav-menu li a {
  color: white;
  text-decoration: none;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 8px;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #fff;
  transition: width 0.3s ease;
  margin-top: 3px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #ffe6e6;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }
  .nav-link {
    font-size: 1.1rem;
    padding-left: 10px;
  }
}

/* Hero Section */
.hero {
  background: url('hero-banner1.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 5.1rem;
  font-family: "Corinthia", cursive;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.3rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Banner Section 
.banner {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 1px 0;
}

.banner-img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
}
  */

/* About Section */
.about {
  padding: 50px 20px;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff6f61;
}

.about p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Gallery */
.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  /*box-shadow: 0 4px 6px rgba(0,0,0,0.2);*/
  transition: transform 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .gallery img {
    width: 100%;
    max-width: 300px;
  }
}

/* About Page Hero */
.about-page-hero {
  height: 50vh;
  background: url('Images/about-hero.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.about-page-hero h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-page-hero p {
  font-size: 1.3rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  margin-top: 10px;
}

/* About Details Section */
.about-details {
  display: flex;
  gap: 40px;
  padding: 50px 20px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

.about-text {
  max-width: 500px;
}

.about-text h2 {
  color: #ff6f61;
  margin-bottom: 10px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* About Gallery */
.about-gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.about-gallery img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Team Section */
.team {
  padding: 50px 20px;
  text-align: center;
}

.team h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff6f61;
}

.team-members {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.member {
  text-align: center;
  max-width: 200px;
}

.member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.member h3 {
  margin-bottom: 5px;
  color: #ff6f61;
}

.member p {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .about-details {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-gallery img {
    width: 100%;
    max-width: 300px;
  }
  .team-members {
    flex-direction: column;
    gap: 20px;
  }
}
.order-page-hero {
  background: url('Images/banner.jpg') center/cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.order-page-content h1 {
  font-size:3.2rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.order-page-content p {
  font-size:1.4rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.order-form-section {
  padding: 40px 20px;
  max-width: 600px;
  margin: auto;
}

.order-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.order-form input,
.order-form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.order-form button {
  margin-top: 20px;
  padding: 12px 20px;
  background: #ff6b6b;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.order-form button:hover {
  background: #ff4747;
}


.gallery {
  text-align: center;
  padding: 50px 20px;
  background: #ffe4ec; /* light pink to match your theme */
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #d24d57;
}

.slider {
  /* Change max-width to 100% and remove auto margin */
  position: relative;
  max-width: 100%; /* Changed from 80% to 100% for full width */
  margin: 0; /* Changed from auto to 0 */
  overflow: hidden;
  border-radius: 0; /* Removed border-radius for full width */
  box-shadow: none; /* Removed box-shadow */
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%; /* Ensure the container takes full width */
}

.slides img {
  /* FIX: Change width from 100% to 25% */
  width: 50%; /* This ensures each of the 4 images takes up 1/4 of the 400% container */
  max-width: none;
  height: auto;
  flex-shrink: 0;
  margin: auto;
  border-radius: 0;
}


button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  z-index: 10; /* Ensure buttons are above the images */
}

button.prev {
  left: 10px;
}
button.next {
  right: 10px;
}

/* Add a media query to handle the width on smaller screens if necessary, 
   but 100vw is generally what you want for full-screen width. */
@media (max-width: 768px) {
  .slides img {
    width: 100vw; /* Keep viewport width on mobile */
  }
}
/* Menu Page */
.menu-hero {
  height: 40vh;
  background: url('Images/banner.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.menu-hero h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.menu-hero p {
  font-size: 1.3rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  margin-top: 10px;
}

.menu-content {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.menu-section {
  background: #ffe4ec; /* light pink box to match gallery */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: left;
}

.menu-section h2 {
  color: #d24d57; /* same as gallery heading */
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.menu-section ul {
  list-style: none;
}

.menu-section li {
  padding: 5px 0;
  border-bottom: 1px solid #f7bfc9;
  color: #333;
}

.menu-section li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .menu-hero h1 {
    font-size: 2rem;
  }
  .menu-hero p {
    font-size: 1rem;
  }
}
.quantity-controls input {
  width: 50px;
  text-align: center;
  color: #000; /* black text for visibility */
  font-weight: bold; /* makes numbers stand out */
  font-size: 1rem; /* adjust size if needed */
  background: #fff; /* white background for contrast */
  border: 1px solid #ff6b6b; /* optional: matches your theme */
  border-radius: 4px;
  padding: 5px;
}
.quantity-controls button {
  font-size: 1rem; /* slightly larger buttons for easier clicking */
}

.footer {
  background: #f8f8f8;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h2.logo {
  font-family: "Lavishly Yours", cursive;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #d44b4b;
}

.footer h3 {
  margin-bottom: 15px;
  color: #d44b4b;
}

.footer p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #d44b4b;
}

.social-links a {
  font-size: 20px;
  margin-right: 10px;
  color: #d44b4b;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.payment-icons img {
  width: 40px;
  margin-left: 10px;
}

