/* Theme: Petra Crepes Description: Front page styling for Petra's Crêperie */
/* COLOR VARIABLES – truck silver + warm logo palette */
/* ========================================
   DESIGN TOKENS (PHASE 1)
   ======================================== */
:root {
  /* === COLOR TOKENS === */
  /* Brand */
  --color-primary: #FF9F1C;
  --color-primary-hover: #D9531E;
  --color-accent: #F7D057;

  /* Neutral scale */
  --color-neutral-50: #FFF7E9;
  --color-neutral-100: #F8E6D2;
  --color-neutral-200: #F3DEC9;
  --color-neutral-300: #E7DDD2;
  --color-neutral-400: #C7BCB1;
  --color-neutral-800: #5C4F45;
  /* Darkened from #7A6A5F for contrast */
  --color-neutral-900: #3C2F27;

  /* Semantic Mapping */
  --color-surface-base: var(--color-neutral-50);
  --color-surface-raised: var(--color-neutral-200);
  --color-surface-overlay: #FFFFFF;

  --color-text-primary: var(--color-neutral-900);
  --color-text-secondary: var(--color-neutral-800);
  --color-text-tertiary: #8B7F73;

  /* Functional */
  --color-success: #5ca869;
  --color-error: #d66;
  --color-focus: var(--color-primary);

  /* Legacy / Specific Colors (Preserved) */
  --brand-orange: var(--color-primary);
  --brand-yellow: var(--color-accent);
  --brand-deep-orange: var(--color-primary-hover);
  --brand-red-orange: #B83224;
  --truck-slate-blue: #06084A;
  --soft-blue: #A8A6C4;
  --neutral-silver: var(--color-neutral-400);
  --neutral-silver-light: var(--color-neutral-300);
  --neutral-warm-white: #FBF3E8;
  --neutral-rich-black: var(--color-neutral-900);
  --support-cream: var(--color-neutral-200);
  --support-beige: var(--color-neutral-100);
  --support-pale-cream: var(--color-neutral-50);

  /* Legacy Aliases (Backwards Compatibility) */
  --rose-dark: var(--truck-slate-blue);
  --rose-medium: var(--brand-orange);
  --rose-light: var(--support-pale-cream);
  --rose-lighter: var(--support-beige);
  --accent-pill: var(--support-cream);
  --accent-button: var(--brand-orange);
  --accent-button-dark: var(--brand-deep-orange);
  --card-bg: #ffffff;
  --text-main: var(--color-text-primary);
  --muted: var(--color-text-secondary);

  /* === TYPOGRAPHY TOKENS === */
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  /* ~12-13px */
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 0.9375rem);
  /* ~14-15px */
  --text-base: clamp(0.9375rem, 0.875rem + 0.3125vw, 1rem);
  /* ~15-16px */
  --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  /* ~18-20px */
  --text-xl: clamp(1.375rem, 1.25rem + 0.625vw, 1.5rem);
  /* ~22-24px */
  --text-2xl: clamp(1.75rem, 1.5rem + 1.25vw, 2rem);
  /* ~28-32px */
  --text-3xl: clamp(2.25rem, 2.05rem + 0.8vw, 2.85rem);

  /* ~36-48px */
  --text-4xl: clamp(2.5rem, 2.2rem + 1.5vw, 3.5rem);
  /* ~40-56px (Hero) */

  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;
  --leading-loose: 1.75;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.08em;
  --tracking-wider: 0.12em;

  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* === SPACING TOKENS (8px Scale) === */
  --space-xs: 0.5rem;
  /* 8px */
  --space-sm: 0.75rem;
  /* 12px */
  --space-md: 1rem;
  /* 16px */
  --space-lg: 1.5rem;
  /* 24px */
  --space-xl: 2rem;
  /* 32px */
  --space-2xl: 3rem;
  /* 48px */
  --space-3xl: 4rem;
  /* 64px */
  --space-4xl: 6rem;
  /* 96px */
  --space-5xl: 8rem;
  /* 128px */

  /* === FOUNDATION (Radius & Shadow) === */
  --radius-sm: 0.5rem;
  /* 8px */
  --radius-md: 0.75rem;
  /* 12px */
  --radius-lg: 1rem;
  /* 16px */
  --radius-xl: 1.5rem;
  /* 24px */
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(60, 47, 39, 0.08);
  --shadow-md: 0 8px 24px rgba(60, 47, 39, 0.12);
  --shadow-lg: 0 16px 40px rgba(60, 47, 39, 0.15);
  --shadow-xl: 0 24px 64px rgba(60, 47, 39, 0.18);

  --transition-base: 250ms ease;
}

