:root {
  --bg: #0f1022;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.16);
  --text: #fff8ff;
  --muted: #e4d4ee;
  --accent: #ff5ba8;
  --accent-2: #7a5cff;
  --accent-3: #00d1ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, #2c145b 0%, transparent 35%),
    radial-gradient(circle at 85% 10%, #1b4da4 0%, transparent 35%),
    linear-gradient(145deg, #0e1128, #1a1236 48%, #2a1042);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  animation: pulse 7s ease-in-out infinite;
}

.glow-left {
  background: rgba(255, 91, 168, 0.28);
  left: -130px;
  top: 110px;
}

.glow-right {
  background: rgba(0, 209, 255, 0.24);
  right: -130px;
  top: 260px;
  animation-delay: 1.4s;
}

.hero {
  width: min(1260px, 92%);
  margin: 28px auto 0;
  padding: 28px;
  border: 1px solid var(--surface-strong);
  border-radius: 28px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1700&q=80") center/cover;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18, 9, 35, 0.88), rgba(18, 9, 35, 0.28));
}

.topbar,
.hero-content {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar h1 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.menu-links {
  display: flex;
  gap: 16px;
}

.menu-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.92;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.hero-content {
  margin-top: 8vh;
  max-width: 680px;
  animation: rise 0.95s ease both;
}

.tag {
  display: inline-block;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.13);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-content h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.08;
  margin: 16px 0;
}

.hero-content p {
  margin: 0;
  max-width: 580px;
  line-height: 1.58;
  color: var(--muted);
}

.btn {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(255, 91, 168, 0.42);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 28px rgba(122, 92, 255, 0.45);
}

.luxury-banner {
  width: min(1260px, 92%);
  margin: 24px auto 0;
  padding: 18px 24px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(255, 91, 168, 0.2), rgba(122, 92, 255, 0.2), rgba(0, 209, 255, 0.2));
  border: 1px solid var(--surface-strong);
}

.luxury-banner h3 {
  margin: 0;
  font-size: 1.25rem;
}

.luxury-banner p {
  margin: 8px 0 0;
  color: var(--muted);
}

.catalog {
  width: min(1260px, 92%);
  margin: 30px auto 56px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07));
  border: 1px solid var(--surface-strong);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  animation: rise 0.8s ease both;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-10px) rotateX(2deg);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
}

.card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-body {
  padding: 16px 18px 20px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 1.13rem;
}

.card-body p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.46;
}

.card-body span {
  font-weight: 800;
  color: #ffd4f0;
  letter-spacing: 0.01em;
}

.footer {
  text-align: center;
  color: var(--muted);
  padding: 14px 10px 34px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 20px;
    border-radius: 20px;
  }

  .menu-links {
    gap: 10px;
    font-size: 0.92rem;
  }

  .hero-content {
    margin-top: 7vh;
  }

  .card img {
    height: 320px;
  }
}
