/* By Bella Cooks - site.css */

:root {
  /* Brand palette */
  --color-brand-red: #823d3d;
  --color-brand-red-deep: #5c2c2c;
  --color-cream: #f6f4c3;
  --color-neutral: #faf9ed;
  --color-sage: #8a9a84;
  --color-evergreen: #4a5d4e;
  --color-rose: #a67b7b;
  --color-charcoal: #3a3535;

  /* Semantic UI mapping */
  --color-bg: var(--color-neutral);
  --color-bg-soft: var(--color-cream);
  --color-surface: #ffffff;
  --color-surface-soft: rgba(246, 244, 195, 0.55);
  --color-surface-sage: rgba(138, 154, 132, 0.14);
  --color-text: var(--color-charcoal);
  --color-text-strong: var(--color-brand-red-deep);
  --color-heading: var(--color-brand-red);
  --color-border: rgba(130, 61, 61, 0.18);
  --color-border-strong: rgba(130, 61, 61, 0.35);
  --color-link: var(--color-evergreen);
  --color-link-hover: var(--color-brand-red);
  --color-button: var(--color-evergreen);
  --color-button-hover: #3f5142;
  --color-button-text: #faf9ed;
  --color-button-secondary: var(--color-rose);
  --color-button-secondary-hover: #946c6c;
  --color-button-secondary-text: #ffffff;
  --color-footer-bg: var(--color-brand-red-deep);
  --color-footer-text: #faf9ed;
  --color-cta-bg: var(--color-brand-red);
  --color-cta-text: #faf9ed;

  /* Typography */
  --font-logo-sans: "Ubuntu", Arial, sans-serif;
  --font-display: "Safira March", "Times New Roman", serif;
  --font-heading: "Safira March", "Times New Roman", serif;
  --font-subheading: "Cormorant Garamond", Georgia, serif;
  --font-section: "Ubuntu", Arial, sans-serif;
  --font-body: "Ubuntu", Arial, sans-serif;
  --font-quote: "Cormorant Garamond", Georgia, serif;
  --font-caption: "Ubuntu", Arial, sans-serif;

  /* Font sizes */
  --fs-display: clamp(3rem, 7vw, 5.5rem);
  --fs-h1: clamp(2.5rem, 5vw, 4.25rem);
  --fs-h2: clamp(2rem, 4vw, 3.2rem);
  --fs-h3: clamp(1.5rem, 2.8vw, 2.25rem);
  --fs-subheading: clamp(1.15rem, 2vw, 1.5rem);
  --fs-section: 0.84rem;
  --fs-body: 1rem;
  --fs-caption: 0.9rem;
  --fs-quote: clamp(1.2rem, 2.2vw, 1.6rem);

  /* Layout + effects */
  --page-max: 1200px;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-soft: 0 18px 40px rgba(92, 44, 44, 0.08);
  --shadow-card: 0 10px 28px rgba(58, 53, 53, 0.08);
  --shadow-button: 0 8px 20px rgba(74, 93, 78, 0.18);
  --transition-default: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-link);
  text-decoration-color: rgba(74, 93, 78, 0.35);
  text-underline-offset: 0.16em;
  transition:
    color var(--transition-default),
    text-decoration-color var(--transition-default);
}

a:hover,
a:focus-visible {
  color: var(--color-link-hover);
  text-decoration-color: rgba(130, 61, 61, 0.55);
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(130, 61, 61, 0.18);
  color: var(--color-brand-red-deep);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--color-brand-red);
  color: var(--color-neutral);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top var(--transition-default);
}

.skip-link:focus {
  top: 1rem;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
  background:
    radial-gradient(circle at top center, rgba(246, 244, 195, 0.6), rgba(250, 249, 237, 0) 40%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
}

.hero {
  width: 100%;
}

.hero-inner {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 1.25rem;
  font-family: var(--font-section);
  font-size: var(--fs-section);
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-evergreen);
  opacity: 0.95;
}

