/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Lora", serif;
  background-color: black;
  color: white;
} */
.business-container {
  font-family: "Lora", serif;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: background 1s ease-in-out;
  position: relative;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.content-bar {
  max-width: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
}
.content-bar h2 {
  font-family: "Lora", serif;
  color: #fca817;
  text-transform: uppercase;
  font-weight: bold;
}
.content-bar h1 {
  font-family: "Lora", serif;
  color: white;
  font-size: 70px;
  font-weight: bold;
  margin-top: 10px;
}
.content-bar p {
  font-family: "Lora", serif;
  margin-top: 20px;
  font-size: 25px;
}
.content-bar button {
  margin-top: 20px;
  padding: 10px 20px;
  border: 2px solid white;
  background: transparent;
  border-radius: 50px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.content-bar button:hover {
  background: white;
  color: black;
}
.menu {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  width: 100%;
}
.menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.menu li {
  font-size: 25px;
  margin: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 5px 10px;
  border-radius: 5px;
  position: relative;
}

/* Underline Effect */
.menu li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #fca817;
  bottom: -3px;
  left: 50%;
  transition: width 0.3s ease, left 0.3s ease;
}
.menu li:hover::after {
  width: 100%;
  left: 0;
}

.menu li:hover,
.menu li.active {
  color: #fca817;
  background: rgba(255, 255, 255, 0.1);
}

/* Keep laptop view the same */
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .business-container {
    padding: 120px;
  }
}

/* Tablet and larger screens */
@media (min-width: 768px) {
  .business-container {
    flex-direction: row;
    text-align: left;
    padding: 120px;
  }
  .content-bar {
    max-width: 50%;
    text-align: left;
  }
  .menu {
    text-align: right;
  }
  .menu ul {
    flex-direction: column;
    align-items: flex-end;
  }
}

/* Mobile View (Below 768px) */
@media (max-width: 767px) {
  .business-container {
    height: auto;
    padding: 40px 20px;
  }
  .content-bar h1 {
    font-size: 40px;
  }
  .content-bar p {
    font-size: 18px;
  }
  .content-bar a {
    padding: 8px 15px;
    font-size: 16px;
  }
  .menu ul {
    flex-direction: column;
    text-align: center;
  }
  .menu li {
    font-size: 20px;
    padding: 10px;
  }
}
