@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ─── Variables ─── */
:root {
  --bg:          #f7f4ed;
  --bg-alt:      #eef7e8;
  --white:       #ffffff;
  --green-dark:  #2d5a1b;
  --green-mid:   #4a8f3a;
  --green:       #5fa832;
  --green-light: #8dc855;
  --green-pale:  #d6efc4;
  --yellow:      #e9b84a;
  --yellow-light:#f5d98a;
  --yellow-pale: #f9f1e5;
  --text:        #1e2b18;
  --text-mid:    #4a5e42;
  --text-muted:  #7a9070;
  --border:      rgba(74,143,58,0.18);
  --shadow:      0 2px 16px rgba(45,90,27,0.08);
  --shadow-md:   0 6px 30px rgba(45,90,27,0.12);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px; /* Keeps your original height */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: #f9f1e5;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-md); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo img {
  width: auto;
  height: 60px;           /* <--- Changed from 48px to 60px */
  object-fit: contain;
  margin-right: 0;
  margin-left: 8rem;      /* <--- Added 25px to move it to the right */
}
.logo-badge {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(90,168,50,0.3);
}
.nav-logo span {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
}
.nav-logo span em { color: var(--yellow); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  position: relative;
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: 8px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-dark); background: transparent; }
.nav-links a.active { color: var(--green-dark); background: transparent; font-weight: 700; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after { transform: scaleX(1); }


.nav-cta {
  background: var(--green) !important;
  color: white !important;
  border-radius: 100px !important;
  padding: 0.5rem 1.25rem !important;
  box-shadow: 0 2px 10px rgba(90,168,50,0.3);
}
.nav-cta:hover { background: var(--green-dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: all 0.3s; }

/* ─── Translate button ─── */
.btn-translate {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.95rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  background: transparent;
  border: 1.5px solid var(--green-mid);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-translate:hover {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
  transform: translateY(-1px);
}
.btn-translate.translating {
  opacity: 0.6;
  pointer-events: none;
}
.btn-translate.translated {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}
.btn-translate svg {
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.btn-translate.translating svg {
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* On mobile: hide the translate button inside collapsed menu area,
   keep it visible in the fixed bar */
@media (max-width: 768px) {
  .btn-translate {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
  }
}

/* ─── Page switching ─── */
.page { display: none; animation: fadeUp 0.45s ease both; }
.page.active { display: block; }

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

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

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 2rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('elric-pxl-82_jgTdi51Q-unsplash.jpg');
  background-size: cover;
  background-position: center;
  background-color: #2d5a1b; /* fallback colour if no photo */
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(25, 50, 10, 0.60) 0%,
    rgba(15, 35, 5,  0.72) 60%,
    rgba(10, 25, 5,  0.82) 100% 
  );
}

/* Bamboo silhouettes */
.hero-bamboo {
  position: absolute;
  bottom: 0;
  font-size: 10rem;
  opacity: 0.12;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
.hero-bamboo.left  { left: 1%; }
.hero-bamboo.right { right: 1%; }

.bamboo-left {
  position: fixed;
  left: -100px;          /* push half off-screen */
  bottom: 15%;            /* anchor to bottom */
  width: 200px;
  transform: rotate(15deg);          /* tilt it */
  transform-origin: bottom left;     /* pivot from the bottom corner */
  pointer-events: none;
  z-index: 0;
}

.bamboo-right {
  position: fixed;
  right: -90px;         /* push half off-screen on the other side */
  bottom: 30%;
  width: 200px;
  transform: rotate(-10deg);         /* tilt the opposite way */
  transform-origin: bottom right;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(233,184,74,0.2);
  border: 1px solid rgba(233,184,74,0.5);
  color: var(--yellow-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.7s ease both;
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.8rem, 7.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 0.4em;
  animation: fadeUp 0.7s 0.15s ease both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero h1 .accent { color: var(--yellow); font-style: italic; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  line-height: 1.65;
  animation: fadeUp 0.7s 0.28s ease both;
}

.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}

.btn-primary {
  background: var(--yellow);
  color: var(--green-dark);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(233,184,74,0.4);
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--yellow-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.55);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.12); }

.hero-stats {
  display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  animation: fadeUp 0.7s 0.55s ease both;
}
.stat-num { font-family: 'Lora', serif; font-size: 2rem; font-weight: 700; color: var(--yellow); }
.stat-label { font-size: 0.74rem; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.2rem; }

/* ─── Section helpers ─── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { display: inline-block; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 0.6rem; }
.section-title { font-family: 'Lora', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: var(--green-dark); line-height: 1.15; }
.section-title span { color: var(--yellow); }
.section-title em   { font-style: italic; color: var(--green-mid); }
.section-divider { width: 44px; height: 3px; background: linear-gradient(90deg, var(--green), var(--yellow)); margin: 0.9rem auto 0; border-radius: 2px; }

.page-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
  min-height: calc(100vh - 68px);
}

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: var(--white);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-text h2 { font-family: 'Lora', serif; font-size: 2rem; font-weight: 700; color: var(--green-dark); margin-bottom: 1rem; line-height: 1.25; }
.about-text p  { color: var(--text-mid); line-height: 1.8; font-size: 0.97rem; margin-bottom: 0.9rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-top: 1.5rem; }
.feature-pill {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--bg-alt); border: 1px solid var(--border);
  padding: 0.55rem 0.85rem; border-radius: 10px;
  font-size: 0.83rem; font-weight: 600; color: var(--green-dark);
}
.about-visual h2 { font-family: 'Lora', serif; font-size: 2rem; font-weight: 700; color: var(--green-dark); margin-bottom: 1rem; line-height: 1.25; }
.about-visual img { height: 80%; width: 80%;}
.food-showcase { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 1.75rem; box-shadow: var(--shadow); }
.showcase-items { display: flex; flex-direction: column; gap: 0.85rem; }
.showcase-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.7rem 1rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.showcase-item:hover { box-shadow: var(--shadow); transform: translateX(3px); }
.showcase-item .emoji { font-size: 1.7rem; }
.showcase-item .item-info h4 { font-size: 0.88rem; font-weight: 700; color: var(--green-dark); }
.showcase-item .item-info p  { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem; }
.showcase-item .item-price { margin-left: auto; font-family: 'Lora', serif; font-size: 0.95rem; font-weight: 700; color: var(--yellow); white-space: nowrap; }

/* ─── FAMILY & NATURE STRIP ─── */
.values-strip {
  background: linear-gradient(135deg, var(--green-dark) 0%, #3d7525 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
/* Bamboo watermarks */
.values-strip::before,
.values-strip::after {
  content: '🎋';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 14rem;
  opacity: 0.06;
  pointer-events: none;
  line-height: 1;
}
.values-strip::before { left: -2rem; }
.values-strip::after  { right: -2rem; }

.values-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }

.values-header { text-align: center; margin-bottom: 3rem; }
.values-header .section-tag  { color: var(--yellow-light); }
.values-header .section-title { color: #ffffff; }
.values-header .section-title em { color: var(--yellow); font-style: italic; }
.values-header .section-divider { background: linear-gradient(90deg, var(--yellow), var(--yellow-light)); }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.value-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
}
.value-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
.value-icon { font-size: 2.6rem; margin-bottom: 1rem; display: block; }
.value-card h3 { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 700; color: var(--yellow-light); margin-bottom: 0.6rem; }
.value-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* People Info */

.people-showcase {
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: rgb(203, 194, 179);
}

.people-showcase2 {
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: rgb(255, 240, 189);
}
.people-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.people-header{
  width: 100%;
}

.people-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.people-picture img {
  border: #1e2b18;
  border-width: 50px;
}
.people-text {
  font-size: 1.5rem;
  max-width: 50%;
  padding-top: 1rem;
}

.people-showcase2 .people-text {
  font-size: 1.3rem;
  max-width: 50%;
  padding-top: 1rem;
}

.people-picture {
  width: 45%;
  height: 45%;
  position: relative;
  
}

.peole-showcase h2 { font-family: 'Lora', serif; font-size: 2rem; font-weight: 700; color: var(--green-dark); margin-bottom: 1rem; line-height: 1.25; }


/* ─── MENU ─── */
.menu-filters { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  background: var(--white); border: 1px solid var(--border); color: var(--text-mid);
  padding: 0.5rem 1.2rem; border-radius: 100px;
  font-family: 'Nunito', sans-serif; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--green-dark); border-color: var(--green-dark); color: white; }

.menu-category { margin-bottom: 3rem; }
.category-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-mid); border-left: 3px solid var(--yellow); padding-left: 0.75rem; margin-bottom: 1.25rem; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1rem; }
.menu-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 1.35rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s; box-shadow: var(--shadow);
}
.menu-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-emoji { font-size: 2.2rem; flex-shrink: 0; line-height: 1; }
.card-body { flex: 1; }
.card-body h3 { font-family: 'Lora', serif; font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.3rem; }
.card-body p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.75rem; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.card-price { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 700; color: var(--green-dark); }
.card-badge { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.22rem 0.6rem; border-radius: 100px; }
.badge-popular { background: var(--yellow-pale); color: #a07010; border: 1px solid var(--yellow); }
.badge-spicy   { background: #fdecea; color: #c0392b; border: 1px solid #f5b7b1; }
.badge-vegan   { background: var(--bg-alt); color: var(--green-dark); border: 1px solid var(--green-pale); }

/* ─── FESTIVALS ─── */
.festival-intro { text-align: center; max-width: 580px; margin: 0 auto 3rem; color: var(--text-mid); line-height: 1.7; font-size: 0.95rem; }
.festivals-list { display: flex; flex-direction: column; gap: 1rem; }
.festival-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  display: grid; grid-template-columns: 80px auto 1fr auto; gap: 1.25rem;
  padding: 1.35rem 1.75rem; align-items: center;
  box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
}
.festival-card.upcoming { border-left: 4px solid var(--green); }
.festival-card.past     { opacity: 0.5; border-left: 4px solid #ccc; }
.festival-card:hover    { transform: translateX(4px); box-shadow: var(--shadow-md); }
.date-day   { font-family: 'Lora', serif; font-size: 2rem; font-weight: 700; color: var(--green-dark); line-height: 1; }
.date-month { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.1rem; }
.festival-divider { width: 1px; height: 50px; background: var(--border); }
.festival-info h3 { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.3rem; }
.festival-meta { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.meta-item { display: flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.festival-status { display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem; }
.status-badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.28rem 0.7rem; border-radius: 100px; }
.status-upcoming { background: var(--bg-alt); color: var(--green-dark); border: 1px solid var(--green-pale); }
.status-soon     { background: var(--yellow-pale); color: #a07010; border: 1px solid var(--yellow); }
.status-past     { background: #f0f0f0; color: #999; border: 1px solid #ddd; }
.countdown { font-size: 0.78rem; color: var(--green-mid); font-weight: 700; }

.festival-map-hint {  background: var(--yellow-pale); border: 1px solid var(--yellow); border-radius: 14px; padding: 1.75rem 2rem; text-align: center; }
.festival-map-hint h4 { font-family: 'Lora', serif; font-size: 1.1rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.festival-map-hint p  { font-size: 0.88rem; color: var(--text-mid); }

/* Festival page – two column layout */
.festival-services-section {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.festival-services-container {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--bg-alt);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.festival-services-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.festival-services-title span {
  color: var(--yellow);
}

.section-divider {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  margin: 0.9rem auto 0;
  border-radius: 2px;
}

/* Service grid – 3 columns on desktop, 2 on tablet, 1 on mobile */
.festival-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.2rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(90, 168, 50, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
  transition: background 0.2s;
}

.service-card:hover .service-icon {
  background: rgba(233, 184, 74, 0.2);
  color: var(--yellow);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
}

.service-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* ----- Section 2: Profesionální vybavení (2 sloupce) ----- */
.festival-equipment-showcase {
  padding: 5rem 2rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.equipment-showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.equipment-image-col {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  transition: transform 0.3s ease;
}

.equipment-image-col:hover {
  transform: scale(1.01);
}

.equipment-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.equipment-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
  line-height: 1.2;
  border-left: 4px solid var(--yellow);
  padding-left: 1rem;
}

.equipment-desc {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.equipment-list.refined-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.equipment-list.refined-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.2rem 0;
}

.equipment-list.refined-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* CTA block – modernized */
.festival-map-hint.modern-cta {
  background: var(--yellow-pale);
  border: 1px solid var(--yellow);
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  margin: 3rem auto;
  max-width: 800px;
  box-shadow: var(--shadow);
}

.festival-map-hint.modern-cta h4 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.festival-map-hint.modern-cta p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

#page-festival-hint {
  max-width: 1160px;
    margin: 0 auto;
    margin-top: 2.5rem;margin-bottom: 2.5rem;
}


/* ─── GALLERY ─── */
.gallery-grid { columns: 3; column-gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; background: var(--white); }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; padding: 3rem 1.5rem; color: var(--text-muted); background: var(--bg-alt); }
.gallery-placeholder .g-emoji { font-size: 2.5rem; opacity: 0.6; }
.gallery-placeholder span { font-size: 0.78rem; font-weight: 600; }
.gallery-placeholder.tall  { padding: 5rem 1.5rem; }
.gallery-placeholder.short { padding: 2rem 1.5rem; }
.gallery-upload-note { text-align: center; margin-top: 2rem; padding: 1.25rem; background: var(--yellow-pale); border: 1px dashed var(--yellow); border-radius: 12px; color: var(--text-mid); font-size: 0.83rem; }

/* ─── CONTACT ─── */
.contact-info h3 { font-family: 'Lora', serif; font-size: 1.4rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.5rem; }
.contact-info > p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.7; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem; background: var(--white); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); }
.contact-icon { width: 40px; height: 40px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.15rem; }
.contact-item p  { font-size: 0.92rem; color: var(--green-dark); font-weight: 600; }
.contact-item a  { color: var(--green); }
.contact-item a:hover { color: var(--green-dark); text-decoration: underline; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; background: var(--white); border: 1px solid var(--border); border-radius: 10px; font-size: 0.83rem; font-weight: 600; color: var(--green-dark); cursor: pointer; transition: all 0.2s; box-shadow: var(--shadow); }
.social-btn:hover { background: var(--green-pale); border-color: var(--green-mid); }

/* ─── CATERING ─── */
.catering-cta { background: var(--yellow-pale); border: 1px solid var(--yellow); border-radius: 16px; padding: 2rem; text-align: center; }
.catering-cta h4 { font-family: 'Lora', serif; font-size: 1.15rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.catering-cta p  { font-size: 0.87rem; color: var(--text-mid); margin-bottom: 1.25rem; line-height: 1.6; }

.catering-motto-block {
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-alt) 100%);
  border-left: 5px solid var(--yellow);
  border-radius: 1.5rem;
  padding: 2rem 2rem 2rem 2.5rem;
  margin: 2rem 0 2.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catering-motto-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(45, 90, 27, 0.15);
}


.motto-heading {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}

.motto-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.motto-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.motto-text:last-of-type {
  margin-bottom: 0;
}

.motto-text strong {
  color: var(--green-dark);
  font-weight: 700;
}

.film-catering-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-alt) 100%);
  border-radius: 2rem;
  margin: 3rem 0 2rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.film-catering-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.film-catering-badge {
  display: inline-block;
  background: var(--yellow-pale);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid var(--yellow);
}

