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

:root {
  --color-primary: #B91C3C;
  --color-primary-dark: #8F1530;
  --color-on-primary: #FFFFFF;
  --color-secondary: #7C1D2E;
  --color-accent: #B8860B;
  --color-on-accent: #FFFFFF;
  --color-background: #FFFBF7;
  --color-foreground: #2B1014;
  --color-card: #FFFFFF;
  --color-card-foreground: #2B1014;
  --color-muted: #F7EDE7;
  --color-muted-foreground: #6B4A4E;
  --color-border: #EBD9CE;
  --color-ring: #B91C3C;

  --font-script: 'Great Vibes', cursive;
  --font-serif: 'Cormorant Infant', serif;
  --font-sans: 'Poppins', sans-serif;
}

* {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-serif);
}

.font-script {
  font-family: var(--font-script);
}

.font-sans {
  font-family: var(--font-sans);
}

/* Brand wordmark lockup (stand-in for the supplied logo artwork) */
.brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  color: var(--color-primary);
}

.brand-mark .brand-script {
  font-family: var(--font-script);
  font-size: 2.1rem;
  line-height: 1;
}

.brand-mark .brand-caps {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  margin-top: 0.05rem;
  padding-left: 0.15em;
}

a, button {
  cursor: pointer;
}

.focus-ring:focus-visible {
  outline: 3px solid var(--color-ring);
  outline-offset: 2px;
}

/* Custom scrollbar-free carousel */
.carousel-track {
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-slide {
  scroll-snap-align: start;
}

.card-shadow {
  box-shadow: 0 10px 30px -12px rgba(43, 16, 20, 0.18);
}

.card-shadow-sm {
  box-shadow: 0 6px 16px -8px rgba(43, 16, 20, 0.15);
}
