/* ============================================
   BLOOMIPLAYCLUSTR — EUROPEAN LAKESIDE LUXE
   Premium Café Discovery Platform
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --warm-ivory: #F6F3EE;
  --soft-cream: #FFFFFF;
  --sandstone: #E8E1D9;
  --olive: #5A7D5A;
  --olive-dark: #3E5F3E;
  --terracotta: #C46A4A;
  --terracotta-dark: #A55236;
  --charcoal: #2B2B2B;
  --water-glow: rgba(90, 125, 90, 0.15);
  --text-primary: #2B2B2B;
  --text-secondary: #5C5C5C;
  --text-light: #8A8A8A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --max-width: 1440px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--warm-ivory);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.container-narrow {
  max-width: 800px;
}

.section-pad {
  padding: 120px 0;
}

/* === TYPOGRAPHY === */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--olive);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 30px;
}

.intro-text {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 640px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--olive);
  transition: var(--transition-fast);
  margin-top: 16px;
}

.link-arrow:hover {
  gap: 14px;
  color: var(--olive-dark);
}

.link-arrow span {
  transition: transform var(--transition-fast);
}

.link-arrow:hover span {
  transform: translateX(4px);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s;
}

.btn:active::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(90, 125, 90, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(90, 125, 90, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--sandstone);
}

