/* ================================================================
   BEGEGNUNGSZONEN - s Café | s CoWork | s Spektrum
   Sparkasse Oberösterreich
   ================================================================ */
/* ================================
   1. Font Faces & Imports
   ================================ */

@font-face {
  font-family: 'Great Vibes';
  src: url('../fonts/GreatVibes-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ================================
   2. CSS Custom Properties
   ================================ */ :root {
  /* Colors */
  --blue: #26547C;
  --blue-light: #3a7ab5;
  --blue-dark: #1a3d5c;
  --blue-pale: #e8f0f7;
  /*--green: #5a7a45;*/
  --green: rgba(114, 111, 87, 1);
  --green-dark: #485d39;
  --green-light: #6d9455;
  --green-pale: #eef3ea;
  --dark: #2d2d2d;
  --dark-light: #444444;
  --charcoal: #1a1a1a;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --bg-warm: #f7f5f0;
  --bg-light: #fafaf8;
  --white: #ffffff;
  --border: #e0ddd5;
  --border-light: #eeebe4;
  --gold: #c9a84c;
  --spektrum-accent: #8b5e3c;
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* --font-script: 'Corinthia', cursive; */
  --font-script: 'Great Vibes', cursive;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;
  --text-9xl: 8rem;
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 900px;
  --nav-height: 80px;
  --border-radius: 4px;
  --border-radius-lg: 8px;
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration: 0.3s;
  --duration-slow: 0.6s;
  --duration-slower: 1s;
  /* Table specific colors */
  --table-blue-dark: #1f5c7a;
  --table-blue-light: #5f8fa8;
  --table-gray-light: #f2f2f2;
  --table-gap: 2rem; /* Abstand Grau → Blau */
}
/* Margin Top */
.mt-xs {
  margin-top: var(--space-xs);
}
.mt-sm {
  margin-top: var(--space-sm);
}
.mt-md {
  margin-top: var(--space-md);
}
.mt-lg {
  margin-top: var(--space-lg);
}
.mt-xl {
  margin-top: var(--space-xl);
}
.mt-2xl {
  margin-top: var(--space-2xl);
}
.mt-3xl {
  margin-top: var(--space-3xl);
}
.mt-4xl {
  margin-top: var(--space-4xl);
}
/* ================================
   3. Reset & Base
   ================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
::selection {
  background-color: var(--blue);
  color: var(--white);
}
/* ================================
   4. Typography
   ================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark);
}
h1 {
  font-size: var(--text-4xl);
}
h2 {
  font-size: var(--text-3xl);
}
h3 {
  font-size: var(--text-2xl);
}
h4 {
  font-size: var(--text-xl);
}
p {
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}
.script-heading {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1;
}
.script-heading--hero {
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  color: var(--white);
  white-space: nowrap;
}
.script-heading--section {
  font-size: clamp(var(--text-5xl), 6vw, var(--text-8xl));
}
.script-heading--green {
  color: var(--green);
}
.script-heading--blue {
  color: var(--blue);
}
.script-heading--dark {
  color: var(--dark);
}
.script-heading--white {
  color: var(--white);
}
/* ================================
   5. Layout Utilities
   ================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.container--narrow {
  max-width: var(--max-width-narrow);
}
.section {
  padding: var(--space-4xl) 0;
}
.section--dark {
  background-color: var(--dark);
  color: var(--white);
}
.section--warm {
  background-color: var(--bg-warm);
}
.section--blue {
  background-color: var(--blue);
  color: var(--white);
}
.text-center {
  text-align: center;
}
.text-balance {
  text-wrap: balance;
}
/* ================================
   6. Navigation
   ================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.nav--scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1001;
  width: 4rem;
}
.nav__logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.4rem;
  transition: all var(--duration) var(--ease);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}
.nav__link {
  font-weight: 400;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  position: relative;
  padding: var(--space-xs) 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: currentColor;
  transition: width var(--duration) var(--ease);
}
.nav__link:hover::after, .nav__link--active::after {
  width: 100%;
}
.nav__link--active {
  font-weight: 500;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1001;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
  transform-origin: center;
}
/* Animation zum X */
.nav__hamburger--active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger--active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger--active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  height: 100dvh;
}
.nav__mobile--open {
  display: flex;
}
.nav__mobile .nav__link {
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--dark);
}
.nav__mobile .nav__link:hover, .nav__mobile .nav__link--active {
  color: var(--blue);
}
/* Hamburger always white on transparent nav (hero pages) */
.nav--transparent .nav__hamburger span {
  background-color: var(--white);
  background-color: var(--dark);
}
/* When scrolled, hamburger becomes dark */
.nav--transparent.nav--scrolled .nav__hamburger span {
  background-color: var(--dark);
}
/* When mobile menu is open, hamburger X is always dark (white bg behind) */
.nav__hamburger--active span {
  background-color: var(--dark) !important;
}
/* Nav themes */
.nav--transparent {
  color: var(--white);
}
.nav--transparent.nav--scrolled {
  color: var(--dark);
}
.nav--light {
  color: var(--dark);
  background-color: var(--white);
  box-shadow: 0 1px 0 var(--border);
}
/* ================================
   7. Homepage - Three Pillars
   ================================ */
