body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navheader{
  top: 0;
  position: sticky;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 20px 30px;
  color: #fff;
  
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo .subtext {
  font-size: 12px;
  display: block;
  letter-spacing: 3px;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ccc;
}

.reservation a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #fff;
  padding: 8px 12px;
}


/* menu icon/bar for mobile view */
.bar {
  display: none;
  font-size: 28px;
  cursor: pointer;
}


.heroimg {
  background-image: url('../Images/heroimage.jpg');
  height: 80vh;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -42px;
  text-align: center;
  align-items: center;
}

.heroimg h2 {
  color: #B49383;
  font-size: 50px;
}

.heroimg h1 {
  color: white;
  font-size: 60px;
}

.heroimg p {
  color: white;
}

.thirs-section {
  width: 90%;
  margin: auto;
}

.thirdsec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 20px;
}

.thirdsec img {
  width: 350px;
}

.imageinner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 35px;
}

.par {
  border: 2px solid red;
  background-color: white;
  position: absolute;
  z-index: 999;
  right: 1%;
  padding: 20px 50px 20px 20px;
  align-items: center;
  width: 40%;
  border: 1px solid #CAB2A7;
  line-height: 20px;

} 
.signature-dish {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  background-color: #f9f9f9;

}

.dish-card {
  display: flex;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  overflow: hidden;
}

.dish-details {
  padding: 30px;
  flex: 1;
}

.dish-subtitle {
  font-style: italic;
  color: #a56745;
  font-size: 18px;
}

.dish-title {
  font-size: 28px;
  margin: 10px 0;
  color: #333;
}

.dish-rating {
  color: #f4b400;
  font-size: 18px;
  margin-bottom: 10px;
}

.dish-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dish-price {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.dish-tags {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.order-button {
  background-color: #a56745;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s;
}

.order-button:hover {
  background-color: #8c5238;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* card section */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  width: 100%;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h2 {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: bold;
}

.card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.card a {
  display: inline-block;
  color: #007bff;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}

.card a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 900px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 80%;
  }
}

@media (max-width: 600px) {
  .card {
    max-width: 100%;
  }
}


.menu-banner {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  position: relative;
}

.menu-container {
  display: inline-block;
  border: 1px solid #9c8c7a;
  padding: 20px 40px;
  position: relative;
  max-width: 90%;
  box-sizing: border-box;
}

.menu-subtitle {
  font-style: italic;
  color: #9c8c7a;
  font-size: 18px;
  margin: 0;
}

.menu-title {
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0;
  color: #fff;
}

.menu-stars {
  color: #9c8c7a;
  font-size: 18px;
  letter-spacing: 3px;
  margin-top: 10px;
  background-color: #f5f5f5;

}

/* Decorative lines */
.menu-container::before,
.menu-container::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background-color: #9c8c7a;
}

.menu-container::before {
  left: -90px;
}

.menu-container::after {
  right: -90px;
}

.menu-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}

.menu-column {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  width: 300px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.menu-heading {
  font-size: 24px;
  text-transform: uppercase;
  color: #9c8c7a;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.menu-item {
  margin-bottom: 20px;
}

.dish-name {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
}

.price {
  font-weight: normal;
  color: #444;
}

.dish-details {
  color: #777;
  font-size: 14px;
  margin: 5px 0;
}

.order-btn {
  background-color: transparent;
  color: #9c8c7a;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 0;
}

.order-btn:hover {
  text-decoration: underline;
}

.menu-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}

