/* ===== BASE ===== */
:root {
  --rose: #f43f5e;
  --gold: #c9a84c;
  --cream: #faf7f2;
  --blush: #fdf2f8;
}

* { scroll-behavior: smooth; }

body { background-color: var(--cream); }

/* ===== NAVBAR ===== */
.nav-link {
  color: #374151;
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--rose); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.mobile-link {
  display: block;
  padding: 0.75rem 0;
  color: #374151;
  font-weight: 500;
  border-bottom: 1px solid #fce7f3;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--rose); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  color: white;
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border-radius: 9999px;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.btn-primary:hover {
  background: #e11d48;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244,63,94,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  color: white;
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border-radius: 9999px;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.btn-outline:hover {
  background: white;
  color: var(--rose);
  transform: translateY(-2px);
}

/* ===== SOCIAL ICONS ===== */
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #d1d5db;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.social-icon:hover {
  background: var(--rose);
  color: white;
  transform: translateY(-3px);
}

.footer-link {
  color: #9ca3af;
  transition: color 0.2s;
}
.footer-link:hover { color: white; padding-left: 4px; }

/* ===== MARQUEE ===== */
.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LIGHTBOX ===== */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#lightbox.active { display: flex; }
#lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; object-fit: contain; }

/* ===== GALLERY GRID ===== */
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(244,63,94,0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== FAQ ===== */
.faq-answer { transition: all 0.3s ease; }
.faq-btn .fa-chevron-down { transition: transform 0.3s; }
.faq-btn.open .fa-chevron-down { transform: rotate(180deg); }

/* ===== SCROLL TOP ===== */
#scrollTop.show {
  opacity: 1;
  pointer-events: auto;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #fdf2f8 0%, #fff1f2 50%, #faf7f2 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}
