body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f8f8f8;
  color: #333;
}


/* Navigation */
nav {
  background-color: #333333;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  height: 85px; /* Fixed height for the navbar */
}
nav .logo {
  height: 100%;
  display: flex;
  align-items: center;
}
nav .logo img {
  max-height: 80%;
  width: auto;
  object-fit: contain;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
nav li {
  margin: 0 15px;
}
nav a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  color: white;
  font-weight: bold;
}
nav a:hover {
  color: #ff5722;
}

/* Header and Hero Section */
header {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

/* Image Slider */
.slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.slide.active {
  opacity: 1;
}

header .header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  padding: 0 20px;
}
header .header-content h1 {
  font-size: 3em;
  margin-bottom: 10px;
}
header .header-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
}
header .header-content a {
  background-color: #ff5722;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Section Styles */
.content-section {
  padding: 60px 20px;
  text-align: center;
}
.content-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

/* Menu Section */
.menu-section {
  background-color: #fff;
  padding: 60px 20px;
}
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.menu-item {
  background: #f0f0f0;
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 calc(33% - 40px);
  max-width: calc(33% - 40px);
  box-sizing: border-box;
}
.menu-item h3 {
  margin-top: 0;
}
.menu-item .img-placeholder {
  background-color: #ccc;
  height: 150px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.1em;
}

.menu-section h2 {
  text-align: center;
  width: 100%;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .menu-item {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
  
  header .header-content h1 {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 15px;
  }
  
  nav li {
    margin: 0 10px;
  }
  
  .menu-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  header {
    height: 60vh;
  }
  
  header .header-content h1 {
    font-size: 2em;
  }
  
  header .header-content p {
    font-size: 1em;
  }
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    height: auto;
    padding: 10px 15px;
  }
  
  nav .logo {
    height: 50px;
    margin-bottom: 10px;
  }
  
  nav ul {
    width: 100%;
    justify-content: space-around;
  }
  
  nav li {
    margin: 5px;
  }
  
  nav a {
    padding: 8px 0;
    font-size: 0.9em;
  }
  
  .content-section {
    padding: 40px 15px;
  }
  
  .content-section h2,
  .menu-section h2 {
    font-size: 1.8em;
  }
  
  header .header-content h1 {
    font-size: 1.8em;
  }
  
  header .header-content a {
    padding: 8px 16px;
    font-size: 0.9em;
  }
}