.btn-secondary:hover {
  background: var(--sandstone);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* === NAVIGATION === */
.nav-floating {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1100px;
  transition: all var(--transition);
}

.nav-floating.scrolled {
  top: 12px;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  border-radius: 50px;
  background: rgba(246, 243, 238, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(232, 225, 217, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
}

.nav-floating.scrolled .nav-pill {
  background: rgba(246, 243, 238, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}

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

.nav-cta {
  padding: 10px 24px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(90, 125, 90, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

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

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

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroParallax 20s ease-in-out infinite alternate;
}

@keyframes heroParallax {
  0% { transform: scale(1.05) translateY(0); }
  100% { transform: scale(1.1) translateY(-20px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(43, 43, 43, 0.2) 0%,
    rgba(43, 43, 43, 0.35) 40%,
    rgba(43, 43, 43, 0.6) 100%
  );
  z-index: 1;
}

.hero-ripple-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.ripple {
  position: absolute;
  bottom: -50%;
  left: 50%;
  width: 200%;
  height: 200%;
  border-radius: 45%;
  background: rgba(246, 243, 238, 0.03);
  animation: rippleAnim 8s linear infinite;
}

.ripple-1 { animation-delay: 0s; }
.ripple-2 { animation-delay: 2.5s; opacity: 0.7; }
.ripple-3 { animation-delay: 5s; opacity: 0.4; }

@keyframes rippleAnim {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 230, 180, 0.6);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 40px;
  backdrop-filter: blur(8px);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

.hero-sub {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.hero-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* === INTRO SECTION === */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* === CAFÉ SHOWCASE === */
.showcase-header {
  margin-bottom: 60px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.cafe-card {
  background: var(--soft-cream);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(232, 225, 217, 0.5);
}

.cafe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.cafe-card-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.cafe-card-img {
  overflow: hidden;
  position: relative;
}

.cafe-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cafe-card:hover .cafe-card-img img {
  transform: scale(1.06);
}

.cafe-card-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cafe-location {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.cafe-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.cafe-card-large .cafe-name {
  font-size: 2rem;
}

.cafe-story {
  font-family: var(--font-accent);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* === MENU PREVIEW === */
.menu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.menu-img-stack {
  position: relative;
}

.menu-img-main {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.menu-img-float {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 55%;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 4px solid var(--warm-ivory);
}

.menu-categories {
  margin-top: 32px;
  margin-bottom: 32px;
}

.menu-cat {
  border-bottom: 1px solid var(--sandstone);
}

.menu-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.menu-cat-header:hover {
  color: var(--olive);
}

.menu-cat-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.menu-cat-toggle {
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform var(--transition-fast);
  color: var(--olive);
}

.menu-cat.active .menu-cat-toggle {
  transform: rotate(45deg);
}

.menu-cat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.5s;
  padding: 0 0;
}

.menu-cat.active .menu-cat-body {
  max-height: 300px;
  padding: 0 0 24px;
}

.menu-cat-body p {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.menu-items-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-items-preview span {
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--water-glow);
  font-size: 0.8rem;
  color: var(--olive-dark);
  font-weight: 500;
}

/* === EXPERIENCE SECTION === */
.exp-header {
  text-align: center;
  margin-bottom: 80px;
}

.exp-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.exp-block:last-child {
  margin-bottom: 0;
}

.exp-block-right {
  direction: rtl;
}

.exp-block-right > * {
  direction: ltr;
}

.exp-block-img {
  border-radius: 16px;
  overflow: hidden;
}

.exp-block-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exp-block:hover .exp-block-img img {
  transform: scale(1.04);
}

.exp-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--sandstone);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.exp-block-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.exp-block-content p {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* === GALLERY PREVIEW === */
.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(43, 43, 43, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}

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

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

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

/* === NEWSLETTER === */
.newsletter-section {
  padding: 100px 0;
}

.newsletter-card {
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  border-radius: 24px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-card .section-tag {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
}

.newsletter-card p {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--charcoal);
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--text-light);
}

.newsletter-form .btn-primary {
  background: var(--charcoal);
  white-space: nowrap;
}

.newsletter-form .btn-primary:hover {
  background: #1a1a1a;
}

.newsletter-note {
  display: block;
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === FOOTER === */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--olive);
  color: var(--olive);
  background: rgba(90, 125, 90, 0.1);
}

.footer-nav h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* === PAGE HERO === */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-short {
  height: 65vh;
  min-height: 450px;
}

.page-hero-mini {
  height: 35vh;
  min-height: 280px;
  background: var(--charcoal);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,43,43,0.3) 0%, rgba(43,43,43,0.55) 100%);
}

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

.page-hero-content .section-tag {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
}

.page-hero-mini .page-hero-content h1 {
  color: #fff;
}

/* === MENU PAGE === */
.menu-page-intro {
  text-align: center;
  margin-bottom: 80px;
}

.menu-page-intro .intro-text {
  max-width: 700px;
  margin: 0 auto;
}

.menu-full-category {
  margin-bottom: 100px;
}

.menu-full-category:last-child {
  margin-bottom: 0;
}

.menu-full-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
}

.menu-full-header-reverse {
  direction: rtl;
}

.menu-full-header-reverse > * {
  direction: ltr;
}

.menu-full-img {
  border-radius: 16px;
  overflow: hidden;
}

.menu-full-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.menu-full-title h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.menu-full-title p {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.menu-item {
  padding: 28px;
  background: var(--soft-cream);
  border-radius: 12px;
  border: 1px solid rgba(232, 225, 217, 0.5);
  transition: all var(--transition);
}

.menu-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 16px;
}

.menu-item-top h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
}

.menu-price {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--olive);
  white-space: nowrap;
}

.menu-item p {
  font-family: var(--font-accent);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* === LOCATIONS PAGE === */
.locations-intro {
  text-align: center;
  margin-bottom: 80px;
}

.locations-intro .intro-text {
  max-width: 700px;
  margin: 0 auto;
}

.location-card-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--soft-cream);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid rgba(232, 225, 217, 0.5);
  transition: all var(--transition);
}

.location-card-full:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.location-card-full:last-child {
  margin-bottom: 0;
}

.location-card-reverse {
  direction: rtl;
}

.location-card-reverse > * {
  direction: ltr;
}

.location-full-img {
  overflow: hidden;
}

.location-full-img img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.location-card-full:hover .location-full-img img {
  transform: scale(1.04);
}

.location-full-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-full-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.location-full-content > p {
  font-family: var(--font-accent);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.location-detail {
  display: flex;
  gap: 16px;
}

.location-detail strong {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive);
  min-width: 80px;
}

.location-detail span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* === EXPERIENCE PAGE === */
.exp-page-intro {
  text-align: center;
  margin-bottom: 80px;
}

.exp-page-intro .intro-text {
  max-width: 700px;
  margin: 0 auto;
}

.exp-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.exp-story:last-child {
  margin-bottom: 0;
}

.exp-story-reverse {
  direction: rtl;
}

.exp-story-reverse > * {
  direction: ltr;
}

.exp-story-img {
  border-radius: 16px;
  overflow: hidden;
}

.exp-story-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exp-story:hover .exp-story-img img {
  transform: scale(1.04);
}

.exp-story-content .exp-number {
  font-size: 4rem;
  color: var(--sandstone);
}

.exp-story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.exp-story-content p {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.exp-cta-section {
  padding: 80px 0 120px;
}

.exp-cta-card {
  background: var(--sandstone);
  border-radius: 24px;
  padding: 80px;
  text-align: center;
}

.exp-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.exp-cta-card p {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.exp-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === GALLERY PAGE === */
.gallery-page-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery-p-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-p-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-p-item .gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(43, 43, 43, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-p-item:hover .gallery-item-overlay {
  opacity: 1;
}

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

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

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.contact-info > p {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--olive);
  margin-bottom: 4px;
}

.contact-detail a {
  font-size: 1rem;
  color: var(--charcoal);
  transition: color var(--transition-fast);
}

.contact-detail a:hover {
  color: var(--olive);
}

/* === FORMS === */
.contact-form,
.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  border: 1.5px solid var(--sandstone);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--soft-cream);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px var(--water-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%235C5C5C'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* === RESERVATION === */
.reservation-section {
  background: var(--sandstone);
}

.reserve-card {
  max-width: 900px;
  margin: 0 auto;
}

.reserve-content {
  text-align: center;
  margin-bottom: 48px;
}

.reserve-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.reserve-content p {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
}

.reserve-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.reserve-form .form-group input,
.reserve-form .form-group select,
.reserve-form .form-group textarea {
  background: var(--soft-cream);
}

/* === LEGAL PAGES === */
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  list-style: disc;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.legal-content a {
  color: var(--olive);
  text-decoration: underline;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform var(--transition);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
  z-index: 1;
}

.lightbox-close:hover {
  color: #fff;
}

/* === CURSOR GLOW === */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--water-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
}

/* === REVEAL ANIMATIONS === */
.reveal-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* === SHIMMER EFFECT === */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 1024px) {
  .section-pad {
    padding: 80px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .cafe-card-large {
    grid-template-columns: 1fr;
  }

  .menu-split {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .exp-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .exp-block-right {
    direction: ltr;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .menu-full-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .menu-full-header-reverse {
    direction: ltr;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .location-card-full {
    grid-template-columns: 1fr;
  }

  .location-card-reverse {
    direction: ltr;
  }

  .location-full-img img {
    min-height: 300px;
  }

  .exp-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .exp-story-reverse {
    direction: ltr;
  }

  .exp-story-img img {
    height: 350px;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .reserve-form-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-card {
    padding: 60px 40px;
  }

  .exp-cta-card {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .nav-floating {
    width: calc(100% - 32px);
  }

  .nav-pill {
    padding: 12px 20px;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-top: 20px;
    border-top: 1px solid var(--sandstone);
    margin-top: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(232, 225, 217, 0.3);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-links.active + .nav-cta,
  .nav-links.active ~ .nav-cta {
    display: inline-flex;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

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

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

  .gallery-page-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-card {
    padding: 48px 28px;
  }

  .exp-cta-card {
    padding: 48px 28px;
  }

  .location-full-content {
    padding: 32px 24px;
  }

  .cafe-card-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .gallery-masonry,
  .gallery-page-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

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

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

  .page-hero-short {
    height: 50vh;
    min-height: 350px;
  }

  .menu-img-float {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 16px;
    border: none;
  }
}

/* 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-fade {
    opacity: 1;
    transform: none;
  }
}