/* GLOBAL RESET / BASE */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  background: var(--support-pale-cream);
  color: var(--text-main);
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* TYPOGRAPHY BASELINE */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin-top: 0;
  margin-bottom: var(--space-md);
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--text-3xl);
}

h2 {
  font-size: var(--text-2xl);
}

h3 {
  font-size: var(--text-xl);
}

h4 {
  font-size: var(--text-lg);
}

h5 {
  font-size: var(--text-base);
}

h6 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

p {
  margin-top: 0;
  margin-bottom: var(--space-md);
}

/* =========================
   PRELOADER (BASE)
   Step 2: overlay exists but hidden
========================= */
.pc-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: var(--support-cream);

  /* hidden by default (prevents black screen) */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .45s ease, visibility .45s ease;
}

.pc-preloader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pc-preloader__inner {
  width: min(520px, 80vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.pc-preloader__lottie {
  width: 100%;
  height: 100%;
}





/* =========================
   HEADER (UPDATED FOR WP MENU)
   ========================= */

.cl-header {
  background: var(--support-cream);
  color: #fff;
  padding: 0px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.cl-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1180px, 92%);
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(60, 47, 39, 0.28),
      transparent);
}



.cl-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.cl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Ensure header columns behave correctly */
.cl-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 26px;


}

.cl-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  color: #000;
}

.cl-header-cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;


}

/* Logo image */
.cl-logo-img {
  max-height: 64px;
  width: auto;
  height: auto;
  margin: 12px;
}

/* HAMBURGER BUTTON */
.cl-hamburger,
.cl-hamburger span {
  display: none !IMPORTANT;

}

/* =========================================================
   ZIP RADIAL MENU TOGGLE (mobile + tablet only)
   Source: sidebar-menu-toggle-animation.zip
   ========================================================= */

/* wrapper */
.pc-radial-menu {
  position: relative;
  display: none;
  /* hidden by default (desktop) */
}

/* toggle bar */
.clickable-bar {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

/* logo background (behind bars) */
.clickable-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  
  opacity: 0.15;
  /* transparency */
  pointer-events: none;
}

/* bars (direct children of button) */
.clickable-bar span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 3px;
  background: var(--brand-orange);
  border-radius: 999px;
  transition: transform 0.4s ease, opacity 0.3s ease, margin 0.4s ease, visibility 0.3s ease;
}

.clickable-bar .bar-1 {
  top: 24px;
}

.clickable-bar .bar-2 {
  top: 30px;
}

.clickable-bar .bar-3 {
  top: 36px;
}

/* active (X state) */
.clickable-bar[data-clicked="1"] .bar-1 {
  transform: translateX(-50%) translateY(6px) rotate(45deg);
}

.clickable-bar[data-clicked="1"] .bar-2 {
  opacity: 0;
}

.clickable-bar[data-clicked="1"] .bar-3 {
  transform: translateX(-50%) translateY(-6px) rotate(-45deg);
}



/* =========================================================
   MOBILE + TABLET VISIBILITY + ZIP SLIDE BEHAVIOR (JS driven)
   ========================================================= */
@media (max-width: 900px) {

  /* Position toggle in header top-left */
  .pc-radial-menu {
    display: block !important;
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 10000;
  }

  /* Hide desktop nav */
  .cl-nav {
    display: none !important;
  }

  /* Circular sliding panel (LEFT version) */
  .pc-radial-menu .pc-menu-panel {
    position: fixed;
    top: -200px;
    left: -200px;
    width: 400px;
    height: 450px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    border-bottom-right-radius: 200px;
    margin-left: -220px;
    transition: margin-left 0.5s ease;
  }
  
  /* Logo watermark on the SIDE PANEL (not the button) */
.pc-radial-menu .pc-menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("GFx/img/logo.png") 100% 70% / 47% no-repeat;
  opacity: 0.20;
  pointer-events: none;
  z-index: 0;
}

  /* Menu links inside panel */
  /* Shared menu list styling (handles both wp_nav_menu and wp_page_menu) */
  .pc-radial-menu .pc-menu-panel ul {
    position: absolute;
    top: 250px !important;
    left: 250px !important;
    margin-left: -220px;
    transition: margin-left 1s ease;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #FFF !important;
    /* Ensure parent has white color */
    z-index: 10002;
    /* Above everything */
  }

  /* List items */
  .pc-radial-menu .pc-menu-panel ul li {
    list-style: none;
    margin-bottom: 1rem;
    display: block;
  }

  /* Links */
  .pc-radial-menu .pc-menu-panel ul a {
    color: #FFF !important;
    /* Force white text */
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: block;
  }

  .pc-radial-menu .pc-menu-panel ul a:hover {
    opacity: 0.7;
  }
  
  
  

  /* make the curved panel readable (NOT the UL) */
  .pc-radial-menu .pc-menu-panel{
    background: rgba(40, 30, 22, 0.60) !important;  /* warm dark glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  /* MENU LINKS – orange like the X icon */
  .pc-radial-menu .pc-menu-panel ul a {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.4px;

    /* STRONG orange fill */
    color: var(--brand-orange); /* same as X icon */

    /* THIN real border */
    -webkit-text-stroke: 0.6px #F3DEC9;
    text-stroke: 0.6px #F3DEC9;

    text-decoration: none;
  }

  .pc-radial-menu .pc-menu-panel ul a:hover{
    opacity: 0.85;
  }
}












