:root {
  --mulberry: #2e1d47;
  --mulberry-deep: #1a0f2a;
  --lilac: #e4b7ff;
  --champagne: #ffd580;
  --plum: #4f2d6c;
  --bg-gradient: linear-gradient(135deg, #121018 0%, #261a35 100%);
  --text-light: #f7f3ff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --card: rgba(46, 29, 71, 0.85);
  --border: rgba(255, 255, 255, 0.08);
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg-gradient);
  color: var(--text-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  letter-spacing: 0.5px;
}

.navbar {
  background: rgba(18, 16, 24, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #fff;
}

.navbar-brand span {
  color: var(--champagne);
}

.navbar-link {
  color: var(--text-muted);
  font-weight: 600;
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--lilac);
}

.hero-luxe {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background: url('https://images.pexels.com/photos/3171837/pexels-photo-3171837.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}

.hero-luxe::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 16, 24, 0.85), rgba(38, 26, 53, 0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-title {
  font-size: clamp(2.8rem, 4vw, 4rem);
  margin-bottom: 16px;
}

.hero-description {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(228, 183, 255, 0.15);
  color: var(--lilac);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--champagne);
  font-size: 0.75rem;
}

.section-title {
  font-size: clamp(2.4rem, 3vw, 3rem);
  margin: 18px 0;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.card-grid,
.theme-grid,
.gallery-grid,
.checklist-grid,
.vendor-grid,
.package-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.glass-card,
.theme-card,
.vendor-card,
.package-card,
.faq-card {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(10, 8, 16, 0.35);
}

.theme-card img,
.gallery-card img {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 18px;
  height: 220px;
  object-fit: cover;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.gallery-card img {
  height: 320px;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-overlay h3 {
  margin: 0;
}

.checklist-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.checklist-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}

.checklist-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-card li::before {
  content: '\2713';
  margin-right: 10px;
  color: var(--champagne);
}

.timeline {
  margin-top: 40px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-step {
  position: relative;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 20px rgba(255, 213, 128, 0.7);
}

.vendor-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(228, 183, 255, 0.15);
  color: var(--lilac);
  font-size: 0.8rem;
}

.package-card {
  text-align: center;
}

.package-card h3 {
  font-size: 1.4rem;
}

.package-price {
  font-size: 2rem;
  color: var(--champagne);
  margin: 12px 0;
}

.form-card {
  background: var(--card);
  border-radius: 28px;
  padding: 34px;
  border: 1px solid var(--border);
}

form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.cta-section {
  background: radial-gradient(circle at top, rgba(228, 183, 255, 0.15), transparent 60%), var(--bg-gradient);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
}

.cta-buttons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--champagne), var(--lilac));
  color: #1a0f2a;
  border: none;
  font-weight: 700;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer {
  background: #120d1d;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.footer a {
  color: var(--text-muted);
}

.back-to-top {
  background: var(--lilac);
  color: #1a0f2a;
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .navbar-menu {
    background: rgba(18, 16, 24, 0.95);
  }
}