.homepage {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  overflow: hidden;
}
.pillar {
  flex: 1;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: flex var(--duration-slow) var(--ease);
}
.pillar:hover {
  flex: 1.3;
}
.pillar__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(30%) brightness(0.9) contrast(1.2);
  transition: filter var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}
.pillar:hover .pillar__bg {
  filter: grayscale(0%) brightness(0.9) contrast(1.5);
  transform: scale(1.05);
}
.pillar__bg--cafe {
  background-image: url('../images/scafe/sCafe_Startseite.jpg');
}
.pillar__bg--cowork {
  background-image: url('../images/sCoWork/260622_SPK_Promenade_0374_RGB_copyright_Robert_Maybach.jpg');
}
.pillar__bg--spektrum {
  background-image: url('../images/spektrum/impression-1.jpg');
}
.pillar__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}
.pillar__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: var(--space-2xl);
  text-align: center;
  color: var(--white);
}
.pillar__logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: var(--space-xl);
  opacity: 1;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
  background: rgba(255, 255, 255, 0.08);
}
.pillar:hover .pillar__logo {
  opacity: 1;
  transform: translateY(0);
}
.pillar__title {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  transition: transform var(--duration-slow) var(--ease);
}
.pillar:hover .pillar__title {
  transform: translateY(-5px);
}
.pillar__subtitle {
  font-weight: 200;
  font-size: var(--text-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}
.pillar:hover .pillar__subtitle {
  opacity: 1;
  transform: translateY(0);
}
.pillar__divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: var(--space-lg) 0;
  transition: width var(--duration-slow) var(--ease);
}
.pillar:hover .pillar__divider {
  width: 80px;
}
.pillar__border {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 3;
}
.pillar:last-child .pillar__border {
  display: none;
}
/* Homepage bottom hint */
.homepage__hint {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  pointer-events: none;
}
.homepage__hint-arrow {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.4);
  animation: hint-pulse 2s ease-in-out infinite;
}
@keyframes hint-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.3);
  }
}
/* ================================
   8. Hero Sections
   ================================ */
.hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-xl) var(--space-2xl);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  /*max-width: 800px;*/
  max-width: 1200px; /* Anpassung cowork */
}
.hero__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.hero__line-bar {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.hero__intro {
  font-weight: 200;
  font-size: var(--text-lg);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}
/* Café hero */
.hero--cafe {
  min-height: 42vh;
}
.hero--cafe .hero__bg {
  /*background-image: url('../images/cafe-interior.jpg');
  background-size: cover;
  background-position: center;
	*/
  background-color: var(--green);
}
/*.hero--cafe .hero__overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.5) 100%);
}
*/
/* CoWork hero */
.hero--cowork {
  min-height: 42vh;
}
.hero--cowork .hero__bg {
  /* background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #2d6a9f 100%); */
  /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #1a1a2e 100%); */
  background: #0f3460;
}
.hero--cowork .hero__overlay {
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}
/* Spektrum hero */
.hero--spektrum {
  min-height: 42vh;
}
.hero--spektrum .hero__bg {
  /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #1a1a2e 100%); */
  background: rgba(48, 56, 58, 1);
}
.hero--spektrum .hero__overlay {
  background: radial-gradient(ellipse at 60% 40%, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
}
/* About hero */
.hero--about {
  min-height: 42vh;
}
.hero--about .hero__bg {
  /* background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #2d6a9f 100%); */
  background: rgba(48, 56, 58, 1);
}
/* ================================
   9. Content Sections
   ================================ */
.intro-text {
  /* max-width: 800px; */
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  font-size: var(--text-lg);
  line-height: 1.9;
  color: var(--text);
}
/* Image Gallery */
.gallery {
  display: grid;
  gap: var(--space-md);
  padding: 0 var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
}
.gallery--three {
  grid-template-columns: repeat(3, 1fr);
}
.gallery--four {
  grid-template-columns: repeat(4, 1fr);
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 4/3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
  background: var(--bg-warm);
}
/* Kulinarik Section (Café) */
.kulinarik {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  position: relative;
}
.kulinarik__content {
  background-color: var(--charcoal);
  color: var(--white);
  padding: var(--space-4xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kulinarik__heading {
  font-weight: 400;
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}
.kulinarik__text {
  font-weight: 200;
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  color: rgba(255, 255, 255, 0.85);
}
.kulinarik__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: fit-content;
}
.kulinarik__image {
  position: relative;
  overflow: hidden;
}
.kulinarik__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kulinarik__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8B7355 0%, #6B5B4B 50%, #5A4A3A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: var(--text-sm);
}
.kulinarik__script {
  position: absolute;
  top: var(--space-2xl);
  right: var(--space-2xl);
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(4rem, 7vw, 7rem);
  color: var(--green);
  opacity: 0.85;
  line-height: 1;
  pointer-events: none;
}
/* Wertschöpfung Section (Café) */
.wertschoepfung {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-warm);
}
.wertschoepfung__heading {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.wertschoepfung__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.wertschoepfung__card {
  background: var(--white);
  border-left: 3px solid var(--green);
  padding: var(--space-2xl) var(--space-2xl);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.wertschoepfung__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.wertschoepfung__card h3 {
  font-weight: 400;
  margin-bottom: var(--space-lg);
  font-size: var(--text-xl);
}
.wertschoepfung__card p {
  font-weight: 200;
  line-height: 1.8;
  color: var(--text-light);
}
/* Arbeiten Section (CoWork) */
.arbeiten {
  padding: var(--space-4xl) 0;
}
.arbeiten__content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  text-align: center;
}
.arbeiten__heading {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  font-weight: 400;
}
.arbeiten__text {
  font-weight: 200;
  line-height: 1.9;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto;
}
/* Workplaces & Conference Rooms (CoWork) */
.spaces {
  padding: var(--space-4xl) 0;
}
.spaces__heading {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.spaces__image {
  max-width: var(--max-width);
  margin: 0 auto var(--space-2xl);
  padding: 0 var(--space-xl);
  overflow: hidden;
  border-radius: var(--border-radius);
}
.spaces__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
}
.spaces__features {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3xl);
}
.spaces__list {
  flex: 1;
}
.spaces__list li {
  padding: var(--space-sm) 0;
  font-weight: 200;
  position: relative;
  padding-left: var(--space-xl);
  color: var(--text-light);
}
.spaces__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blue);
}
.spaces__cta {
  flex-shrink: 0;
}
/* Conference Rooms Grid */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.rooms-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.rooms-grid__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: var(--space-md);
}
.rooms-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}
.rooms-grid__item:hover .rooms-grid__image img {
  transform: scale(1.03);
}
.rooms-grid__info {
  font-weight: 400;
  font-size: var(--text-base);
}
.rooms-grid__info span {
  display: block;
  font-weight: 200;
  font-size: var(--text-sm);
  color: var(--text-light);
  margin-top: var(--space-xs);
}
/* ================================
   10. Pricing Table (CoWork)
   ================================ */
.pricing {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-warm);
}
.pricing__heading {
  text-align: center;
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3xl);
  font-weight: 400;
}
.pricing__table {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  width: 100%;
}
.pricing__table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.pricing__table thead th {
  padding: var(--space-lg) var(--space-xl);
  text-align: left;
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.03em;
  background: var(--white);
  border-bottom: 2px solid var(--border);
}
.pricing__table thead th:last-child {
  background: var(--blue-pale);
  color: var(--blue);
}
.pricing__table tbody td {
  padding: var(--space-lg) var(--space-xl);
  font-weight: 200;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}