/* NAVIGATION (WP outputs <ul class="cl-nav-list">) */
.cl-nav-list {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.cl-nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--rose-dark);
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.cl-nav-list a:hover {
  background: transparent;
  color: var(--brand-orange);
  transform: translateY(-1px);
}


/* ACTIVE MENU ITEM */
.cl-nav .current-menu-item>a,
.cl-nav .current_page_item>a,
.cl-nav .current-menu-ancestor>a,
.cl-nav .current_page_ancestor>a {
  background: transparent;
  color: var(--brand-orange);
}

/* HEADER CTA (icon/button) */
.cl-header-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 var(--space-md);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--brand-orange);
  color: #ffffff;
  font-weight: var(--weight-semibold);
  transition: background var(--transition-base), color var(--transition-base);
}

.cl-header-cta a:hover {
  background: var(--brand-deep-orange);
  color: #ffffff;
}

/* MAIN CONTENT WRAPPER */
main.cl-main {
  flex: 1;
  padding: 0;
}

/* HERO SECTION */
.cl-hero {
  background: var(--rose-light);
  padding: var(--space-4xl) 0 var(--space-5xl);
  border-bottom: 1px solid var(--neutral-silver-light);
  overflow-x: hidden;
}

.cl-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.cl-hero-text h1 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin: 0 0 var(--space-sm);
  max-width: 18ch;
  /* Prevent long lines */
}

.cl-hero-text p.subtitle {
  max-width: 380px;
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--muted);
  margin: 0 0 var(--space-lg);
}

.cl-hero-buttons {
  display: flex;
  gap: 14px;
}

/* ================================
   HERO 3D CAROUSEL (SMALLER VERSION)
   ================================ */
.slider {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.slider__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.slider__image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  max-height: 100%;
  border-radius: 20px;
  object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

/* ACTIVE */
.slider__image.image--1 {
  transform: translate(-50%, -50%) translateZ(180px);
  opacity: 1;
  z-index: 3;
}

/* RIGHT */
.slider__image.image--2 {
  transform: translate(-50%, -50%) translateX(140px) rotateY(-35deg);
  opacity: 0.9;
  z-index: 2;
}

.slider__image.image--3 {
  transform: translate(-50%, -50%) translateX(200px) rotateY(-50deg);
  opacity: 0.4;
  z-index: 1;
}

/* LEFT */
.slider__image.image--4 {
  transform: translate(-50%, -50%) translateX(-140px) rotateY(35deg);
  opacity: 0.9;
  z-index: 2;
}

.slider__image.image--5 {
  transform: translate(-50%, -50%) translateX(-200px) rotateY(50deg);
  opacity: 0.4;
  z-index: 1;
}



/* BUTTONS */
.cl-btn-primary,
.cl-btn-outline {
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
}

.cl-btn-primary {
  background: var(--accent-button);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.cl-btn-primary:hover {
  background: var(--accent-button-dark);
}

.cl-btn-outline {
  background: transparent;
  color: var(--accent-button-dark);
  border: 1px solid var(--accent-button-dark);
}

.cl-btn-outline:hover {
  background: var(--accent-button-dark);
  color: #fff;
}

.cl-btn-primary:active,
.cl-btn-outline:active {
  transform: scale(0.98);
}

/* (legacy placeholder) */
.cl-hero-image-placeholder {
  width: 100%;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4d3b8, #fbeee0);
  box-shadow: 0 18px 40px rgba(166, 121, 90, 0.45);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* MIDDLE PANEL */
.cl-panel {
  background: var(--support-cream);
  padding: var(--space-3xl) 0 var(--space-5xl);
}

.cl-panel-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: var(--space-2xl);
  align-items: flex-start;
}

/* LEFT SECTION */
.cl-panel-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-right: 32px;
  border-right: 1px solid var(--neutral-silver-light);
}

.cl-panel-card {
  background: var(--accent-pill);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.cl-panel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cl-panel-card h3 {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep-orange);
}

.cl-panel-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-main);
}