.film-catering-heading {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.film-catering-grid {
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0 0;
}

.film-catering-text p {
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-size: 0.96rem;
}

.film-catering-highlight {
  background: var(--bg-alt);
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--yellow);
  border-radius: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
}

.film-catering-cta {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.film-catering-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.film-catering-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-block h3 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 0.5rem;
  border-left: 3px solid var(--yellow);
}

.film-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.film-feature-list li {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.film-feature-list li::before {
  font-size: 0.9rem;
  opacity: 0.8;
}

.film-catering-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.lang-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

/* ─── NEWSLETTER ─── */
.newsletter-strip { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3.5rem 2rem; text-align: center; }
.newsletter-strip h3 { font-family: 'Lora', serif; font-size: 1.5rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.newsletter-strip p  { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: 0.75rem; max-width: 420px; margin: 0 auto; }
.newsletter-form input { flex: 1; background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 0.7rem 1.25rem; color: var(--text); font-family: 'Nunito', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
.newsletter-form input:focus { border-color: var(--green); }
.newsletter-form button { background: var(--green); color: white; border: none; border-radius: 100px; padding: 0.7rem 1.5rem; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.88rem; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.newsletter-form button:hover { background: var(--green-dark); }

/* ─── FOOTER ─── */
footer { background: var(--green-dark); padding: 2.5rem 2rem; text-align: center; }
.footer-logo { font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 0.4rem; }
.footer-logo em { color: var(--yellow); font-style: normal; }
.footer-stars { color: var(--yellow); letter-spacing: 2px; font-size: 0.9rem; margin: 0.4rem 0; }
footer p { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ─── Toast ─── */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--green-dark); color: white; padding: 0.75rem 1.5rem; border-radius: 100px; font-size: 0.88rem; font-weight: 600; box-shadow: var(--shadow-md); z-index: 9000; transition: transform 0.3s ease; }
.toast.show { transform: translateX(-50%) translateY(0); }

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    
  }
 
  .slides-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  }
 
  .slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    
  }
 
  .slide-left {
    position: relative;
    padding: 56px 48px 48px;
    border-radius: 20px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
 
  .slide-blob {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 40% 50%, rgba(194, 220, 80, 0.22) 0%, rgba(220, 80, 80, 0.06) 55%, transparent 100%);
    pointer-events: none;
    border: #1a1a1a;
    border-width: 5px;
  }
 
  .slide-left-content {
    position: relative;
    z-index: 1;
  }
 
  .slide-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 18px;
    opacity: 0.8;
  }
 
  .slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 20px;
  }
 
  .slide-desc {
    font-size: 14.5px;
    color: #444;
    line-height: 1.75;
    font-weight: 300;
    max-width: 380px;
  }
 
  .slide-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 12px 28px;
    background: #a2ffa2;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
  }

  /* Fixed carousel controls outside the sliding track */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-controls .nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s;
}

