/* ========== BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; }

/* ========== HEADER ========== */
#site-header { transition: background 0.3s ease, box-shadow 0.3s ease; }
#site-header.scrolled {
  background: rgba(250, 240, 252, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(140, 61, 142, 0.08);
}
.header-glass {
  background: transparent;
  transition: background 0.3s ease;
}
#site-header.scrolled .header-glass {
  background: rgba(255,255,255,0.6);
}

.nav-link {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--tw-text-plum-600, #8c3d8e);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c96fd1, #f0b429);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover { color: #b04fb5; }
.nav-link:hover::after { width: 100%; }

.mobile-nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: #6e306f;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #f5dff7;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-link:hover { color: #b04fb5; padding-left: 8px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 60px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.938rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #c96fd1, #b04fb5);
  color: white;
  box-shadow: 0 4px 20px rgba(176, 79, 181, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(176, 79, 181, 0.4);
}
.btn-outline {
  background: rgba(255,255,255,0.7);
  color: #6e306f;
  border: 2px solid #ebbef0;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: white;
  border-color: #c96fd1;
  transform: translateY(-2px);
}
.btn-amber {
  background: linear-gradient(135deg, #ffd966, #f0b429);
  color: #562010;
  box-shadow: 0 4px 20px rgba(240, 180, 41, 0.3);
}
.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 180, 41, 0.45);
}

/* ========== TAGS ========== */
.tag {
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 60px;
}
.tag-plum {
  background: linear-gradient(135deg, #faf0fc, #f5dff7);
  color: #8c3d8e;
  border: 1px solid #ebbef0;
}
.tag-amber {
  background: linear-gradient(135deg, #fffbeb, #fff3d6);
  color: #96630d;
  border: 1px solid #ffe9aa;
}

/* ========== FEATURE CARDS ========== */
.feature-card {
  transform: translateY(0);
}
.feature-card:hover {
  transform: translateY(-4px);
}

/* ========== MENU CARDS ========== */
.menu-card {
  transform: translateY(0);
}
.menu-card:hover {
  transform: translateY(-2px);
}
.menu-card li {
  border-bottom: 1px solid #f5dff7;
  padding-bottom: 12px;
}
.menu-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ========== GALLERY ========== */
.gallery-item {
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(140, 61, 142, 0.1);
  transition: box-shadow 0.3s ease;
}
.gallery-item:hover {
  box-shadow: 0 8px 40px rgba(140, 61, 142, 0.2);
}

/* ========== INPUTS ========== */
.input-dark {
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: white;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.938rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.input-dark::placeholder { color: rgba(255,255,255,0.4); }
.input-dark:focus {
  border-color: rgba(201, 111, 209, 0.6);
  background: rgba(255,255,255,0.1);
}

/* ========== HERO ORBS ========== */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #ebbef0, transparent 70%);
  top: -10%; left: -5%;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ffe9aa, transparent 70%);
  bottom: 5%; right: -5%;
  animation-delay: -3s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #f5dff7, transparent 70%);
  top: 40%; right: 20%;
  animation-delay: -5s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* ========== ANIMATIONS ========== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fade-up 0.7s ease forwards;
  opacity: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 767px) {
  .font-display { font-size: 2.5rem; }
  #about .rounded-3xl { border-radius: 1.5rem !important; }
  .gallery-item { border-radius: 1rem !important; }
}