/* INFO ICONS */
.cl-info-icons {
  padding: var(--space-5xl) 0;
  background: var(--rose-light);
}

.cl-info-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  text-align: center;
}

.cl-info-item {
  padding-top: 4px;
}

.cl-info-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  background: var(--support-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.cl-info-icon i {
  font-size: 26px;
  color: var(--brand-deep-orange);
}

.cl-info-item h3 {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neutral-rich-black);
}

.cl-info-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}





/* FOOTER */
.cl-footer {
  background: var(--support-cream);
  color: var(--text-main);
  padding: var(--space-xl) 0 var(--space-2xl);
  border-top: 0;
  /* remove the harsh border */
  position: relative;
  /* needed for ::before divider */
}

/* Elegant top divider (soft gradient line) */
.cl-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, 92%);
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(60, 47, 39, 0.28),
      transparent);
}

/* Optional: subtle depth so footer feels “separated” but still cream */
.cl-footer {
  box-shadow: inset 0 12px 24px rgba(60, 47, 39, 0.04);
}

.cl-footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2xl);
  font-size: var(--text-sm);
}

.cl-footer h4 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-dark);
  /* your brand blue */
}

/* Text + links now readable on cream */
.cl-footer p,
.cl-footer a {
  font-size: 13px;
  color: var(--text-main);
  opacity: 0.78;
}

.cl-footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

.cl-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cl-footer-nav li+li {
  margin-top: 5px;
}

.cl-social-list {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cl-social-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(60, 47, 39, 0.10);
  /* soft on cream */
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform var(--transition-base), background var(--transition-base), opacity var(--transition-base);
}

.cl-social-circle:hover {
  background: var(--brand-yellow);
  transform: translateY(-2px);
}

.cl-footer-bottom {
  margin-top: 22px;
  font-size: 11px;
  color: rgba(60, 47, 39, 0.60);
  text-align: center;
}

/* =========================
   RESPONSIVE HEADER + MAIN
   ========================= */




/* Fix sticky header with admin bar */
.admin-bar .cl-header {
  top: 32px;
}



/* =========================
   CONTACT PAGE
   ========================= */
.cl-contact {
  background: var(--rose-light);
  padding: var(--space-3xl) 0 var(--space-4xl);
}

.cl-contact-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT COLUMN */
.cl-contact-info {
  flex: 1 1 260px;
  max-width: 420px;
}

.cl-contact-info h1 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.cl-contact-info h2,
.cl-contact-info h3 {
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 26px;
  margin-bottom: 8px;
}

.cl-contact-intro,
.cl-contact-info p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.cl-contact-info a {
  color: var(--accent-button-dark);
  text-decoration: none;
}

.cl-contact-info a:hover {
  text-decoration: underline;
}

.cl-contact-list {
  margin: 0 0 10px 18px;
  padding: 0;
  font-size: 14px;
  color: var(--text-main);
}

.cl-contact-list li+li {
  margin-top: 4px;
}

.cl-contact-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

/* RIGHT COLUMN – FORM CARD */
.cl-contact-form {
  flex: 1 1 320px;
  max-width: 540px;
  background: var(--card-bg);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.cl-contact-form h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cl-contact-form-inner {
  width: 100%;
}

.cl-contact-form-inner .cl-field {
  margin-bottom: 14px;
}

.cl-contact-form-inner label {
  display: block;
  font-size: var(--text-sm);
  margin-bottom: 4px;
}

.cl-contact-form-inner input[type="text"],
.cl-contact-form-inner input[type="email"],
.cl-contact-form-inner textarea {
  width: 100%;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-silver);
  font-size: var(--text-base);
  font-family: inherit;
  background: #fff;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.cl-contact-form-inner input:focus,
.cl-contact-form-inner textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.2);
}

.cl-contact-form-inner textarea {
  resize: vertical;
}

.cl-field-checkbox label {
  font-size: 13px;
  line-height: 1.4;
}

.cl-field-checkbox input {
  margin-right: 6px;
}

/* ALERTS */
.cl-contact-alert {
  margin-bottom: 16px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
}

.cl-contact-success {
  background: #e0f6e6;
  border: 1px solid #5ca869;
  color: #22552f;
}

.cl-contact-error {
  background: #ffe4e4;
  border: 1px solid #d66;
  color: #7a2626;
}

.cl-contact-error ul {
  margin: 0;
  padding-left: 18px;
}

