/* Flowing lake-like background for hero */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
  overflow-x: hidden;
  background-color: #000;
  color: white;
}

.hero-content {
  width: 100%;
  height: 100vh;
  background: linear-gradient(270deg, #001f3f, #000000);
  background-size: 400% 400%;
  animation: flowingLake 20s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@keyframes flowingLake {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Logo and text styling */
.madx-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: white;
  transform: scale(2.0);
}

.madx-logo {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.madx-title {
  font-size: 48px;
  margin: 0;
}

.madx-title .mad {
  font-family: 'PLeague Spartan', sans-serif;
  font-weight: 700;
  text-transform: lowercase;
  font-size: 1.0em;
}

.madx-title .x {
  font-family: 'League Spartan', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  margin-left: 2px;
  font-size: 1.3em;
  /* display: inline-block; */
}

/* Business Button */
.business-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid white;
  border-radius: 6px;
  cursor: pointer;
  color: white;
  font-size: 16px;
  transition: background 0.3s ease;
}
.business-btn:hover {
  background-color: rgba(255,255,255,0.25);
}

/* Business Modal */
.business-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.business-modal-content {
  background: #111;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  text-align: center;
  color: white;
}
.business-modal-content h2 {
  margin-top: 0;
}
.business-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.business-list li {
  margin: 10px 0;
  font-size: 18px;
}

/* Section styles */
.section-1, .section-2 {
  padding: 60px 20px;
  background-color: #111;
  text-align: center;
}

footer {
  background-color: #000;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #aaa;
}

