* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
.page-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem;
  gap: 2rem;
}

.side-image {
  flex: 0 0 150px;
  padding: 10px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.side-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.main-content {
  flex: 1;
  max-width: 1200px;
}
.side-image.left {
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  z-index: 10;
}

.side-image.left img {
  max-width: 150px;
  border-radius: 8px;
  background: white;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);

  display: block;       /* Ensure vertical stacking */
  margin-bottom: 1rem;  /* Space between images */
}

.side-image.left img:last-child {
  margin-bottom: 0; /* Remove margin after last image */
}
.side-image.right {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  z-index: 10;
}

.side-image.right img {
  max-width: 150px;
  border-radius: 8px;
  background: white;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);

  display: block;       /* Stack images vertically */
  margin-bottom: 1rem;  /* Space between images */
}

.side-image.right img:last-child {
  margin-bottom: 0; /* Remove margin after last image */
}
@media (max-width: 768px) {
  .side-image {
    display: none;
  }
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  color: rgb(0,0,0);
  box-sizing: border-box;
  position: relative;
}


body {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  color: rgb(0, 0, 0);

  /* Use a border that scales with viewport width */
  border: 1vw solid #113595;  /* 4% of viewport width */

  /* Padding inside border scales as well */
  padding: 4vw;

  min-height: 100vh;

  /* Allow vertical scrolling on small screens */
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  padding: 4vw; /* content padding */
}

@media (min-width: 768px) {
  body {
    padding: 20px;
  }
}
body::before {
  content: "";
  background-image: url('reddy.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: fixed;
  top: 0; left: 0;
  height: 100%; width: 100%;
  z-index: -1;
  opacity: 0.5;
}
@media (min-width: 768px) {
  body::before {
    border-width: 20px;
  }
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  border: 4vw solid #113595;
  box-sizing: border-box;
  z-index: 9999;
}

@media (min-width: 768px) {
  body::after {
    border-width: 20px;
  }
}
.reviews {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 20px;
  }
  .reviews form {
    max-width: 500px;
  }
  .reviews textarea {
    width: 100%;
  }
  #review-list {
    margin-top: 20px;
    list-style: none;
    padding: 0;
  }
  #review-list li {
    margin-bottom: 15px;
    background: #fff;
    padding: 10px;
    border-left: 4px solid #0073e6;
  }
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  /* background: #fff;*/
  /*border-bottom: 1px solid #eee; */
}

.header button {
  background: red;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 0.5rem;
}
.header button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.banner {
  
  align-items: center;
  text-align: center;  
  height: 20px;
  
}
.logo {
  display: flex;
  align-items: center;
}

.card img {
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  max-width: 40%;
  height: auto;
}

.logo img {
  height: 100px;
  margin-right: 0rem;
}
.logo span {
  display: block;          /* Make span behave like a block element so margin auto works */
  text-align: center;      /* Center the text */
  font-size: 3rem;         /* Make text big, adjust as needed */
  font-weight: bold;       /* Optional: make it bold */
  margin: 20px auto;
  margin-left: 1rem;       /* Add some vertical spacing and center horizontally */
  color: red;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Added shadow */
}
.sitetext {
  display: block;          /* Make span behave like a block element so margin auto works */
  text-align: center;      /* Center the text */
  font-size: 5rem;         /* Make text big, adjust as needed */
  font-weight: bold;       /* Optional: make it bold */
  margin: 20px auto;       /* Add some vertical spacing and center horizontally */
  color: red;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Added shadow */
}
nav a {
  margin: 1rem;            /* adds space outside the whole link element */
  padding: 0;              /* no padding inside the link, so text spacing unchanged */
  text-decoration: none;
  color: red;
  font-weight: bold;
  line-height: 1.8;
  font-size: 1rem;
  display: inline-block;   /* needed so margin applies properly */
}
/* On small screens, reduce left margin and font size */
@media (max-width: 480px) {
  nav a {
    margin-left: 1rem;
    font-size: 0.9rem;
  }
}

.hero-wrapper {
  text-align: center;  /* centers inline-block children */
   padding: 3rem 2rem;
   opacity: 0.8;
}

.hero {
  display: inline-block;    /* shrink to text width */
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 12px #113595;
  border-radius: 8px;
}
.hero img {
  max-width: 50px; /* adjust size as needed */
  height: auto;
  display: block;
  margin: 1rem auto 0 auto; /* top margin 1rem, auto horizontal to center */
}
.hero-images {
  display: flex;
  justify-content: center; /* centers images horizontally */
  align-items: center; /* vertically aligns images if needed */
  gap: 4px; /* very small spacing between images */
}

.hero-images img {
  max-width: 150px;
  width: 100%;  /* allow scaling down */
  height: auto;
  display: block;
  margin: 0;
}

/* On small screens (phones) */
@media (max-width: 480px) {
  .hero-images img {
    max-width: 40px;  /* smaller max width */
  }
}
.hero-images img:last-child {
  margin-right: 0; /* no margin on last image */
}
.hero-images2 {
  display: flex;
  justify-content: center; /* centers images horizontally */
  align-items: center; /* vertically aligns images if needed */
  gap: 4px; /* very small spacing between images */
}