.cl-contact-form-inner .cl-btn-primary {
  width: 100%;
  justify-content: center;
}



/* =========================
   ABOUT PAGE
   ========================= */
.cl-about {
  background: var(--support-pale-cream);
}

.cl-about .cl-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.cl-about-section {
  padding: var(--space-3xl) 0;
}

.cl-about-story,
.cl-about-wagons {
  background: var(--support-cream);
}

.cl-about-events,
.cl-about-crepes,
.cl-about-closing {
  background: var(--support-beige);
}


.cl-section-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin: 0 0 var(--space-md);
  color: var(--rose-dark);
}

.cl-section-intro,
.cl-section-note {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.cl-about-section-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

/* ABOUT PAGE – vertically center text within the section */
.cl-about-section-inner> :first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cl-about-image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ABOUT HERO */
.cl-about-hero {
  background: var(--rose-light);
  padding: 72px 0 60px;
  border-bottom: 1px solid var(--neutral-silver-light);
}

.cl-about-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cl-about-hero-text .cl-kicker {
  font-size: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-deep-orange);
  margin: 0 0 10px;
}

.cl-about-hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin: 0 0 var(--space-sm);
  color: var(--rose-dark);
}

.cl-about-hero-subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 420px;
  margin: 0 0 22px;
}

.cl-about-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cl-about-hero-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cl-about-hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ABOUT sections text */
.cl-about-story-text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--muted);
}

.cl-about-story-text p {
  margin: 0 0 14px;
}

.cl-about-crepes .cl-container {
  text-align: center;
}

.cl-crepes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 28px;
  justify-items: center;
}

.cl-crepes-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  text-align: left;
  width: 100%;
  max-width: 340px;
  /* optional: keeps cards elegant on wide screens */
}

.cl-crepes-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin: 0 0 var(--space-xs);
  color: var(--brand-deep-orange);
}

.cl-crepes-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.cl-about-wagons-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 16px;
}

.cl-about-wagons-list {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-main);
}

.cl-about-wagons-list li+li {
  margin-top: 6px;
}





/* ==========================================================
   ABOUT PAGE – OVERLAY IMAGE SLIDER (WAGONS / STORY)
   Scoped to .pc-overlay-slider to avoid global conflicts
========================================================== */

.pc-overlay-slider {
  width: 100%;
  max-width: 680px;
  margin-top: var(--space-lg);
  aspect-ratio: 681 / 384;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: var(--shadow-xl);
}

.pc-overlay-slider__track {
  position: absolute;
  inset: 0;
  overflow: hidden;

}

/* Slides */
.pc-overlay-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
  transition: transform 1.4s ease;
}

.pc-overlay-slide.pc-up1 {
  z-index: 20;
}

.pc-overlay-slide.pc-tran {
  transform: scale(1.3);
}

/* SVG overlay */
.pc-overlay-slider__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 40;
  pointer-events: none;
}

/* Circles */
.pc-circle {
  fill: none;
  stroke: var(--brand-orange);
  transition: stroke-width 0.3s linear;
}

.pc-steap {
  stroke-width: 0;
}

.pc-streak {
  stroke-width: 82px;
}

/* Transition delays (LEFT) */
.pc-circle1 {
  transition-delay: 0.05s;
}

.pc-circle2 {
  transition-delay: 0.10s;
}

.pc-circle3 {
  transition-delay: 0.15s;
}

.pc-circle4 {
  transition-delay: 0.20s;
}

.pc-circle5 {
  transition-delay: 0.25s;
}

.pc-circle6 {
  transition-delay: 0.30s;
}

.pc-circle7 {
  transition-delay: 0.35s;
}

.pc-circle8 {
  transition-delay: 0.40s;
}

.pc-circle9 {
  transition-delay: 0.45s;
}

/* Transition delays (RIGHT) */
.pc-circle10 {
  transition-delay: 0.05s;
}

.pc-circle11 {
  transition-delay: 0.10s;
}

.pc-circle12 {
  transition-delay: 0.15s;
}

.pc-circle13 {
  transition-delay: 0.20s;
}

.pc-circle14 {
  transition-delay: 0.25s;
}

.pc-circle15 {
  transition-delay: 0.30s;
}

.pc-circle16 {
  transition-delay: 0.35s;
}

.pc-circle17 {
  transition-delay: 0.40s;
}

.pc-circle18 {
  transition-delay: 0.45s;
}

/* Navigation buttons */
.pc-overlay-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #849494;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-overlay-slider__btn--left {
  left: 10px;
}

.pc-overlay-slider__btn--right {
  right: 10px;
}

