* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeIn 1s ease;
}

.menu-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* SLIDES */
.menu-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.8s ease;
}

.menu-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* IMAGE */
.menu-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 6s ease;
}

.menu-slide.active img {
  transform: scale(1.05);
}

/* DARK OVERLAY */
.menu-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* CAPTION CENTER */
.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  pointer-events: none;
}

/* TITLE WRAPPER */
.caption-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

/* MAIN TITLE */
.caption-main {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 4px;

  background: linear-gradient(90deg, #ffffff, #f5d27a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 6px 30px rgba(0,0,0,0.7);

  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
  transition-delay: 0.4s;
}

/* SUBTITLE */
.caption-sub {
  color: #fff;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: 6px;
  margin-top: 10px;
  opacity: 0.8;

  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
  transition-delay: 0.8s;
}

/* ANIMATION */
.menu-slide.active .caption-main {
  opacity: 1;
  transform: translateY(0);
}

.menu-slide.active .caption-sub {
  opacity: 1;
  transform: translateY(0);
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 10px 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  z-index: 10;
}

.arrow:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.1);
}

.arrow-left { left: 20px; }
.arrow-right { right: 20px; }

/* DOTS */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #fff;
  transform: scale(1.4);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* MOBILE */
@media (max-width: 768px) {
  .arrow {
    font-size: 1.8rem;
    padding: 6px 12px;
    top: 10px;
    transform: none;
  }

  .arrow-left { left: 10px; }
  .arrow-right { right: 10px; }

  .dots {
    bottom: 10px;
  }
}

/* LANDSCAPE FIX */
@media (orientation: landscape) and (max-height: 500px) {
  .menu-slide img {
    object-fit: contain;
  }
}