/* Root & Berry — site.css v1.1.0 */

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

:root {
  --purple:       #5C2D91;
  --purple-light: #7B3DB5;
  --purple-deep:  #3A1A5C;
  --purple-pale:  #E8D8F8;
  --orange:       #F5A623;
  --orange-light: #F7BF5A;
  --green:        #4A8C3F;
  --cream:        #FAF6EF;
  --cream2:       #F3EDE2;
  --text:         #1C1024;
  --text-mid:     #4A3860;
  --text-light:   #8A7499;
  --fd: 'Playfair Display', Georgia, serif;
  --fs: 'Dancing Script', cursive;
  --fb: 'Nunito', sans-serif;
  --nav-h: 72px;
}

html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  { font-family: var(--fb); background: var(--cream); color: var(--text); overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; }

/* ════════════════════════════════════
   NAV
════════════════════════════════════ */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: var(--nav-h);
  background: rgba(58,26,92,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245,166,35,0.25);
}
.nav-logo img { height: 50px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange-light); }
.nav-cta {
  background: var(--orange); color: var(--purple-deep);
  padding: 9px 20px; border-radius: 100px; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  white-space: nowrap; transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--orange-light); transform: scale(1.03); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ════════════════════════════════════
   MOBILE MENU
════════════════════════════════════ */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--purple-deep);
  flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem;
  padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--fd); font-size: 2rem; font-weight: 700; font-style: italic;
  color: rgba(255,255,255,0.88); text-decoration: none; transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu a:hover, .mobile-menu a:active { color: var(--orange-light); }
.mobile-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: none; border: none; color: white; font-size: 2.25rem;
  cursor: pointer; line-height: 1; -webkit-tap-highlight-color: transparent;
}
.mobile-divider {
  width: 40px; height: 1px; background: rgba(255,255,255,0.2);
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/spread-front.jpg');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(58,26,92,0.90) 0%,
    rgba(58,26,92,0.60) 50%,
    rgba(58,26,92,0.80) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 2rem 1.5rem; width: 100%; max-width: 800px;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  font-family: var(--fs); font-size: 1.4rem; color: var(--orange-light);
  margin-bottom: 0.75rem; opacity: 0; animation: fadeUp 0.8s 0.2s ease both;
}
.hero-title {
  font-family: var(--fd); font-size: clamp(3rem, 11vw, 6.5rem);
  font-weight: 900; color: #fff; line-height: 1;
  opacity: 0; animation: fadeUp 0.8s 0.4s ease both;
}
.hero-title em { font-style: italic; color: var(--orange-light); }
.hero-sub {
  font-size: clamp(0.9rem, 3vw, 1.2rem); color: rgba(255,255,255,0.78);
  margin-top: 1rem; font-weight: 300; letter-spacing: 0.5px;
  opacity: 0; animation: fadeUp 0.8s 0.6s ease both;
}
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center;
  margin-top: 2rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.8s ease both;
}
.btn-primary {
  background: var(--orange); color: var(--purple-deep);
  padding: 14px 28px; border-radius: 100px; font-weight: 700;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  text-decoration: none; transition: all 0.2s; letter-spacing: 0.5px;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover, .btn-primary:active { background: var(--orange-light); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.55); color: #fff;
  padding: 13px 28px; border-radius: 100px; font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  text-decoration: none; transition: all 0.2s; letter-spacing: 0.5px;
  -webkit-tap-highlight-color: transparent;
}
.btn-outline:hover, .btn-outline:active { border-color: var(--orange-light); color: var(--orange-light); }
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.4); font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s 1.2s ease both;
}
.scroll-line { width: 1px; height: 36px; background: rgba(255,255,255,0.25); animation: scrollPulse 2s infinite; }

/* ════════════════════════════════════
   MARQUEE
════════════════════════════════════ */
.marquee-band {
  background: var(--purple-deep); padding: 0.9rem 0; overflow: hidden;
  border-top: 3px solid var(--orange); border-bottom: 3px solid var(--orange);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  white-space: nowrap; font-family: var(--fd); font-style: italic;
  font-size: 1rem; color: rgba(255,255,255,0.7); padding: 0 2rem;
}
.marquee-item .dot { color: var(--orange); margin: 0 0.2rem; }