.pricing__table tbody td:first-child {
  font-weight: 400;
  color: var(--dark);
}
.pricing__table tbody td:last-child {
  background: var(--blue-pale);
}
.pricing__table tbody tr:last-child td {
  border-bottom: none;
}
.pricing__badge {
  display: inline-block;
  padding: 2px 12px;
  background: var(--blue);
  color: var(--white);
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.03em;
}
/* ================================
   11. Buttons & CTAs
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  border-radius: var(--border-radius);
  transition: all var(--duration) var(--ease);
  min-width: 180px;
  text-align: center;
}
.btn--green {
  background-color: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn--green:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(90, 122, 69, 0.3);
}
.btn--blue {
  background-color: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}
.btn--blue:hover {
  background-color: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(38, 84, 124, 0.3);
}
.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn--outline-dark:hover {
  background-color: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}
/* ================================
   12. About Section (Shared)
   ================================ */
.about-section {
  padding: var(--space-4xl) 0;
}
.about-section__box {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.about-section__heading {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  font-weight: 400;
}
.about-section__text {
  font-weight: 200;
  line-height: 1.9;
  color: var(--text-light);
}
.about-section__image {
  aspect-ratio: 4/3;
  background: var(--bg-warm);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-sm);
}
/* ================================
   13. Über Uns Page
   ================================ */
.ueber-uns-intro {
  padding: var(--space-4xl) 0;
}
.ueber-uns-intro__content {
  /* max-width: 800px; */
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-xl);
}
.ueber-uns-intro__text {
  font-weight: 200;
  font-size: var(--text-lg);
  line-height: 1.9;
  color: var(--text);
  margin-bottom: var(--space-lg);
}
.ueber-uns-intro__subtext {
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--dark);
}
/* Opening Hours */
.opening-hours {
  padding: var(--space-4xl) 0;
  background: var(--bg-warm);
}
.opening-hours__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.opening-hours__card {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.opening-hours__card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
}
.opening-hours__card-icon--cafe {
  background: var(--green);
}
.opening-hours__card-icon--cowork {
  background: var(--blue);
}
.opening-hours__card-icon--spektrum {
  background: var(--gold);
}
.opening-hours__card h3 {
  font-weight: 500;
  font-size: var(--text-lg);
  margin-bottom: var(--space-lg);
}
.opening-hours__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  font-weight: 200;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--border-light);
}
.opening-hours__row:last-child {
  border-bottom: none;
}
.opening-hours__row span:first-child {
  font-weight: 400;
}
.opening-hours__closed {
  color: var(--text-muted);
  font-style: italic;
  font-weight: 200;
  font-size: var(--text-sm);
  margin-top: var(--space-md);
}
/* Anreise */
.anreise {
  padding: var(--space-4xl) 0;
}
.anreise__content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.anreise__info h2 {
  font-size: var(--text-3xl);
  font-weight: 400;
  margin-bottom: var(--space-xl);
}
.anreise__address {
  font-weight: 400;
  font-size: var(--text-lg);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}
.anreise__text {
  font-weight: 200;
  line-height: 1.8;
  color: var(--text-light);
}
.anreise__map {
  aspect-ratio: 4/3;
  background: var(--bg-warm);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}
.anreise__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/* ================================
   14. Spektrum Page
   ================================ */
.spektrum-intro {
  /* max-width: 800px; */
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
}
.spektrum-intro__text {
  font-weight: 200;
  font-size: var(--text-lg);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}
.spektrum-intro__highlight {
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--dark);
  font-style: italic;
}
.veranstaltung {
  padding: var(--space-4xl) 0;
  background: var(--bg-warm);
}
.veranstaltung__content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.veranstaltung__heading {
  font-size: var(--text-3xl);
  font-weight: 400;
  margin-bottom: var(--space-2xl);
  text-align: center;
}
.veranstaltung__card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  max-width: 700px;
  margin: 0 auto;
}
.veranstaltung__date {
  font-weight: 500;
  color: var(--blue);
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}
.veranstaltung__title {
  font-size: var(--text-2xl);
  font-weight: 400;
  margin-bottom: var(--space-lg);
}
.veranstaltung__program h4 {
  font-weight: 500;
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
}
.veranstaltung__program li {
  padding: var(--space-sm) 0;
  font-weight: 200;
  padding-left: var(--space-xl);
  position: relative;
  color: var(--text-light);
}
.veranstaltung__program li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.bildergalerie {
  padding: var(--space-4xl) 0;
}
.bildergalerie__heading {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.bildergalerie__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
/*
.bildergalerie__item {
  aspect-ratio: 1;
  background: var(--bg-warm);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-sm);
  overflow: hidden;
}

.bildergalerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
*/
.bildergalerie__item {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius);
  color: var(--text-muted);
  font-size: var(--text-sm);
  overflow: hidden;
}
/* Bild bekommt eigenes Quadrat */
.bildergalerie__image {
  aspect-ratio: 1;
  overflow: hidden;
}
.bildergalerie__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ================================
   15. Footer
   ================================ */
