﻿:root {
  --cream: #F5EDE4;
  --ink: #2f2a25;
  --gold: #b88b2f;
}

body {
  font-family: 'Inter', sans-serif;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

.nav-link {
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hero-bg {
  background: linear-gradient(135deg, #fff 0%, #f7efe6 55%, #fdfaf7 100%);
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.section-title {
  letter-spacing: 0.04em;
}

.badge {
  background: #f8f2ea;
  color: #8a6a2b;
  border: 1px solid #eddcc7;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
}

.fade-in {
  animation: fadeIn 0.9s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
