.numberOne {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1vw;
  overflow: hidden;
}

.image-overlay-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("/img/lower-left-a.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 1vw;
  overflow: hidden;
}

.overlay-content {
  display: grid;
  grid-template-rows: auto auto;
  gap: 15px;
  align-items: center;
  justify-items: center;
  padding-top: 1.5vw;
  text-align: center;
}

.overlay-logo {
  width: clamp(80px, 30vw, 280px);
  height: auto;
  display: block;
  z-index: 10;
  padding-top: clamp 12px, 2vw, 24px;
}

.image-overlay-text {
  margin: 0;
  font-size: clamp(12px, 2vw, 22px);
  line-height: 1.2;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.image-overlay-text__color {
  margin: 0;
  font-size: clamp(12px, 2vw, 22px);
  font-family: "light";
  line-height: 1.2;
  font-weight: bold;
  color: white;
}

.menu-container {
  display: flex;
  width: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, #1a237e 0%, #512da8 100%);
  border-radius: 1vw;
  padding: 2rem;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.menu-column {
  flex: 1;
  color: white;
}
.menu-column h4 {
  color: #fff;
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 1rem;
  font-weight: bold;
}
.menu-column li {
  list-style: none;
  margin: 0.8rem 0;
}
.menu-column li a {
  color: #e8eaf6;
  text-decoration: none;
  font-size: clamp(14px, 2.5vw, 18px);
  transition: color 0.3s ease;
}
.menu-column li a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 760px) {
  .menu-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}/*# sourceMappingURL=indexnew.css.map */