@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600&display=swap');

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Rajdhani', sans-serif;
  background: #c00d0d;
  color: #c00d0d;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* ---------- Header ---------- */
header {
  /* background: rgba(192, 13, 13, 0.25); */
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  text-align: center;
  padding: 15px 0 8px 0;
  position: fixed;        /* stays on top */
  top: 0;
  left: 0;
  z-index: 100;
  backdrop-filter: blur(4px); /* ? optional: soft blur for modern glass effect */
}

header .logo {
  height: 64px;
  margin-bottom: 5px;
  z-index: 101;
}

header h1 {
  font-weight: 600;
  font-size: 3rem;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  opacity: 1;
  z-index: 102;
}
/* ---------- Menu Content ---------- */
main#container {
  width: 100%;
  min-width: 650px;
  flex: 1;
  padding: 200px 20px 90px 20px;  /* ? top padding increased (header height) */
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
}

.region {
  margin: 10px 0;
}
.region div {
  font-size: 1.25rem;
  line-height: 1.6em;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
}
.region img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.menu-item { font-family: 'Rajdhani', sans-serif; font-size: 2.4rem; color: #fff; text-align: center; margin: 0.6em 0; /* ?? spacing between each item */ letter-spacing: 0.3px; }
/* ---------- Footer Buttons ---------- */
#menu-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  background: #c4161d;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px 0;
  gap: 10px;
  z-index: 200;
  box-shadow: 0 -3px 8px rgba(0,0,0,0.25);
}

#menu-bar button {
  flex: 1;
  background: none;
  color: #f0f0f0;
  border: none;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 14px 0;
  border-radius: 6px;
  position: relative;
}

#menu-bar button:hover {
  opacity: 1;
  background: #a01218;
}

#menu-bar button.active {
  opacity: 1;
  color: #fff;
  background: #c4161d;
  box-shadow: 0 0 12px rgba(196,22,29,0.8);
  animation: pulse-red 2.2s infinite;
}

#menu-bar button.active::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 25%;
  width: 50%;
  height: 4px;
  border-radius: 2px;
  background-color: #fff;
  opacity: 0.9;
}

/* Pulse animation for active glow */
@keyframes pulse-red {
  0%   { box-shadow: 0 0 8px rgba(196,22,29,0.6); }
  50%  { box-shadow: 0 0 18px rgba(196,22,29,1); }
  100% { box-shadow: 0 0 8px rgba(196,22,29,0.6); }
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  #menu-bar {
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
  }

  #menu-bar button {
    width: 90%;
    font-size: 1.8rem;
    padding: 1.2rem 0;
  }

  #menu-bar button.active::after {
    bottom: 10px;
    left: 30%;
    width: 40%;
  }
}
