/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BODY ================= */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: url('images/bg.jpg') no-repeat center center/cover;
  position: relative;
}

/* OVERLAY */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 182, 193, 0.5);
  backdrop-filter: blur(1px);
  z-index: -1;
}

/* ================= LAYOUT ================= */
.container {
  max-width: 420px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;

  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

/* ================= ANIMATION ================= */
.fade-in {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {opacity:0; transform: translateY(20px);}
  to {opacity:1;}
}

/* ================= LOGO ================= */
.logo-gradient {
  font-family: 'Bebas Neue';
  font-size: 3.8rem;
  letter-spacing: 2px;

  background: linear-gradient(90deg, #ff5c8a, #ff9bb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0px 2px 4px rgba(255, 92, 138, 0.3),
    0px 4px 12px rgba(0, 0, 0, 0.15);

  filter: drop-shadow(0 4px 10px rgba(255, 92, 138, 0.25));
}

/* ================= TEXT ================= */
.tagline {
  margin: 15px 0 30px;
  font-size: 14px;
  opacity: 0.85;
}

/* ================= BUTTON ================= */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  background: white;
  color: #333;
  font-weight: 500;

  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn:hover {
  transform: scale(1.04);
}

.primary {
  background: #ff5c8a;
  color: white;
}

.outline {
  border: 2px solid #ff5c8a;
  background: transparent;
}

/* ICON */
.btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ================= SLIDER (FINAL FIX) ================= */
.slider {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 25px;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;

  transition: all 0.4s ease;
  filter: blur(3px) brightness(0.8);
  transform: scale(0.95);
}

.slide.active img {
  filter: blur(0) brightness(1);
  transform: scale(1);
}

/* DOT */
.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  transition: 0.3s;
}

.dots .active {
  background: #ff5c8a;
  transform: scale(1.3);
}

/* ================= MENU ================= */
.menu-title {
  font-family: 'Bebas Neue';
  font-size: 2rem;
  margin-bottom: 20px;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
}

.card img {
  width: 100%;
  border-radius: 12px;
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff5c8a;
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 10px;
}

/* PRICE */
.price {
  display: block;
  margin: 10px 0;
  color: #ff5c8a;
  font-weight: bold;
}

/* ================= POPUP ================= */
.popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.popup.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  opacity: 0.7;
}

/* SLIDER */
.slider {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 25px;
  position: relative;
}

/* TRACK */
.slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

/* ITEM */
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

/* IMAGE */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: all 0.5s ease;
  transform: scale(1.1);
  filter: brightness(0.7);
}

/* ACTIVE */
.slide.active img {
  transform: scale(1);
  filter: brightness(1);
}

/* OVERLAY */
.slide-overlay {
  position: absolute;
  bottom: 35px;
  left: 20px;
  right: 20px;
  color: white;

  text-align: left;
}

/* TITLE */
.slide-overlay h3 {
  font-size: 1.4rem;
  font-weight: 600;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

/* SUBTEXT */
.slide-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* GRADIENT OVERLAY */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.floating-menu-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #111;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 999;
}

.floating-menu-btn:hover {
  background: #333;
  transform: translateY(-3px);
}