.menu-column {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  width: 300px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.menu-heading {
  font-size: 24px;
  text-transform: uppercase;
  color: #9c8c7a;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.menu-item {
  margin-bottom: 20px;
}

.dish-name {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
}

.price {
  font-weight: normal;
  color: #444;
}

.dish-details {
  color: #777;
  font-size: 14px;
  margin: 5px 0;
}

.order-btn {
  background-color: transparent;
  color: #9c8c7a;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 0;
}

.order-btn:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .menu-section {
    justify-content: center;
  }

  .menu-column {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .menu-column {
    width: 90%;
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .menu-section {
    justify-content: center;
  }

  .menu-column {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .menu-column {
    width: 90%;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .menu-container {
    padding: 20px;
  }

  .menu-container::before,
  .menu-container::after {
    width: 40px;
    left: -50px;
    right: -50px;
  }

  .menu-title {
    font-size: 28px;
  }

  .menu-subtitle {
    font-size: 16px;
  }

  .menu-stars {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .menu-container::before,
  .menu-container::after {
    display: none;
  }
}

.menu-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}

.menu-column {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  width: 300px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.menu-heading {
  font-size: 24px;
  text-transform: uppercase;
  color: #9c8c7a;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.menu-item {
  margin-bottom: 20px;
}

.dish-name {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
}

.price {
  font-weight: normal;
  color: #444;
}

.dish-details {
  color: #777;
  font-size: 14px;
  margin: 5px 0;
}

.order-btn {
  background-color: transparent;
  color: #9c8c7a;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 0;
}

.order-btn:hover {
  text-decoration: underline;
}

.reservation-wrapper {
  position: relative;
  min-height: 100vh;
  background: url('https://preview.colorlib.com/theme/thevenue/images/reservations.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reservation-container {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  max-width: 800px;
  width: 90%;
}

.reservation-header p {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-style: italic;
}

.reservation-header h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.reservation-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.reservation-form input, .reservation-form select {
  padding: 12px 15px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  outline: none;
  width: 100%;
  max-width: 200px;
}

.reservation-btn {
  background-color: #d3ad7f;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.reservation-btn:hover {
  background-color: #b38a5b;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #222;
  padding: 40px 20px;
  color: #fff;
  gap: 20px;
}

.footer-left {
  flex: 1;
  min-width: 280px;
}

.footer-left h1 {
  font-size: 2rem;
  font-weight: bold;
}

.footer-left h2 {
  font-size: 1rem;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 10px;
}

.footer-left .heart {
  color: #e74c3c;
}

.footer-left a {
  color: #e74c3c;
  text-decoration: none;
}

.footer-left a:hover {
  text-decoration: underline;
}

.footer-center {
  flex: 2;
  min-width: 300px;
  font-size: 0.9rem;
  color: #ccc;
  text-align: justify;
}

.footer-right {
  flex: 1;
  min-width: 280px;
}

.footer-right p {
  margin: 10px 0;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.footer-right .label {
  background-color: #e58e82;
  color: #222;
  font-weight: bold;
  padding: 4px 8px;
  margin-right: 10px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .footer {
      flex-direction: column;
      text-align: center;
  }

  .footer-right p {
      justify-content: center;
  }

  .footer-center {
      margin: 20px 0;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .reservation-header h1 {
      font-size: 2rem;
  }

  .reservation-form {
      flex-direction: column;
      gap: 10px;
  }

  .reservation-form input, .reservation-form select {
      max-width: 100%;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .reservation-content {
      padding: 15px 20px;
  }

  .reservation-title {
      font-size: 1.5rem;
  }

  .input-group input,
  .input-group select {
      width: 100%;
  }

  .reservation-form {
      flex-direction: column;
      gap: 15px;
  }
}

@media (max-width: 480px) {
  .reservation-title {
      font-size: 1.2rem;
  }

  .reservation-content {
      padding: 10px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .menu-section {
    justify-content: center;
  }

  .menu-column {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .menu-column {
    width: 90%;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .dish-card {
    flex-direction: column;
  }

  .dish-details {
    padding: 20px;
  }

  .dish-description {
    flex-direction: column;
    align-items: flex-start;
  }

  .dish-price {
    margin-top: 10px;
  }
}
  


/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  .bar {
    display: block;
  }

  .reservation {
    display: none;
  }
}