/* ════════════════════════════════════
   SECTION COMMON
════════════════════════════════════ */
section { padding: 5rem 1.5rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--purple-light); font-weight: 700; margin-bottom: 0.4rem;
}
.section-script { font-family: var(--fs); font-size: 1.5rem; color: var(--orange); margin-bottom: 0.25rem; }
.section-title {
  font-family: var(--fd); font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700; color: var(--purple-deep); line-height: 1.15; margin-bottom: 1rem;
}

/* ════════════════════════════════════
   ABOUT
════════════════════════════════════ */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-images { position: relative; height: 460px; }
.about-img-main {
  position: absolute; top: 0; left: 0; width: 72%; height: 84%;
  object-fit: cover; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(58,26,92,0.18);
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0; width: 50%; height: 54%;
  object-fit: cover; border-radius: 16px;
  border: 4px solid var(--cream);
  box-shadow: 0 10px 40px rgba(58,26,92,0.22);
}
.about-text p { font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.25rem; }
.about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple-deep); color: rgba(255,255,255,0.9);
  padding: 10px 20px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; margin-top: 0.5rem;
  flex-wrap: wrap;
}
.about-badge .star { color: var(--orange); font-size: 1rem; flex-shrink: 0; }

/* ════════════════════════════════════
   MENU
════════════════════════════════════ */
#menu { background: var(--purple-deep); padding: 5rem 1.5rem; }
#menu .section-label { color: var(--orange-light); }
#menu .section-title { color: #fff; }
.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.menu-card {
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(245,166,35,0.2);
  background: rgba(255,255,255,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.menu-card-img { width: 100%; height: 210px; object-fit: cover; }
.menu-card-body { padding: 1.25rem; }
.menu-card-tag {
  display: inline-block; font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; padding: 4px 10px; border-radius: 100px; margin-bottom: 0.65rem;
}
.tag-smoothie  { background: rgba(245,166,35,0.18);  color: var(--orange-light); }
.tag-refresher { background: rgba(50,150,220,0.22);  color: #7ECFF5; }
.tag-cafe      { background: rgba(180,120,60,0.25);  color: #F5C88A; }
.tag-juice     { background: rgba(74,140,63,0.25);   color: #90D884; }
.tag-bowl      { background: rgba(123,61,181,0.35);  color: #C9A8F0; }
.menu-card-title { font-family: var(--fd); font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.menu-card-desc  { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.star-badge { color: var(--orange); font-size: 0.8rem; margin-right: 3px; }

.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.gallery-img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 10px;
  transition: transform 0.3s, filter 0.3s;
}
.gallery-img:hover { transform: scale(1.03); filter: brightness(1.1); }

/* ════════════════════════════════════
   INFO
════════════════════════════════════ */
#info { background: var(--cream2); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.info-card {
  background: #fff; border-radius: 20px; padding: 1.75rem;
  border: 1px solid rgba(92,45,145,0.1);
  box-shadow: 0 4px 30px rgba(92,45,145,0.06);
}
.info-card-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--purple-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.1rem;
}
.info-card h3 { font-family: var(--fd); font-size: 1.15rem; font-weight: 700; color: var(--purple-deep); margin-bottom: 1rem; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0; border-bottom: 1px solid rgba(92,45,145,0.08);
  gap: 0.5rem;
}
.hours-row:last-of-type { border-bottom: none; }
.hours-day  { font-size: 0.85rem; font-weight: 600; color: var(--text-mid); }
.hours-time { font-size: 0.85rem; color: var(--purple); font-weight: 700; white-space: nowrap; }
.hours-note {
  margin-top: 1rem; font-size: 0.75rem; color: var(--text-light);
  background: rgba(245,166,35,0.1); border-radius: 8px; padding: 8px 12px;
  border-left: 3px solid var(--orange); line-height: 1.6;
}
.contact-link {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text-mid); font-size: 0.88rem;
  padding: 10px 0; border-bottom: 1px solid rgba(92,45,145,0.08);
  transition: color 0.2s; font-weight: 600;
  -webkit-tap-highlight-color: transparent;
}
.contact-link:hover, .contact-link:active { color: var(--purple); }
.contact-link:last-of-type { border-bottom: none; }
.contact-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--purple-deep); color: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}
.contact-subhead {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem;
}
.social-link {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text-mid); font-size: 0.88rem;
  padding: 10px 0; border-bottom: 1px solid rgba(92,45,145,0.08);
  transition: color 0.2s; font-weight: 600;
  -webkit-tap-highlight-color: transparent;
}
.social-link:hover, .social-link:active { color: var(--purple); }
.social-link:last-of-type { border-bottom: none; }
.social-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.ig { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); color: white; }
.fb { background: #1877F2; color: white; font-weight: 700; }
.social-cta-box {
  margin-top: 1.25rem; background: var(--purple-pale);
  border-radius: 12px; padding: 0.9rem 1rem; text-align: center;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
footer {
  background: var(--purple-deep); padding: 3rem 1.5rem; text-align: center;
  border-top: 3px solid var(--orange);
}
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo img { height: 64px; margin: 0 auto; }
.footer-tagline { font-family: var(--fs); font-size: 1.4rem; color: var(--orange-light); margin-bottom: 1rem; }
.footer-links {
  display: flex; justify-content: center; gap: 1.5rem;
  margin-bottom: 1.5rem; flex-wrap: wrap; padding: 0 1rem;
}
.footer-links a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange-light); }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* ════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ════════════════════════════════════
   ANIMATIONS
