/* Utility styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #EEEEEE;
  font-family: raleway cursive;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}

/* Navbar and Using Flexbox */
.navbar {
  display: flex;
  position: fixed;
  background-color: white;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .3);
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  color: black;
}
.navbar ul li a {
  text-decoration: none;
  margin: 0 10px;
  color: black;
}
.nav-links a {
  color: white;
}
.logo-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: -6px;
}
.menu {
  display: flex;
  justify-content: space-evenly;
  gap: 1em;
  font-size: 18px;
}
.menu li:hover {
  background-color: #f2f2f2;
  color: black;
  border-radius: 5px;
  transition: 0.3s ease;
}
.menu li {
  padding: 5px 14px;
}
.catalogue {
  position: relative;
  position: transparent;
}
.dropdown {
  background-color: #f2f2f2;
  padding: 1em 0;
  position: absolute;
  display: none;
  border-radius: 8px;
  top: 35px;
}
.dropdown li + li {
  margin-top: 10px;
}
.dropdown li {
  padding: 0.5em 1em;
  width: 8em;
  text-align: center;
}
.dropdown li:hover {
  background-color: #E6E6E6;
}
.catalogue:hover .dropdown {
  display: block;
}

/* Responsive Navbar Menu */
input[type=checkbox] {
  display: none;
}
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
}
@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    background-color: #EEEEEE;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
  }
  .menu li:hover {
    display: inline-block;
    background-color: #f2f2f2;
    transition: 0.3s ease;
  }
  .menu li + li {
    margin-top: 12px;
  }
  input[type=checkbox]:checked ~ .menu {
    display: block;
  }
  .hamburger {
    display: block;
  }
  .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
  }
  .dropdown li:hover {
    background-color: #E6E6E6;
  }
}

/* Section Styles */
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-tittle h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

.text-center img {
  max-width: 100%;
  height: auto;
}

#menu-img {
  max-height: 500px; /* Adjust this value as needed */
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

/* Page header */
#page-header {
  height: 320px;
  position: relative;
  color: #fff;
  border-bottom: #eee solid;
  padding-top: 120px;
}
#page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/Meal.jpeg") center/cover no-repeat;
  filter: blur(5px); /* Adjust blur level */
  z-index: 1;
}
#page-header .container {
  position: relative;
  z-index: 2;
}

/* Section intro pictures */
#splendor-intro-pictures {
  height: 400px;
  background-color: rgba(217, 217, 209, 0.84);
}
