/* style.css - Custom Styles */
:root {
  --color-warm-light: #fefcfb;
  --color-warm-dark: #3a2b25;
  --color-warm-accent: #c48f56;
  --color-warm-gray: #f5ece5;
  --font-sans: "Inter", "Outfit", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-warm-light);
  color: var(--color-warm-dark);
}

.glass-nav {
  background: rgba(254, 252, 251, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 143, 86, 0.2);
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Animations using Tailwinds arbitrary values is possible, but easier here */
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