════════════════════════════════════ */
@keyframes fadeUp    { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes scrollPulse { 0%,100% { opacity:0.3; } 50% { opacity:1; } }
@keyframes marquee   { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ════════════════════════════════════
   RESPONSIVE — Tablet (≤1024px)
════════════════════════════════════ */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid .info-card:last-child { grid-column: 1 / -1; }
}

/* ════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 4rem 1.25rem; }

  /* Nav */
  #site-nav { padding: 0 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-buttons { flex-direction: column; align-items: center; gap: 0.75rem; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; padding: 15px 24px; }
  .hero-scroll { display: none; }

  /* About — stack vertically */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-images { height: 260px; }
  .about-img-main  { width: 68%; height: 88%; }
  .about-img-accent { width: 48%; height: 52%; }
  .about-badge { font-size: 0.8rem; padding: 9px 16px; }

  /* Menu — single column */
  .menu-grid { grid-template-columns: 1fr; gap: 1rem; }
  .menu-card-img { height: 200px; }

  /* Gallery — 2 col */
  .gallery-strip { grid-template-columns: repeat(2, 1fr); gap: 5px; }
  .gallery-img { border-radius: 8px; }

  /* Info — single column */
  .info-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .info-grid .info-card:last-child { grid-column: auto; }
  .info-card { padding: 1.5rem; }

  /* Hours row wraps on tiny screens */
  .hours-row { flex-wrap: wrap; gap: 2px; }
  .hours-day  { flex: 1 1 100%; }
  .hours-time { font-size: 0.9rem; padding-bottom: 4px; }

  /* Footer */
  .footer-links { gap: 1rem; }
  .footer-links a { font-size: 0.72rem; }
}

/* ════════════════════════════════════
   RESPONSIVE — Small mobile (≤420px)
════════════════════════════════════ */
@media (max-width: 420px) {
  .hero-title { font-size: clamp(2.75rem, 14vw, 3.5rem); }
  .hero-eyebrow { font-size: 1.15rem; }
  .section-title { font-size: 1.65rem; }
  .section-script { font-size: 1.25rem; }
  .menu-card-img { height: 180px; }
  .about-images  { height: 220px; }
  .marquee-item  { font-size: 0.85rem; padding: 0 1.25rem; }
  .mobile-menu a { font-size: 1.65rem; }
}