.footer {
  background-color: var(--white);
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) 0 var(--space-xl);
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl) var(--space-2xl);
}
.footer__heading {
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}
.footer__contact p {
  font-weight: 200;
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--text-light);
}
.footer__contact a:hover {
  color: var(--blue);
}
.footer__hours p {
  font-weight: 200;
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--text-light);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-xl) 0;
  border-top: 1px solid var(--border-light);
}
.footer__copyright {
  font-weight: 200;
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.footer__logo {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
}
.footer__legal {
  display: flex;
  gap: var(--space-xl);
}
.footer__legal a {
  font-weight: 200;
  font-size: var(--text-xs);
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
}
.footer__legal a:hover {
  color: var(--dark);
}
.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-light);
  transition: all var(--duration) var(--ease);
}
.footer__social a:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}
/* ================================
   16. Impressum Page
   ================================ */
.legal-page {
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-4xl);
}
.legal-page__content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.legal-page__heading {
  font-size: var(--text-4xl);
  font-weight: 400;
  margin-bottom: var(--space-3xl);
}
.legal-page__section {
  margin-bottom: var(--space-2xl);
}
.legal-page__section h2 {
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-md);
}
.legal-page__section h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);
}
.legal-page__section p {
  font-weight: 200;
  line-height: 1.8;
  color: var(--text-light);
}
/* ================================
   16b. Menu Pages (Café)
   ================================ */
.menu-page {
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-4xl);
}
.menu-page__content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.menu-page__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border);
}
.menu-page__title {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--green);
  margin-bottom: var(--space-sm);
}
.menu-page__subtitle {
  font-weight: 200;
  color: var(--text-light);
  font-size: var(--text-sm);
}
.menu-section {
  margin-bottom: var(--space-3xl);
}
.menu-section__heading {
  font-weight: 500;
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--green);
  display: inline-block;
  color: var(--dark);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-sm) 0;
  gap: var(--space-lg);
}
.menu-item + .menu-item {
  border-top: 1px solid var(--border-light);
}
.menu-item__name {
  font-weight: 400;
  color: var(--dark);
}
.menu-item__desc {
  font-weight: 200;
  font-size: var(--text-sm);
  color: var(--text-light);
  margin-top: 2px;
}
.menu-item__price {
  font-weight: 400;
  white-space: nowrap;
  color: var(--dark);
}
.menu-note {
  font-weight: 200;
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: italic;
  margin-top: var(--space-md);
}
.menu-daily {
  background: var(--bg-warm);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
}
.menu-daily__day {
  font-weight: 500;
  color: var(--green-dark);
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}
.menu-daily__soup {
  font-weight: 200;
  font-size: var(--text-sm);
  color: var(--text-light);
}
.menu-daily__main {
  font-weight: 400;
  margin-top: var(--space-xs);
}
.menu-daily__price {
  font-weight: 500;
  color: var(--green);
  margin-top: var(--space-xs);
}
.menu-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 400;
  font-size: var(--text-sm);
  color: var(--green);
  margin-bottom: var(--space-2xl);
  transition: color var(--duration) var(--ease);
}
.menu-back:hover {
  color: var(--green-dark);
}
/* ================================
   17. Scroll Animations
   ================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slower) var(--ease-out), transform var(--duration-slower) var(--ease-out);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left {
  transform: translateX(-30px);
}
.reveal--left.reveal--visible {
  transform: translateX(0);
}
.reveal--right {
  transform: translateX(30px);
}
.reveal--right.reveal--visible {
  transform: translateX(0);
}
.reveal--delay-1 {
  transition-delay: 0.1s;
}
.reveal--delay-2 {
  transition-delay: 0.2s;
}
.reveal--delay-3 {
  transition-delay: 0.3s;
}
.reveal--delay-4 {
  transition-delay: 0.4s;
}
/* Page entrance animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__content {
  animation: fadeInUp 1s var(--ease-out) 0.2s both;
}
.hero__line-bar {
  animation: lineGrow 1s var(--ease-out) 0.8s both;
}
@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
/* Homepage pillar entrance */
.pillar {
  animation: pillarIn 0.8s var(--ease-out) both;
}
.pillar:nth-child(1) {
  animation-delay: 0.1s;
}
.pillar:nth-child(2) {
  animation-delay: 0.25s;
}
.pillar:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes pillarIn {
  from {
    opacity: 0;
    transform: scaleY(0.95);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}
/* Subtle hover lift for opening hours cards */
.opening-hours__card {
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.opening-hours__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
/* Gallery item overlay on hover */
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--duration) var(--ease);
  border-radius: var(--border-radius);
  pointer-events: none;
}
.gallery__item:hover::after {
  background: rgba(0, 0, 0, 0.05);
}
/* Pricing table row hover */
.pricing__table tbody tr {
  transition: background-color var(--duration) var(--ease);
}
.pricing__table tbody tr:hover {
  background-color: var(--bg-light);
}
/* ================================
   18. Responsive Design
   ================================ */
