/* ============================================
   De Menthe Eatery — Main Stylesheet
   ============================================ */

/* --- Variables --- */
:root {
  --color-cream: #FEF8EA;
  --color-yellow: #FEEC56;
  --color-yellow-dark: #E8C547;
  --color-green: #2D6A4F;
  --color-green-light: #79CE70;
  --color-green-dark: #1B4332;
  --color-coral: #FF7164;
  --color-text: #1A1A1A;
  --color-text-light: #6B6B6B;
  --color-text-muted: #999999;
  --color-white: #FFFFFF;
  --color-warm-brown: #6E4100;
  --color-border: #E8E0D4;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --max-width-narrow: 900px;
  --header-height: 80px;

  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--transition-smooth);
}

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 0.75rem;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(254, 248, 234, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo img {
  height: 38px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-green);
  transition: width 0.3s var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-green);
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s var(--transition-smooth);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background: var(--color-green);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background: var(--color-yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--color-white);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-green);
  border: 2px solid var(--color-green);
}

.btn-outline:hover {
  background: var(--color-green);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FEF8EA 0%, #FFF8E7 30%, #F5F0E0 70%, #FEF8EA 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(254, 236, 86, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(121, 206, 112, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(255, 113, 100, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(254, 236, 86, 0.15) 0%, transparent 30%);
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254, 236, 86, 0.4) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  animation: floatSlow 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(121, 206, 112, 0.25) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: floatSlow 25s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 113, 100, 0.15) 0%, transparent 70%);
  top: 40%;
  left: 10%;
  animation: floatSlow 15s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-logo {
  width: 160px;
  height: auto;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.08));
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--color-green-dark);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--color-yellow);
  margin: 1.5rem auto;
  border-radius: 2px;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 500px;
  margin: 0 auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 2s ease 1s both;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: var(--color-text-muted);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--color-green);
  animation: scrollLine 2s ease-in-out infinite;
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: calc(var(--header-height) + 1.5rem) 0 0;
  font-size: 0.8rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
}

.breadcrumb li + li::before {
  content: '/';
  color: var(--color-text-muted);
  font-size: 0.7rem;
}

.breadcrumb a {
  color: var(--color-green);
  text-decoration: none;
  transition: color 0.3s var(--transition-smooth);
}

.breadcrumb a:hover {
  color: var(--color-green-dark);
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  color: var(--color-text-light);
  font-weight: 500;
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  padding: 0;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--color-green);
}

.faq-question-icon {
  font-size: 1.3rem;
  transition: transform 0.3s var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-question-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth), padding 0.4s var(--transition-smooth);
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 1rem;
}

.faq-answer p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.faq-answer a {
  color: var(--color-green);
  text-decoration: underline;
}

.faq-answer a:hover {
  color: var(--color-green-dark);
}

/* --- Internal Link --- */
.internal-link {
  color: var(--color-green);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s var(--transition-smooth);
}

.internal-link:hover {
  color: var(--color-green-dark);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: calc(var(--header-height) + 4rem) 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, #FFF8E7 0%, var(--color-cream) 100%);
}

.page-hero h1 {
  color: var(--color-green-dark);
}

.page-hero p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

/* --- Section Base --- */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--color-white);
}

.section-dark {
  background: var(--color-green-dark);
  color: var(--color-white);
}

.section-dark h2 {
  color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-header.light p {
  color: rgba(255,255,255,0.75);
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.8s var(--transition-smooth);
}

.about-image:hover img {
  transform: scale(1.05);
}

/* --- Smoothie Cards --- */
.smoothie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.smoothie-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--transition-smooth);
  cursor: pointer;
}

.smoothie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.smoothie-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.smoothie-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-smooth);
}

.smoothie-card:hover .smoothie-card-image img {
  transform: scale(1.1);
}

.smoothie-card-body {
  padding: 1.25rem;
  text-align: center;
}

.smoothie-card-body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.smoothie-card-body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* --- Food Grid --- */
.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.food-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--transition-smooth);
  aspect-ratio: 1;
}

.food-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-smooth);
}

.food-card:hover {
  box-shadow: var(--shadow-lg);
}

.food-card:hover img {
  transform: scale(1.08);
}

.food-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.food-card-overlay h3 {
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 600;
}

/* --- Menu Images Section --- */
.menu-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.menu-image-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
}

.menu-image-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.menu-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-image-card .menu-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(254, 248, 234, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-green-dark);
}

/* --- Local Love Section --- */
.local-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.local-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--transition-smooth);
}

.local-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.local-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--transition-smooth);
}

.gallery-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s var(--transition-smooth);
}

.contact-social .social-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--color-white);
}

.contact-social .social-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.contact-social .social-gmb {
  background: var(--color-green);
  color: var(--color-white);
}

.contact-social .social-gmb:hover {
  background: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.contact-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Order Section --- */
.order-section {
  background: linear-gradient(135deg, var(--color-yellow) 0%, #F5E050 50%, var(--color-yellow) 100%);
  text-align: center;
  padding: 4rem 0;
}

.order-section h2 {
  color: var(--color-green-dark);
}

.order-section p {
  color: var(--color-text);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 1rem auto 2rem;
  opacity: 0.8;
}

.order-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 2rem auto 0;
}

.order-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--transition-smooth);
}

.order-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.order-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.order-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.order-code {
  display: inline-block;
  background: var(--color-yellow);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-green-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s var(--transition-smooth);
}

.footer-col a:hover {
  color: var(--color-yellow);
}

.footer-social-links {
  display: flex;
  gap: 1rem;
}

.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s var(--transition-smooth);
}

.footer-social-links a:hover {
  background: var(--color-yellow);
  color: var(--color-green-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s var(--transition-smooth);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--transition-smooth);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Keyframes --- */
@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(5deg); }
  66% { transform: translate(-20px, 20px) rotate(-3deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .smoothie-card:hover {
    transform: none;
  }

  .hero-shape {
    animation: none;
  }

  .scroll-indicator-line::after {
    animation: none;
    display: none;
  }
}

/* --- Responsive: Tablet --- */
@media (max-width: 1024px) {
  .smoothie-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-image img {
    height: 350px;
  }

  .menu-showcase {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

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

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

  .order-cards {
    grid-template-columns: 1fr;
  }
}

/* --- Responsive: Mobile --- */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .page-hero {
    padding: calc(var(--header-height) + 3rem) 0 2rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--color-white);
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.4s var(--transition-smooth);
    align-items: flex-start;
  }

  .site-nav.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .hero-logo {
    width: 120px;
    margin-bottom: 1.5rem;
  }

  .smoothie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .food-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .food-card {
    aspect-ratio: 4/3;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    gap: 0.75rem;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

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

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

  .contact-social {
    flex-direction: column;
  }

  .contact-social a {
    justify-content: center;
  }

  .order-cards {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 280px;
  }
}

/* --- Responsive: Small Mobile --- */
@media (max-width: 480px) {
  .hero-logo {
    width: 100px;
  }

  .smoothie-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .smoothie-card-body {
    padding: 0.75rem;
  }

  .smoothie-card-body h3 {
    font-size: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 0.5rem;
  }

  .hero-shape-1 {
    width: 300px;
    height: 300px;
  }

  .hero-shape-2 {
    width: 200px;
    height: 200px;
  }
}