.carousel-controls .nav-arrow:hover {
  border-color: var(--green);
  color: var(--green);
  transform: scale(1.05);
}

.carousel-controls .nav-dots {
  display: flex;
  gap: 10px;
}

.carousel-controls .dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
}

.carousel-controls .dot.active {
  background: var(--green);
  transform: scale(1.2);
}

.carousel-wrapper .slide {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden; /* Ensures the border radius clips both left and right panels */
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.carousel-wrapper .slide:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Fix slide alignment and contain image within frame */
.carousel-wrapper .slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch; /* make both columns equal height */
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Left column - text area */
.carousel-wrapper .slide-left {
  padding: 48px 40px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

/* Right column - image area - no overflow */
.carousel-wrapper .slide-right {
  margin: 0;
  padding: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0;
  align-self: stretch; /* stretch to match left column height */
}

/* Make image placeholder fill the entire right column */
.carousel-wrapper .img-placeholder,
.carousel-wrapper .slide-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Remove any extra margin/padding from placeholder */
.img-placeholder {
  margin: 0;
  padding: 0;
}
 
  .slide-btn:hover { background: #46a81c; transform: translateY(-1px); }
 
  .slide-nav {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
  }
 
  .nav-arrow {
    width: 34px;
    height: 34px;
    border: 1.5px solid #bbb;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 14px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    flex-shrink: 0;
  }
 
  .nav-arrow:hover { border-color: #44cc22; color: #44cc22; background: rgba(204,34,34,0.05); }
 
  .nav-dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }
 
  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    border: none;
    padding: 0;
  }
 
  .dot.active {
    background: #33cc22;
    transform: scale(1.25);
  }
 
  .slide-right {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
  }
 
  .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
 
  .slide-right:hover .slide-image { transform: scale(1.03); }
 
  /* Placeholder image replacement (colored gradient per slide) */
  .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    letter-spacing: 0.5px;
  }
 
  .img-0 { background: linear-gradient(135deg, #3d1c1c 0%, #8b3a3a 40%, #c4725a 100%); }
  .img-1 { background: linear-gradient(135deg, #1a2a3d 0%, #2e5090 40%, #4a7abf 100%); }
  .img-2 { background: linear-gradient(135deg, #1a3d1a 0%, #2e7a3a 40%, #5aaa6a 100%); }
  .img-3 { background: linear-gradient(135deg, #3d2a1a 0%, #8b6030 40%, #c4a04a 100%); }
  .img-4 { background: linear-gradient(135deg, #2a1a3d 0%, #6030a0 40%, #9060c0 100%); }



/* Ensure carousel controls are not affected */
#page-catering .carousel-controls {
  margin-top: 1.5rem;
}
  /* ─── Catering Services Grid (Co vše pro vás připravíme?) ─── */
.py-24 {
  padding-top: 6rem;
  padding-bottom: 3rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.max-w-6xl {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
.text-center {
  text-align: center;
}
.font-heading {
  font-family: 'Lora', serif;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.font-bold {
  font-weight: 700;
}
.text-foreground {
  color: var(--green-dark);
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.w-16 {
  width: 4rem;
}
.h-0\.5 {
  height: 0.125rem;
}
.bg-gold {
  background-color: var(--yellow);
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-16 {
  margin-bottom: 4rem;
}
/* Grid layout */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gap-6 {
  gap: 1.5rem;
}
/* Service card */
.group {
  background: var(--white);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.2s;
}
.group:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.aspect-\[4\/3\] {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
/* Image inside card */
.aspect-\[4\/3\] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.group:hover .aspect-\[4\/3\] img {
  transform: scale(1.05);
}
/* Text label */
.p-4 {
  padding: 1rem;
}
.text-center {
  text-align: center;
}
.text-sm {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-semibold {
  font-weight: 600;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.uppercase {
  text-transform: uppercase;
}
.text-muted-foreground {
  color: var(--text-muted);
}

/* Responsive: 4 columns on large screens */
@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Optional: fix image paths if missing – add a fallback background */
.aspect-\[4\/3\] img {
  background-color: var(--bg-alt);
}
 
  @media (max-width: 720px) {
    .slide { grid-template-columns: 1fr; }
    .slide-right { aspect-ratio: 16/9; }
    .slide-left { padding: 36px 28px 32px; min-height: unset; }
  }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .bamboo-left,
  .bamboo-right,
  .hero-bamboo.left,
  .hero-bamboo.right {
    display: none;
  }

  .nav-logo img {
  margin-left: 2rem;      /* <--- Added 25px to move it to the right */
}

  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

.people-info{
  flex-direction: column;
}

.people-text{
  max-width: 100%;
  color: var(--text-mid); line-height: 1.8; font-size: 0.97rem; margin-bottom: 0.9rem;

}

.people-showcase{padding-bottom: 2rem; padding-top: 2rem;}
.people-showcase2{padding-bottom: 2rem; padding-top: 2rem;}

.people-showcase2 .people-text{
  order: 1;
  max-width: 100%;
  color: var(--text-mid); line-height: 1.8; font-size: 0.97rem; margin-bottom: 0.9rem;

}

.people-showcase2 .people-picture{ order:2}

.people-picture {
  width: 100%;
  height: 100%;
  position: relative;
  justify-items: center;
}

.people-picture img{
  margin-top: 1rem;
  width: 100%;
  height: 100%;
  
}

.about-visual img {
    height: 100%;
    width: 100%;
}
  

  .hamburger {
    display: flex;
    z-index: 1100;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;

    background: rgba(14,31,6,0.98);
    backdrop-filter: blur(20px);

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    transform: translateY(-100%);
    transition: transform 0.35s ease;

    z-index: 9999;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 1rem;
  }

  .hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .festival-card { grid-template-columns: 1fr; gap: 1rem; padding: 1.25rem; }
  .festival-divider { display: none; }
  .festival-status { align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }

  .nav-links a::after { display: none; }
  .nav-links a { color: rgba(255,255,255,0.7); border-left: 3px solid transparent; padding-left: 1.25rem; border-radius: 0; }
  .nav-links a:hover { color: white; background: transparent; }
  .nav-links a.active { color: white; font-weight: 700; border-left-color: var(--yellow); background: transparent; }
  .nav-cta { border-left: none !important; background: var(--green) !important; border-radius: 100px !important; padding: 0.75rem 2rem !important; color: white !important; }
}


@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .about-features { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
}


/* On mobile, reset the shift so layout stays clean */
@media (max-width: 720px) {

  .carousel-wrapper .slide {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .carousel-wrapper .slide-left {
    padding: 32px 24px;
  }
  .carousel-wrapper .slide-right {
    aspect-ratio: 16/9;
  }
  #page-catering .carousel-controls {
  margin-top: 0;
}
}

/* extra style for language button */
    .lang-switch {
      background: transparent;
      border: 1px solid var(--border);
      padding: 0.45rem 0.9rem;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-mid);
      border-radius: 100px;
      cursor: pointer;
      font-family: 'Nunito', sans-serif;
      transition: all 0.2s;
      margin-left: 0.5rem;
    }
    .lang-switch:hover {
      background: var(--green-pale);
      color: var(--green-dark);
      border-color: var(--green);
    }

    .lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lang-text {
  font-size: 0.88rem;
  font-weight: 600;
}
    @media (max-width: 768px) {
      .lang-switch {
        margin-left: 0;
        margin-top: 0.5rem;
        background: rgba(255,255,255,0.1);
        color: white;
        border-color: rgba(255,255,255,0.3);
      }
      .nav-links.open .lang-switch {
        background: rgba(255,255,255,0.15);
        color: white;
      }
    }
    /* subtle transition */
    .page, .hero, .about-text, .values-card, .people-text, .catering-showcase {
      transition: opacity 0.15s ease;
    }

    .catering-motto-block {
    padding: 1.5rem;
    border-left-width: 4px;
  }
  
  .motto-heading {
    font-size: 1.4rem;
  }
  
  .motto-text {
    font-size: 0.92rem;
  }

    /* festival */

@media (max-width: 768px) {
  .festival-services-section,
  .festival-equipment-showcase {
    padding: 3rem 1.5rem;
  }
  
  .festival-services-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .equipment-showcase-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .equipment-image-col {
    order: 1;
  }
  
  .equipment-text-col {
    order: 2;
    text-align: center;
  }
  
  .equipment-title {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }
  
  .equipment-list.refined-list {
    align-items: center;
  }
  
  .festival-map-hint.modern-cta {
    margin: 2rem 1.5rem;
    padding: 1.5rem;
  }

  .equipment-showcase-inner {
    display: flex;
    flex-direction: column;
  }

  .equipment-text-col {
    order: 1 !important;
  }

  .equipment-image-col {
    order: 2 !important;
    margin-top: 1rem;
  }
  .film-catering-section {
    padding: 1.5rem;
    margin: 2rem 1rem;
  }
  .film-catering-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .film-catering-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 0.9rem 1rem;
  }
  
  .service-icon {
    width: 36px;
    height: 36px;
  }
  
  .service-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .service-label {
    font-size: 0.85rem;
  }
}