.coming-soon-card {
  width: min(100%, 760px);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border);
}

.coming-soon-card img,
.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
}

.intro-copy {
  width: min(100%, 720px);
  margin: 1.75rem auto 0;
}

.lead,
.subheading {
  margin: 0;
  font-family: var(--font-subheading);
  font-size: var(--fs-subheading);
  line-height: 1.55;
  font-weight: 500;
  color: var(--color-text-strong);
}

.supporting-text {
  margin: 0.85rem 0 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.8;
  opacity: 0.96;
}

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

.brand-cooks {
  font-family: var(--font-display);
}

.display-text {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--color-heading);
}

h1,
.h1 {
  margin-top: 0;
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-heading);
}

h2,
.h2 {
  margin-top: 0;
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--color-heading);
}

h3,
h4,
h5,
h6,
.h3 {
  margin-top: 0;
  font-family: var(--font-subheading);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-heading);
}

p {
  margin-top: 0;
}

.body-text {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--color-text);
}

.caption,
small,
.meta {
  font-family: var(--font-caption);
  font-size: var(--fs-caption);
  line-height: 1.5;
  color: rgba(58, 53, 53, 0.72);
}

blockquote,
.quote {
  margin: 0;
  font-family: var(--font-quote);
  font-size: var(--fs-quote);
  line-height: 1.45;
  font-style: italic;
  color: var(--color-brand-red-deep);
}

/* Reusable components for next build stages */
.section {
  padding: 4.5rem 0;
}

.section--cream {
  background: var(--color-bg-soft);
}

.section--neutral {
  background: var(--color-bg);
}

.section--sage {
  background: var(--color-surface-sage);
}

.section--dark,
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
}

.wrap {
  width: min(calc(100% - 2rem), var(--page-max));
  margin: 0 auto;
}

.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(6px);
}

.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-section);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--transition-default),
    background-color var(--transition-default),
    border-color var(--transition-default),
    color var(--transition-default),
    box-shadow var(--transition-default);
}

.button:hover,
.button:focus-visible,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.button-primary,
.btn-primary {
  background: var(--color-button);
  color: var(--color-button-text);
  box-shadow: var(--shadow-button);
}

.button-primary:hover,
.button-primary:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-button-hover);
  color: var(--color-button-text);
}

.button-secondary,
.btn-secondary {
  background: var(--color-button-secondary);
  color: var(--color-button-secondary-text);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--color-button-secondary-hover);
  color: var(--color-button-secondary-text);
}

.button-outline,
.btn-outline {
  background: transparent;
  color: var(--color-brand-red);
  border-color: var(--color-brand-red);
}

.button-outline:hover,
.button-outline:focus-visible,
.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(130, 61, 61, 0.08);
  color: var(--color-brand-red-deep);
  border-color: var(--color-brand-red-deep);
}

.cta-band {
  background: var(--color-cta-bg);
  color: var(--color-cta-text);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.cta-band a {
  color: inherit;
  text-decoration-color: rgba(250, 249, 237, 0.35);
}

hr,
.divider {
  height: 1px;
  border: 0;
  background: linear-gradient(
    90deg,
    rgba(130, 61, 61, 0),
    rgba(130, 61, 61, 0.28),
    rgba(130, 61, 61, 0)
  );
}

input,
textarea,
select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--color-border);
  border-radius: 0.9rem;
  outline: none;
  transition:
    border-color var(--transition-default),
    box-shadow var(--transition-default),
    background-color var(--transition-default);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-evergreen);
  box-shadow: 0 0 0 4px rgba(74, 93, 78, 0.12);
  background: #ffffff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  .page {
    padding: 1.25rem 1rem 2rem;
  }

  .eyebrow,
  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.9rem;
  }

  .intro-copy {
    margin-top: 1.25rem;
  }

  .lead,
  .subheading {
    font-size: 1.05rem;
  }

  .supporting-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .section {
    padding: 3.5rem 0;
  }

  .cta-band {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
