/* Cabin Core Aesthetics */
:root {
  --primary: #f07d19;
  --background-dark: #120d09;
  --surface-dark: #1c1510;
  --surface-highlight: #2a1e16;
  --text-muted: #baaa9c;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .font-display {
  font-family: 'Playfair Display', serif;
}

.hearth-glow {
  background: radial-gradient(circle at 50% -10%, rgba(240, 125, 25, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 10% 90%, rgba(139, 69, 19, 0.05) 0%, transparent 40%),
              var(--background-dark);
}

.hearth-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/dark-matter.png");
  opacity: 0.1;
  pointer-events: none;
  z-index: 50;
  mix-blend-mode: overlay;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.animate-float { animation: float 5s ease-in-out infinite; }

.feast-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feast-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
  border-color: rgba(240, 125, 25, 0.2);
}

input, textarea {
  outline: none !important;
  transition: all 0.3s ease;
}
input:focus, textarea:focus {
  background-color: var(--surface-highlight) !important;
  border-color: rgba(240, 125, 25, 0.3) !important;
  box-shadow: 0 0 0 4px rgba(240, 125, 25, 0.05);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}