.pc-overlay-slider__btn svg {
  width: 16px;
  height: 16px;
}

.pc-overlay-slider__btn:hover {
  background: rgba(255, 255, 255, 0.85);
}

.pc-overlay-slider__btn:focus {
  outline: none;
}




/* ============================================================
   ABOUT — Events section: always centered text
   ============================================================ */

/* 1) Fix the layout: collapse grid to single column + center it */
.cl-about-events .cl-about-section-inner {
  grid-template-columns: 1fr;
  justify-items: center;
}

/* 2) Fix the content: center text and control readable width */
.cl-about-events .cl-about-section-inner>* {
  max-width: 720px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}





.cl-about-events-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
}

.cl-about-events-text p {
  margin: 0 0 14px;
}

.cl-about-events-list {
  margin: 0 0 14px 18px;
  padding: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-main);
}

.cl-about-events-list li+li {
  margin-top: 4px;
}

.cl-about-closing {
  text-align: center;
}

.cl-about-closing-text p {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--muted);
}

.cl-about-closing-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}





/* REUSABLE framed photo style (use on any wrapper that contains one <img>) */
.cl-framed-photo {
  position: relative;
  width: min(420px, 100%);
}

.cl-framed-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: var(--radius-xl);
  transform: rotate(-5deg) translate(18px, 16px);
  transform-origin: 65% 45%;
  box-shadow: var(--shadow-xl);
  z-index: 1;
}

.cl-framed-photo>img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* Story image – frame comes out from TEXT side (left) */
.cl-framed-photo-story::before {
  transform: rotate(5deg) translate(-16px, 16px);
  transform-origin: 35% 45%;
}








/* ==========================================================
   ABOUT PAGE – RESPONSIVE (1400 / 1200 / 900 / 600 / 448)
   missing behavior. No global overrides.
========================================================== */





/* ==========================================================
   ABOUT PAGE – MOBILE/TABLET: center framed images + keep style
========================================================== */










/* ================================
   CATEGORY CARDS (Front page / Categories section)
   Desktop: 4 in one row
   Smaller: 3 → 2 → 1 (wrap)
   No scroll
   ================================ */
.cl-category-section {
  padding: 38px 0 56px;
  background: var(--support-cream);
}

.cl-category-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  text-align: center;
}

.cl-category-head .cl-section-title {
  margin: 0;
}

.cl-panel-title {
  text-align: center;
  padding-bottom: 50px;
}

.cl-category-head .cl-section-note {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
}

.cl-category-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 18px;
  justify-content: center;
  overflow: visible !important;
}

.cl-category-grid .cl-category-card {
  flex: 0 0 calc((100% - (18px * 3)) / 4);
  max-width: calc((100% - (18px * 3)) / 4);
  width: auto !important;
  min-width: 0;
}







.cl-category-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(8px);
  transition: transform var(--transition-base);
  min-width: 0;
}

.cl-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cl-category-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f4d3b8, #fbeee0);
}

.cl-category-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cl-category-media .cl-category-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(60, 47, 39, 0.55);
}

.cl-category-footer {
  padding: var(--space-md) var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.25);
  text-align: center;
}

.cl-category-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-main);
}

.cl-category-sub {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* ================================
   PETRA STORY SECTION (Front Page)
   (CLEANED: kept only ONE version)
   ================================ */
.cl-story {
  background: var(--support-cream);
  padding: 56px 0;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  .cl-story {
    overflow-x: clip;
  }
}

.cl-story-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: center;
}

.cl-story-visual {
  position: relative;
  width: min(420px, 100%);
  margin: 0;
}

.cl-story-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cl-story-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 28px;
  transform: rotate(-5deg) translate(18px, 16px);
  transform-origin: 65% 45%;
  box-shadow: 0 28px 60px rgba(60, 47, 39, 0.22);
}

.cl-story-visual>img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  max-width: 420px;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(60, 47, 39, 0.18);
}

.cl-story-title {
  margin: 0 0 6px;
  color: var(--text-main);
}

.cl-story-tagline {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-deep-orange);
}

.cl-story-content p {
  margin: 0 0 12px;
  color: var(--text-main);
  line-height: 1.65;
  max-width: 62ch;
}

.cl-story-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Optional button helpers used in story */
.cl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cl-btn-ghost {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--text-main);
}

.cl-btn-ghost:hover {
  transform: translateY(-1px);
}





/* ==========================================================
   MENU PAGE – SPEISEKARTE (CODEPEN-STYLE LIST)
   Petra palette only (no new colors)
========================================================== */

.cl-menu-page {
  background: var(--support-pale-cream);
}

