@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --forest-deep: #0f281e;
  --forest-mid: #1e4d3a;
  --accent-gold: #bfa15f;
  --cream: #f8f7f2;
  --stone: #e5e2d8;
  --charcoal: #2d2d2d;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
}

.nav-scrolled {
  background-color: rgba(15, 40, 30, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.calendar-slot {
  transition: all 0.2s ease;
  font-size: 0.65rem;
  line-height: 1;
  padding: 0.5rem 0.1rem;
}

@media (min-width: 768px) {
  .calendar-slot {
    font-size: 0.75rem;
    padding: 0.5rem 0.25rem;
  }
}

.calendar-slot.available {
  background-color: #e8f5e9;
  border: 1px solid #c8e6c9;
  color: #1e4d3a;
  cursor: pointer;
}

.calendar-slot.available:hover {
  background-color: #c8e6c9;
  border-color: #a5d6a7;
}

.calendar-slot.booked {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: #9e9e9e;
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-slot.selected {
  background-color: #1e4d3a;
  border-color: #0f281e;
  color: white;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

::selection {
  background-color: #bfa15f;
  color: #0f281e;
}

input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 2px rgba(30, 77, 58, 0.1);
}

a {
  transition: color 0.2s ease;
}