/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #fdfcf7;
  color: #2d2d2d;
  overflow: hidden;
}

.display {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* Header */
.header {
  text-align: center;
  padding: 1rem;
  background: #b71c1c; /* Deep red */
  color: #fff;
  font-family: 'Rock Salt', cursive;
}

.header .logo {
  height: 60px;
  margin-bottom: 0.5rem;
}

.header h1 {
  font-size: 2rem;
}

/* Menu */
.menu {
  flex: 1;
  padding: 1rem;
  background: #fff8f5;
  text-align: center;
  overflow: hidden;
}

.menu h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Rock Salt', cursive;
}

.menu-rotator {
  position: relative;
  height: 100%;
}

.menu-list {
  list-style: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.menu-list.active {
  opacity: 1;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  border-bottom: 1px solid #ddd;
}

/* Video */
.video {
  flex: 1;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video video {
  width: auto;
  height: 50vh;
  object-fit: cover;
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  .menu-list {
    transition: none;
  }
}