/* ---------- HERO ---------- */
.cl-menu-hero {
  padding: 64px 0 36px;
  background: transparent;
}

.cl-menu-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.cl-menu-hero-text .cl-kicker {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-deep-orange);
}

.cl-menu-hero-text .cl-title {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--rose-dark);
}

.cl-menu-hero-text .cl-lead {
  margin: 0;
  max-width: 56ch;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--muted);
}

.cl-menu-hero-badge {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cl-menu-hero-badge span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ==========================================================
   MENU PAGE – CATEGORY TABS (SEGMENTED PILL NAV)
   Replaces the old “active grows” scaling tabs
========================================================== */

.cl-menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 36px 0 26px;


  top: 86px;
  z-index: 50;

  overflow: visible;
  /* ✅ no horizontal scroll */
  white-space: normal;


}

/* base tab */
.cl-menu-tab {
  appearance: none;
  border: 1px solid rgba(217, 83, 30, 0.18);
  background: rgba(243, 222, 201, 0.45);
  /* ties into support-cream */
  color: var(--brand-deep-orange);

  border-radius: 999px;
  padding: 12px 18px;

  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  line-height: 1;
  white-space: nowrap;
  cursor: pointer;

  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

/* Optional: subtle “separator” feel without hard dividers */
.cl-menu-tab:not(.is-active) {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* active tab: stable, high-contrast, premium */
.cl-menu-tab.is-active {
  background: var(--brand-deep-orange);
  color: #fff;
  border-color: rgba(217, 83, 30, 0.35);

  box-shadow:
    0 10px 22px rgba(60, 47, 39, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

/* keep hover minimal + consistent (don’t “change design”) */
.cl-menu-tab:hover {
  border-color: rgba(217, 83, 30, 0.30);
}

/* keyboard focus (your JS supports proper tabbing) */
.cl-menu-tab:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(217, 83, 30, 0.22),
    0 10px 22px rgba(60, 47, 39, 0.12);
}


/* ---------- SECTION CARD (container for each category list) ---------- */
.cl-menu-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}


.cl-menu-card+.cl-menu-card {
  margin-top: 16px;
}

.cl-menu-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.cl-menu-card-header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  /* Slightly larger than small default */
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--brand-deep-orange);
}

.cl-menu-card-header p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- CODEPEN-STYLE ITEM LIST (FIXED) ---------- */

/* 2 items per row (true CodePen behavior) */
.cl-menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* IMPORTANT: removes the 560px forcing */
  gap: var(--space-xl) var(--space-2xl);
}

/* One item (image left, content right) */
.cl-menu-item-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  /* BIG image column like CodePen */
  gap: 22px;
  align-items: center;
  padding: 18px 0;
}

/* Big clipped image (CodePen vibe) */
.cl-menu-thumb {
  width: 180px;
  height: 140px;
  overflow: hidden;

  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);

  /* CodePen-like shape */
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  transition: clip-path 0.25s ease, -webkit-clip-path 0.25s ease;
}

.cl-menu-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Hover: image becomes more “open” (like CodePen hover effect) */
.cl-menu-item-row:hover .cl-menu-thumb {
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
}

/* Text block */
.cl-menu-item-body {
  min-width: 0;
}

/* Name + Price same line, NOT far away */
.cl-menu-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;

  padding-bottom: 10px;
  margin: 0 0 10px;

  position: relative;
  /* REQUIRED */
}

.cl-menu-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  /* full width by default */
  bottom: 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

/* Remove the old “dots spacer” line (we use border-bottom now) */
.cl-menu-dots {
  display: none;
}

.cl-menu-name {
  margin: 0;
  font-weight: 700;

  /* responsive size instead of cutting */
  font-size: clamp(16px, 2.2vw, 22px);

  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: var(--text-main);

  /* IMPORTANT: allow wrap instead of ellipsis */
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  hyphens: auto;
}


.cl-menu-price {
  margin: 0;
  font-weight: 800;
  font-size: var(--text-xl);
  /* stronger like CodePen */
  font-style: italic;
  color: var(--brand-deep-orange);
  white-space: nowrap;
}

/* Description UNDER the dashed line */
.cl-menu-desc {
  margin: 0;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--muted);
  max-width: 62ch;
}

.cl-menu-section--allergens {
  margin-top: 24px;
}


/* MENU PAGE – DRINKS SECTION */
.cl-menu-drinks {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 40px;

}

.cl-menu-items--drinks {
  display: grid;
  gap: 28px;
}



/* ==========================================================
   MENU PAGE – CTA (BOTTOM)
========================================================== */