@media (max-width: 1024px) {
  .kulinarik {
    grid-template-columns: 1fr;
  }
  .kulinarik__image {
    min-height: 300px;
  }
  .about-section__box {
    grid-template-columns: 1fr;
    margin: 0 var(--space-xl);
  }
  .rooms-grid {
    gap: var(--space-xl);
  }
  .anreise__content {
    grid-template-columns: 1fr;
  }
  .opening-hours__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }
  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  /* Homepage pillars stack */
  .homepage {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
  .pillar {
    flex: none;
    min-height: 33.34vh;
  }
  .pillar:hover {
    flex: none;
  }
  .pillar__bg {
    filter: grayscale(0%) brightness(0.6);
  }
  .pillar__logo {
    opacity: 1;
    transform: translateY(0);
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
  .pillar__subtitle {
    opacity: 1;
    transform: translateY(0);
  }
  .pillar__title {
    font-size: 2rem;
  }
  /* Gallery */
  .gallery--three, .gallery--four {
    grid-template-columns: 1fr 1fr;
  }
  /* Section spacing */
  .section {
    padding: var(--space-3xl) 0;
  }
  .intro-text {
    padding: var(--space-2xl) var(--space-lg);
    font-size: var(--text-base);
  }
  .hero {
    min-height: 35vh;
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
  }
  .script-heading--hero {
    white-space: normal;
    font-size: 2rem;
  }
  .kulinarik__content {
    padding: var(--space-2xl);
  }
  .kulinarik__script {
    font-size: 3rem;
    top: var(--space-lg);
    right: var(--space-lg);
  }
  .wertschoepfung__cards {
    grid-template-columns: 1fr;
  }
  .spaces__features {
    flex-direction: column;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  /* Pricing table scroll */
  .pricing__table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .pricing__table table {
    min-width: 600px;
  }
  .footer__main {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  .bildergalerie__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .gallery--three, .gallery--four {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: var(--text-3xl);
  }
  h2 {
    font-size: var(--text-2xl);
  }
  .btn {
    width: 100%;
  }
  .bildergalerie__grid {
    grid-template-columns: 1fr;
  }
}
/* ================================
   19. Print Styles
   ================================ */
@media print {
  .nav, .homepage__hint, .btn {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: var(--space-xl);
  }
  body {
    font-size: 12pt;
    color: #000;
  }
}
/********************************************/
/*********** Zusätzliches CSS ***************/
/********************************************/
.justify-content-right {
  justify-content: flex-end;
}
.nav {
  background-color: #ffffff;
}
.nav__links {
  color: black;
}
.hero--cafe {
  min-height: 50vh;
}
.hero__line {
  margin-bottom: 0;
}
.gallery {
  width: 100%;
  max-width: 100%;
  padding-inline: 1rem;
}
/********************************/
/***** Logo Anpassungen *********/
/********************************/
.nav__logo {
  width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: left;
}
.nav__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.footer__logo {
  width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/********************************/
/******** Startseite ************/
/********************************/
.pillar__logo {
  border: none;
  background: none;
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* ======================================================
   KULINARIK SECTION – BASIS
====================================================== */
.kulinarik {
  margin-top: 12rem !important;
  display: flex;
  align-items: center;
  gap: 4rem;
}
/* Textbereich links */
.kulinarik__content {
  background-color: #ffffff;
  padding-top: 0.1rem;
}
.kulinarik__text {
  color: black;
}
/* ======================================================
   BILDBEREICH – REFERENZ FÜR SCRIPT
====================================================== */
.kulinarik__image {
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: flex-end;
}
/* Bild selbst */
.kulinarik__image img {
  width: 90%;
  height: auto;
  display: block;
}
/* ======================================================
   SCRIPT ÜBERSCHRIFT („Genuss“)
====================================================== */
.kulinarik__script {
  position: absolute;
  /* Positionierung Desktop */
  top: -4.8rem;
  color: black;
  font-size: clamp(6.5rem, 5vw, 4rem);
  pointer-events: none;
  z-index: 2;
  font-weight: 400;
}
/* ======================================================
   MOBILE FIX
====================================================== */
@media (max-width: 768px) {
  .kulinarik {
    flex-direction: column;
    margin-top: 5rem !important;
    /*gap: 2.5rem;*/
  }
  .kulinarik__image {
    justify-content: center;
    margin-top: 2rem;
  }
  .kulinarik__image img {
    width: 100%;
  }
  .kulinarik__script {
    top: -4.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: clamp(5.5rem, 5vw, 4rem);
  }
}
.kulinarik__content {
  background-color: #ffffff;
  padding-top: 0.1rem;
  text-align: center;
}
.kulinarik__text {
  color: black;
}
.wertschoepfung {
  background-image: url("../images/scafe/wertschoepfung-bg.jpg");
  margin-top: 5rem;
}
.about-section__box {
  display: flex;
  /* border: 2px solid rgba(33,91,51,1); */
  border: 2px solid var(--green);
}
.footer {
  border-top: none;
}
.footer__main {
  background: rgba(48, 56, 58, 1);
  padding-top: 3rem;
  max-width: 100%;
}
.footer__heading {
  color: white;
}
.footer__contact, .footer__hours {
  text-align: center;
}
.footer__contact p, .footer__hours p {
  color: white;
}
.kulinarik__buttons {
  align-self: center;
}
.kulinarik__buttons a:last-child {
  background-color: var(--green);
}
/**************************************/
/**** CSS Änderungen Co Working *******/
/**************************************/
.hero--cowork {
  min-height: 50vh;
}
.inner-spaces {
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.reveal-second {
  justify-content: flex-end;
}
.reveal-second .btn {
  background: #2870ed;
  color: white;
  border: none;
}
.btn-buchung-spaces {
  justify-self: left;
}
.btn-buchung-spaces .btn {
  /*background: rgba(38,84,124,1);*/
  background: #0f3460;
  color: white;
  border: none;
}
.arbeiten__text {
  font-size: var(--text-lg);
}
.lowercase-footer {
  text-transform: lowercase;
}
/* Tabelle Preise */
/* ======================================================
   WRAPPER
====================================================== */
.preis-table-wrapper {
  max-width: var(--max-width);
  margin: 5rem auto 0;
  padding: 0 1.5rem;
  overflow-x: auto;
}
/* ======================================================
   TABLE BASE
====================================================== */
.preis-table {
  width: 100%;
  min-width: 760px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 0.7rem; /* Abstand zwischen den Karten */
}
/* ======================================================
   CELLS
====================================================== */
.preis-table th, .preis-table td {
  padding: 1rem 1.2rem;
  font-size: 1rem;
  vertical-align: middle;
  border: none;
}
/* ======================================================
   COLUMN WIDTHS
====================================================== */
.preis-table th:first-child, .preis-table td:first-child {
  width: 50%;
  text-align: left;
}
.preis-table th:nth-child(2), .preis-table th:nth-child(3), .preis-table td:nth-child(2), .preis-table td:nth-child(3) {
  width: 25%;
  text-align: center;
}
/* ======================================================
   ROW AS CARD – ERSTE SPALTE (GRAU + ABSTAND)
====================================================== */
.preis-table tbody tr:not(.section-row) th {
  background: var(--table-gray-light);
  font-weight: 500;
  border-radius: 8px 0 0 8px;
  margin-right: var(--table-gap);
}
/* ======================================================
   ZWEITE SPALTE – KLARE LINKE KANTE
====================================================== */
.preis-table tbody tr:not(.section-row) td:nth-child(2) {
  background: var(--table-blue-dark);
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px 0 0 8px;
  /* 🔑 harte Linie links */
  border-left: 4px solid #ffffff;
}
/* ======================================================
   DRITTE SPALTE – RECHTS ABRUNDEN
====================================================== */
.preis-table tbody tr:not(.section-row) td:nth-child(3) {
  background: var(--table-blue-light);
  color: #ffffff;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
}
/* ======================================================
   SECTION ROWS
====================================================== */
.section-row th {
  background: #0f3460;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  /* text-transform: uppercase; */
  padding: 1rem 1.2rem;
  border-radius: 8px;
  text-align: left;
}
/* Erste Spalte – Abstand + Trennlinie */
.preis-table tbody tr:not(.section-row) th {
  background: var(--table-gray-light);
  font-weight: 500;
  border-radius: 8px;
  padding-right: 2rem; /* Abstand einstellen */
  border-right: 3px solid #fff; /* Trennkante */
}
/* Zweite Spalte – Start des blauen Blocks */
.preis-table tbody tr:not(.section-row) td:nth-child(2) {
  background: var(--table-blue-dark);
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px 0 0 8px;
}
/* ======================================================
   TABLE HEADER FARBLICH ANGLEICHEN
====================================================== */

.preis-table thead th:nth-child(2) {
  background: var(--table-blue-dark);
  color: #ffffff;
  border-radius: 8px 0 0 8px; /* oben links rund */
}
/* Header für Standard‑Tarif */
.preis-table thead th:nth-child(3) {
  background: var(--table-blue-light);
  color: #ffffff;
  border-radius: 0 8px 8px 0; /* oben rechts rund */
}
/* erster leerer Header bleibt neutral */
.preis-table thead th:first-child {
  background: transparent;
}
/* ======================================================
   MOBILE
====================================================== */
@media (max-width: 500px) {
  .preis-table th, .preis-table td {
    font-size: 0.95rem;
  }
}
.section-box-blue {
  border: 2px solid rgba(38, 84, 124, 1);
}
.section-grey-box {
  border: 2px solid rgba(48, 56, 58, 1);
}
/*********************************************************/
/** Anpassungen CoWork Schriften bei den beiden Sections */
/*********************************************************/
.spaces {
  position: relative;
}
.rooms-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-inline: 1rem;
}
.spaces__heading {
  position: absolute;
  top: clamp(0.5rem, 20vw, 0rem);
  z-index: 5;
  pointer-events: none;
  right: 0;
  width: max-content;
  transform: translateY(1rem);
}
/* LINKS – nie weiter links als 1rem */
.spaces--left .spaces__heading {
  left: max(1rem, calc((100% - var(--max-width)) / 2));
  text-align: left;
}
/* RECHTS – nie weiter rechts als 1rem */
.spaces--right .spaces__heading {
  right: max(1rem, calc((100% - var(--max-width)) / 2 + 1rem));
  top: clamp(1rem, 20vw, 2.2rem);
}
.spaces--left .spaces__list li, .spaces--right .spaces__list li {
  padding: 0.1rem 0px 0.1rem 1rem;
}
.spaces--right {
  padding-top: 8rem;
}
/********************************/
/******** SPEKTRUM **************/
/********************************/
.hero--spektrum {
  min-height: 50vh;
}
/********************************/
/******** Ueber Uns **************/
/********************************/
.hero--about {
  min-height: 50vh;
}
.logo-opening-hours {
  width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}
.logo-opening-hours img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.anreise__map {
  position: relative;
  height: 450px;
}
.anreise__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
/* Overlay */
#mapOverlay {
  position: absolute;
  inset: 0;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


@media (max-width: 768px) {
  /* GLOBAL SAFETY */
  html, body {
    overflow-x: hidden;
  }

  * {
    box-sizing: border-box;
  }

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

  /* MAP FIX */
  .anreise__map {
    width: 100%;
    max-width: 100%;
    height: 300px;      
    overflow: hidden;   
  }

  .anreise__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  #mapOverlay {
    padding: 1rem;
  }

  /* FALLBACK: falls irgendwo noch was raussteht */
  section, div {
    max-width: 100%;
  }
}
