@import "tailwindcss";

:root {
  --background: #ffffff;
  --foreground: #271919;
  --surface: #ffffff;
  --surface-2: #ffffffed;
  --line: #3a1e1e1f;
  --accent: #7B7168;
  --accent-2: #9a9087;
  --accent-3: #7B7168;
  --accent-soft: #ffffff;
  --muted: #6e4f4f;
}

@theme inline {
  --font-sans: var(--font-jakarta);
  --font-serif: var(--font-sora);
  --font-brand: var(--font-cormorant-garamond);
  --color-background: var(--background);
  --color-foreground: var(--foreground);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: var(--font-jakarta), sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

/* Diagnostic mode: force a pure white page background everywhere. */
html,
body,
.site-shell,
main {
  background-color: #fff !important;
  background-image: none !important;
}

header,
footer,
section,
article,
aside {
  background-color: #fff !important;
  background-image: none !important;
}

a,
button,
input,
select,
textarea {
  transition:
    color 180ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    opacity 220ms ease,
    filter 220ms ease;
}

a {
  text-decoration: none;
}

:where(a[href], button, summary, [role="button"], input[type="button"], input[type="submit"], input[type="reset"]) {
  outline: none;
  cursor: pointer;
}

:where(button:disabled, input:disabled, select:disabled, textarea:disabled) {
  cursor: not-allowed;
}

@media (hover: hover) {
  :where(a[href], button, summary, [role="button"], input[type="button"], input[type="submit"], input[type="reset"]):not(:disabled):hover {
    filter: saturate(1.08);
  }
}

:where(a[href], button, summary, [role="button"], input[type="button"], input[type="submit"], input[type="reset"]):focus-visible {
  border-radius: 0.9rem;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.94),
    0 0 0 4px rgba(255, 142, 142, 0.85);
}

:where(button, summary, [role="button"], input[type="button"], input[type="submit"], input[type="reset"]):not(:disabled):active {
  transform: translateY(1px) scale(0.98);
}

:where(a[href]):active {
  opacity: 0.86;
}

::selection {
  background: rgba(245, 80, 80, 0.24);
}

.site-shell {
  position: relative;
}

.site-shell::before {
  content: none;
}

.site-shell::after {
  content: none;
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(0.97);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes loaderBar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes revealSoft {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-soft {
  animation: revealSoft 420ms ease both;
}

.brand-wordmark {
  font-family: var(--font-cormorant-garamond), "Times New Roman", serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-french-flag {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: stretch;
  width: 100%;
  height: 0.42rem;
  overflow: hidden;
  border: 1px solid rgba(120, 109, 101, 0.28);
  border-radius: 999px;
}

.brand-french-flag > span {
  display: block;
  min-width: 0;
}

.carousel-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-scroll::-webkit-scrollbar {
  display: none;
}