.cl-menu-cta {
  margin: 22px;
  padding: 18px;

  background: var(support-cream);


  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}


/* MENU PAGE — HINWEIS moving banner */
.cl-hinweis-banner {
  overflow: hidden;
  white-space: nowrap;
  margin-top: 10px;
}

.cl-hinweis-track {
  display: inline-flex;
  gap: 48px;
  will-change: transform;
  animation: clHinweisMarquee 18s linear infinite;
}

.cl-hinweis-text {
  display: inline-block;
}

@keyframes clHinweisMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}



.cl-menu-section-inner {
  margin-bottom: 40px;
}









/* ==========================================
   LAST SECTIONS: HOURS/TEASER + CTA (Front)
   FIXED + CLEAN (matches your HTML exactly)
   ========================================== */

/* HOURS + MENU TEASER */
.cl-hours-teaser {
  position: relative;
  width: 100%;
  background: var(--support-pale-cream);
  /* right side */
  overflow: hidden;
}

/* left half background = support-cream @ 0.95 */
.cl-hours-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 50%;
  background: rgba(243, 222, 201, 0.95);
  /* fallback */
  z-index: 0;
}

@supports (background: color-mix(in srgb, #000 10%, #fff)) {
  .cl-hours-teaser::before {
    background: color-mix(in srgb, var(--support-cream) 95%, transparent);
  }
}

.cl-hours-teaser-inner {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* no “card” styling inside */
.cl-hours-left,
.cl-hours-right {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* FIX: your HTML uses H2 + these classes */
.cl-hours-title,
.cl-hours-right-title {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-dark);
}

/* FIX: correct grid for TWO spans (day + time) */
.cl-hours-list {
  display: grid;
  gap: 14px;
}

.cl-hours-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}

.cl-hours-row:last-child {
  border-bottom: none;
}

.cl-hours-day {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--muted);
}

.cl-hours-time {
  justify-self: end;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-main);
}

.cl-hours-note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* Right side text class from your HTML */
.cl-hours-right-text {
  margin: 0 0 18px;
  max-width: 56ch;
  line-height: 1.7;
  color: var(--text-main);
}

/* Link like reference */
.cl-hours-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--brand-deep-orange);
  text-decoration: none;
}

.cl-hours-link:hover {
  text-decoration: underline;
}

/* responsive stack */



/* CTA STRIP (your HTML uses .cl-cta-book) */
.cl-cta-book {
  background: rgba(243, 222, 201, 0.95);
  /* support-cream @ 0.95 */
  padding: 72px 0;
}

@supports (background: color-mix(in srgb, #000 10%, #fff)) {
  .cl-cta-book {
    background: color-mix(in srgb, var(--support-cream) 95%, transparent);
  }
}

.cl-cta-book-inner {
  text-align: center;
}

/* === CTA TITLE – AURORA ORANGE ANIMATION === */
.cl-cta-title {
  background: linear-gradient(120deg,
      var(--brand-orange),
      var(--brand-yellow),
      var(--brand-deep-orange),
      var(--brand-orange));
  background-size: 300% 300%;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  animation: aurora-orange 6s ease-in-out infinite;
}

/* Animation */
@keyframes aurora-orange {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.cl-cta-text {
  margin: 0 auto 24px;
  max-width: 70ch;
  line-height: 1.7;
  color: var(--muted);
  font-size: 15px;
}

.cl-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cl-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent-button);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(190, 140, 100, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cl-cta-btn:hover {
  background: var(--accent-button-dark);
  transform: translateY(-1px);
}

.cl-cta-phone {
  font-size: 13px;
  color: var(--text-main);
}

.cl-cta-phone-label {
  display: block;
  color: var(--muted);
  margin-bottom: 2px;
}

.cl-cta-phone-number {
  font-weight: 800;
  color: var(--brand-deep-orange);
  text-decoration: none;
}

.cl-cta-phone-number:hover {
  text-decoration: underline;

}

/* Large desktops */


/* Tablets */












/* =========================================
   PHASE 3: ENTRANCE ANIMATIONS (OPTIONAL)
   Usage: element { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
   ========================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cl-animate-fade-up {
  opacity: 0;
  animation: fadeInUp 0.8s var(--transition-base) forwards;
}

.cl-animate-fade-up--delay-100 {
  animation-delay: 100ms;
}

.cl-animate-fade-up--delay-200 {
  animation-delay: 200ms;
}

.cl-animate-fade-up--delay-300 {
  animation-delay: 300ms;
}

/* =========================================
   PHASE 3: ACCESSIBILITY (REDUCED MOTION)
   ========================================= */
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   

