/* ============================================================
   VELVET & VANILLA BAKERY — style.css
   Responsive, faithful to original blush + burgundy aesthetic
   ============================================================ */

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

/* ── TOKENS ── */
:root {
  --blush:       #f5e8e4;
  --blush-light: #faf3f1;
  --blush-dark:  #ecddd8;
  --burgundy:    #7b1f3a;
  --burgundy-dk: #5a1229;
  --burgundy-lt: #a84060;
  --ink:         #1e0a10;
  --muted:       #7a5560;
  --rule:        #d4b0b8;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-script:  'Great Vibes', cursive;
  --ff-body:    'Jost', system-ui, sans-serif;

  --nav-h: 60px;
  --max-w: 1100px;
  --radius: 6px;

  --ease: cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--blush-light);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--burgundy); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--burgundy-dk); }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blush);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--burgundy);
  text-decoration: none;
  letter-spacing: 2px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--burgundy);
  border-bottom-color: var(--burgundy);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: transform .2s var(--ease);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--blush);
  border-top: 1px solid var(--rule);
  padding: 1rem 1.5rem;
  gap: 0.75rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--blush-dark);
}
.nav-mobile a:hover { color: var(--burgundy); }

/* ── HERO ── */
.hero {
  background: var(--blush);
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(2rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
/* Decorative vertical bars — pure CSS, scale-safe */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  top: 8%;
  bottom: 8%;
  width: clamp(3px, 0.4vw, 6px);
  background: var(--burgundy);
  border-radius: 3px;
}
.hero::before { left: clamp(1rem, 4vw, 4rem); }
.hero::after  { right: clamp(1rem, 4vw, 4rem); }

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: clamp(0.6rem, 1.2vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy-lt);
  margin-bottom: clamp(1rem, 3vw, 2rem);
}
.hero-title-block {
  display: inline-block;
}
.hero-title {
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 0.95;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-line {
  font-size: clamp(3rem, 11vw, 9rem);
  letter-spacing: clamp(0.05em, 0.5vw, 0.12em);
  display: block;
}
.title-and {
  font-size: clamp(1.4rem, 4vw, 3.5rem);
  letter-spacing: 0.3em;
  color: var(--muted);
  display: block;
  margin: 0.1em 0;
}
.hero-sub-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  margin-top: clamp(0.5rem, 2vw, 1.2rem);
}
.hero-rule {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--rule);
}
.hero-script {
  font-family: var(--ff-script);
  font-size: clamp(1.8rem, 5vw, 3.8rem);
  color: var(--burgundy);
  white-space: nowrap;
}
.by-leona {
  font-family: var(--ff-display);
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--burgundy);
  letter-spacing: 0.1em;
  margin-left: 0.5rem;
}

/* ── WELCOME ── */
.welcome {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) 1.5rem;
  text-align: center;
}
.welcome-deco {
  font-size: 1rem;
  color: var(--rule);
  margin-bottom: 1rem;
  letter-spacing: 0.5rem;
}
.welcome-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.welcome-text {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 0.85rem;
  line-height: 1.75;
}
.welcome-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-dk);
  border-color: var(--burgundy-dk);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: #fff;
}
.btn-full { width: 100%; text-align: center; }

/* ── FEATURE STRIP ── */
.features {
  background: var(--blush);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 1.75rem 1.5rem;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 2rem;
}
.feature-icon { font-size: 1.5rem; }
.feature-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.feature-divider {
  width: 1px;
  height: 40px;
  background: var(--rule);
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--blush);
  border-bottom: 1px solid var(--rule);
  padding: clamp(2rem, 5vw, 4rem) 1.5rem;
  text-align: center;
}
.page-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy-lt);
  margin-bottom: 0.6rem;
}
.page-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.page-sub {
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── MENU PAGE ── */
.menu-main {
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: clamp(2rem, 5vw, 4rem) 1.5rem;
}
.menu-section { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.menu-section-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.menu-cat-title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.menu-cat-rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}
.menu-card {
  background: white;
  border: 1px solid var(--blush-dark);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(123,31,58,0.10);
}
.menu-card-emoji {
  font-size: 2.5rem;
  background: var(--blush);
  padding: 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--blush-dark);
}
.menu-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-card-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.menu-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.menu-card-price {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--burgundy);
}
.menu-card-order {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  background: var(--burgundy);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  transition: background .2s var(--ease);
}
.menu-card-order:hover { background: var(--burgundy-dk); color: white; }
.menu-note {
  text-align: center;
  padding: 1.5rem;
  background: var(--blush);
  border-radius: 10px;
  border: 1px solid var(--rule);
  font-family: var(--ff-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--muted);
}
.menu-note a { color: var(--burgundy); }

/* ── CONTACT PAGE ── */
.contact-main {
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: clamp(2rem, 5vw, 4rem) 1.5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-info-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burgundy-lt);
  margin-bottom: 0.25rem;
}
.contact-info-value {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.contact-info-value a { color: var(--burgundy); }

/* Form */
.contact-form-wrap {
  background: white;
  border: 1px solid var(--blush-dark);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burgundy);
}
.form-input {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--blush-light);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.form-input:focus {
  border-color: var(--burgundy);
  background: white;
}
.form-textarea {
  min-height: 110px;
  resize: vertical;
}
.form-select { appearance: none; cursor: pointer; }
.form-success {
  display: none;
  background: #f5ebe0;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  text-align: center;
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--burgundy);
  font-size: 1rem;
}
.form-success.show { display: block; }

/* ── FOOTER ── */
.footer {
  background: var(--blush);
  border-top: 1px solid var(--rule);
  text-align: center;
  padding: 2.5rem 1.5rem;
  margin-top: auto;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}
.footer-contact a {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-contact a:hover { color: var(--burgundy); }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero::before { left: 0.5rem; }
  .hero::after  { right: 0.5rem; }

  .feature-divider { display: none; }
  .features { gap: 1rem; }
  .feature { padding: 0.5rem 1rem; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .welcome-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; }
}