.hero-images2 img {
  max-width: 100px;
  width: 100%;  /* allow scaling down */
  height: auto;
  display: block;
  margin: 0;
}

/* On small screens (phones) */
@media (max-width: 480px) {
  .hero-images2 img {
    max-width: 40px;  /* smaller max width */
  }
}

.hero h1 {
  font-size: 3rem;
  color: red;
}
.bold-text {
  font-weight: bold;
}
/* Responsive scaling for phones */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .services2 {
    padding: 0.5rem;
  }
  .bold-text {
    font-size: 1rem;
  }
  .icon {
    width: 15vw;
    max-width: 40px;
  }
}

.services {
  /* background: #fafafa;*/
  
  text-align: center;
}

.services h2 {
  color: red;
  margin-bottom: 1.5rem;
}

.services2 {
  display: block;
  width: 98%;               /* Slightly wider */
  max-width: 1300px;        /* Wider on desktop screens */
  margin: 0 auto;
  background: #fafafa;
  padding: 2rem;            /* Slightly more padding */
  border-radius: 2rem;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); /* Optional soft shadow */
}
.services2 h2 {
  color: red;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .services2 {
    width: 102%;
    border-radius: 0;
    padding: 1rem;
  }
}
.tables-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  width: 100%;
  max-width: 1000px; /* wider container */
  margin: 0 auto;
}

table {
  border-collapse: collapse;
  width: 100%; /* Make tables use full width of their container */
  table-layout: fixed; /* fixes column widths */
}

th, td {
  padding: 8px;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #ccc;
  word-wrap: break-word;
}

th.photo-col, td.photo-col {
  width: 80px; /* fixed width for photo column */
  text-align: center;
}



.tables-container table {
  width: 100%;
  flex: 1;
  min-width: 320px;
  max-width: 400px;
  box-shadow: 0 0 5px #113595;
  border-collapse: collapse;
  background: white;
}
.tables-container th,
.tables-container td {
  border: 1px solid #ddd;
  padding: 8px;
  font-size: 0.9rem;
}

/* Responsive for screens smaller than 600px */
@media (max-width: 600px) {
  .tables-container {
    flex-direction: column; /* stack vertically */
    align-items: center;
    gap: 20px; /* smaller gap */
  }

  .tables-container table {
    width: 90%; /* take most of the screen width */
  }
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.card {
  display: block;
  text-decoration: none;
  background: #fff;
  color: inherit;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px #113595;
  transition: transform 0.2s ease;
  max-width: 300px;
  width: 100%;
  opacity: 0.8;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px #113595;
}

.about {
  padding: 2rem;
  text-align: center;
}

.about h2 {
  color: red;
  margin-bottom: 1rem;
}





.contact {
 /* background: #fafafa; */
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  flex-wrap: wrap;
}

.contact h3 {
  color: red;
  margin-bottom: 0.5rem;
}

.contact button {
  background: red;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 0.5rem;
}

.contact button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#meal-buttons button {
  margin: 5px;
  padding: 8px 12px;
  background-color: #113595;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#meal-buttons button:hover {
  background-color: #0b237d;
}

#modifiers-table tr:hover {
  background-color: #f0f8ff;
  cursor: pointer;
}
th {
  font-size: 0.7rem; /* or try 0.8rem if you want it smaller */
}
#modifiers-table td {
  padding: 8px;
  vertical-align: middle;
}


#reviews {
    max-width: 600px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
  }
  .review {
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    padding: 15px 20px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
  }
  .review:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .review h4 {
    margin: 0 0 8px 0;
    color: #333;
  }
  .stars {
    color: #ffa500; /* orange star color */
    margin-bottom: 8px;
    font-size: 18px;
  }
  .review p {
    color: #555;
    line-height: 1.4;
  }

  .stars .star-icon {
    font-size: 16px; /* smaller star */
  }


.stars {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.rating-number {
  color: #555;
  font-size: 14px;
}



.container {
  max-width: 900px;       /* limits width on large screens */
  margin: 0 auto;         /* centers container horizontally */
  padding: 0 15px;        /* side padding for small screens */
  box-sizing: border-box; /* include padding in width */
}
.container form {
  max-width: 500px;   /* limit form width */
  margin: 0 auto;     /* center form horizontally */
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.container form label {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.container form input[type="text"],
.container form textarea,
.container form select {
  width: 100%;         /* make inputs full width inside form */
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.container form button {
  align-self: flex-start;  /* keep button left aligned or you can use center */
  background: red;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.container form button {
  align-self: center;
}
.container form button:hover {
  background: #b30000;
}
/* Optional: adjust padding on very small screens */
@media (max-width: 600px) {
  .container {
    padding: 0 10px;
  }
}

.services3 {
  text-align: center; /* center content horizontally */
}

.services3 img {
  max-width: 100%;   /* scale down on small screens */
  height: auto;      /* keep aspect ratio */
  width: 400px;      /* default width */
  display: inline-block; /* help with centering */
}

/* Responsive for phones */
@media (max-width: 480px) {
  .services3 img {
    width: 90%;  /* fill most of the screen width */
  }
}