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

/* ===== FONTS ===== */
.font-playfair { font-family: 'Playfair Display', Georgia, serif; }
.font-inter { font-family: 'Inter', system-ui, sans-serif; }

/* ===== NAVBAR ===== */
#navbar {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
#navbar.scrolled {
  background: rgba(254, 253, 251, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(123, 45, 59, 0.08);
}

.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #7B2D3B;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* Mobile menu bars */
#mobile-menu.open .bar:first-child { transform: translateY(4px) rotate(45deg); }
#mobile-menu.open .bar:nth-child(2) { opacity: 0; }
#mobile-menu.open .bar:nth-child(3) { width: 5px; transform: translateY(-4px) rotate(-45deg); }

.mobile-link { transition: transform 0.2s ease; }
.mobile-link:hover { transform: translateX(4px); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #7B2D3B;
  color: #FDF2F2;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #7B2D3B;
}
.btn-primary:hover {
  background: transparent;
  color: #7B2D3B;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #7B2D3B;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #E89AAD;
}
.btn-secondary:hover {
  border-color: #7B2D3B;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.12);
}

.btn-reservation {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

/* ===== FORM INPUTS ===== */
.input-field {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #F3C2CC;
  border-radius: 12px;
  background: #FDF9F9;
  color: #4A1621;
  font-size: 0.9rem;
  font-family: 'Inter', system-ui, sans-serif;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
}
.input-field::placeholder { color: #D96E88; }
.input-field:focus {
  border-color: #7B2D3B;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== DECORATIVE DIVIDER ===== */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #E89AAD, #7B2D3B);
  border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  h1 { font-size: 3.5rem !important; }
  .font-playfair { font-family: 'Playfair Display', Georgia, serif; }
}
