/* ============================
  FONT DEFINITION
============================ */

@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/Rajdhani/Rajdhani-Light.woff2') format('woff2'),
      url('../fonts/Rajdhani/Rajdhani-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/Rajdhani/Rajdhani-Medium.woff2') format('woff2'),
      url('../fonts/Rajdhani/Rajdhani-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/Rajdhani/Rajdhani-Bold.woff2') format('woff2'),
      url('../fonts/Rajdhani/Rajdhani-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/Rajdhani/Rajdhani-Regular.woff2') format('woff2'),
      url('../fonts/Rajdhani/Rajdhani-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/Rajdhani/Rajdhani-SemiBold.woff2') format('woff2'),
      url('../fonts/Rajdhani/Rajdhani-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


/* ============================
  DESIGN SYSTEM: MINIMAL COLOR PALETTES
============================ */

/* LIGHT THEME - Clean Minimal */
[data-theme="light"] {
  /* Primary Colors - Muted, professional */
  --color-primary-100: #fefefe;
  --color-primary-200: #f5f5f5;
  --color-primary-300: #e5e5e5;
  --color-primary-400: #b85c63;
  --color-primary-500: #AC2530;
  
  /* Secondary Colors - Technical grays */
  --color-secondary-100: #fafafa;
  --color-secondary-200: #f0f0f0;
  --color-secondary-300: #d4d4d4;
  --color-secondary-400: #737373;
  --color-secondary-500: #525252;
  
  /* Clean Neutral Colors */
  --color-neutral-50: #ffffff;
  --color-neutral-100: #fafafa;
  --color-neutral-200: #f4f4f5;
  --color-neutral-300: #e4e4e7;
  --color-neutral-400: #a1a1aa;
  --color-neutral-700: #3f3f46;
  --color-neutral-800: #27272a;
  --color-neutral-900: #18181b;
  
  /* Semantic Colors */
  --bg-body: var(--color-neutral-50);
  --bg-elevated: rgba(255, 255, 255, 0.8);
  --text-body: var(--color-neutral-900);
  --text-secondary: var(--color-neutral-700);
  --border-color: var(--color-neutral-300);
  --card-bg: rgba(255, 255, 255, 0.8);
  --glass-effect: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.15);
  
  /* Selection */
  --selection-bg: var(--color-primary-500);
  --selection-text: #ffffff;
}

/* DARK THEME - Technical Clean (Default) */
:root {
  /* Primary Colors - Subdued red */
  --color-primary-100: #1a0f10;
  --color-primary-200: #2d1a1c;
  --color-primary-300: #4a2629;
  --color-primary-400: #b85c63;
  --color-primary-500: #AC2530;
  
  /* Secondary Colors - Technical grays */
  --color-secondary-100: #0a0a0a;
  --color-secondary-200: #171717;
  --color-secondary-300: #262626;
  --color-secondary-400: #404040;
  --color-secondary-500: #525252;
  
  /* Clean Neutral Colors - No pure black */
  --color-neutral-50: #0a0a0a;
  --color-neutral-100: #111111;
  --color-neutral-200: #1a1a1a;
  --color-neutral-300: #262626;
  --color-neutral-400: #525252;
  --color-neutral-700: #a3a3a3;
  --color-neutral-800: #d4d4d4;
  --color-neutral-900: #fafafa;
  
  /* Semantic Colors */
  --bg-body: var(--color-neutral-50);
  --bg-elevated: rgba(26, 26, 26, 0.8);
  --text-body: var(--color-neutral-800);
  --text-secondary: var(--color-neutral-800);
  --border-color: var(--color-neutral-300);
  --card-bg: linear-gradient(to bottom, rgba(24, 26, 32, 0.85) 0%, rgba(24, 26, 28, 0.8) 100%);
  --glass-effect: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  
  /* Selection */
  --selection-bg: var(--color-primary-500);
  --selection-text: #ffffff;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;

  /* Typography Scale - More subtle */
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;

  /* NO RADIUS - Everything sharp */
  --radius-none: 0px;

  /* Minimal Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 25px rgba(0,0,0,0.15);

  /* Subtle Transitions */
  --transition-fast: all 0.15s ease-out;
  --transition-default: all 0.2s ease-out;
  --transition-slow: all 0.3s ease-out;
}

/* Universal Padding */
:root {
--universal-padding: 4vw;
}

header, section, footer {
padding-left: var(--universal-padding);
padding-right: var(--universal-padding);
}


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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--text-base);
  line-height: 1.5;
  /*background-color: var(--bg-body);
  background-image: url('../img/hero1.jpg');*/
  background-color: var(--bg-body);
  color: var(--text-body);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative; /* Für korrektes Stacking */
}

/* Enable gracious syllabyl-aware line break with dashes */
/*body,
p,
h1, h2, h3, h4, h5, h6,
span,
div,
li,
blockquote,
figcaption,
th,
td,
a {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
  */

/* Remove iOS styles (e.g. round corners) from input fields */
input {
  border-radius: var(--radius-none);
}
input[type="search"] {
  -webkit-appearance: none;
}

/* Clean Selection */
::selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}

/* ============================
  BACKGROUND CONTAINER
============================ */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Hinter allen Elementen */
  background: linear-gradient(to bottom, rgba(24, 26, 32, 0.95) 0%, rgba(24, 26, 28, 0.8) 100%), url('../img/hero1.jpg');
  background-size: cover;
  background-position: center;
  pointer-events: none; /* Erlaubt Klicks durch den Hintergrund */
  transform: translateZ(0); /* Verhindert Zoom-Effekt beim Scrollen */
  will-change: transform; /* Optimiert Rendering */
  min-height: 100vh;
}


/* ============================
  CLEAN TYPOGRAPHY
============================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: normal;
}

h1 {
  font-size: clamp(2rem, 5vw, var(--text-3xl));
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

h2 {
  font-size: clamp(1.75rem, 4vw, var(--text-2xl));
  font-weight: 500;
}

h3 {
  font-size: clamp(1.25rem, 3vw, var(--text-xl));
  font-weight: 500;
}

p {
  margin-bottom: var(--space-md);
  max-width: 65ch;
  font-weight: 500;
  line-height: 1.6;
}


/* ============================
  CONTAINER & SECTIONS
============================ */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 4rem);;
}

@media (min-width: 3440px) {
  .container {
    max-width: 1800px;
  }
}


/* ============================
  SECTION SPACING
============================ */
.section {
  padding-block: var(--space-xl);
}

@media (max-width: 768px) {
  .section {
    padding-block: var(--space-lg);
  }
}


/* ============================
  GRID SYSTEM
============================ */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 3440px) {
  .grid-ultrawide {
    grid-template-columns: repeat(5, 1fr);
  }
}


/* ============================
  CLEAN HERO SECTION
============================ */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  position: relative;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.2;
  max-width: 600px;
  text-align: center;
  color: var(--text-body);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary-400);
  margin-bottom: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}


/* ============================
  UTILITIES
============================ */

/* Define attribute to disable syllable-aware line break with dashes */
[nolinebreak] {
  word-wrap: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* Define attribute usable on elements where selecting should be disabled */
[unselectable] {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Define attribute usable on images to disable dragging of ghost image */
[undraggable] {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

/* Define attribute usable to hide the scrollbar of an element */
[noscrollbar]::-webkit-scrollbar {  /* Hide scrollbar for Chrome, Safari and Opera */
  display: none;
}
[noscrollbar] { /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: var(--space-md);
}

.pt-8 {
  padding-top: var(--space-lg);
}

.max-w-prose {
  max-width: 65ch;
  margin-inline: auto;
}

.shadow {
  box-shadow: var(--shadow-sm);
}

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


/* ============================
 Non Grata Consulting - CLEAN MINIMAL THEME
============================ */

/* ============================
CLEAN HEADER STYLES
============================ */
header {
position: fixed;
width: 100%;
background-color: transparent;
padding: 1.5rem 2rem;
z-index: 100;
display: flex;
justify-content: space-between;
align-items: center;
transition: var(--transition-fast);
border-bottom: 1px solid transparent;
}

header.scrolled {
backdrop-filter: blur(12px);
background: rgba(24, 26, 28, 0.8); /*linear-gradient(to bottom, rgba(24, 26, 32, 0.95) 0%, rgba(24, 26, 28, 0.8) 100%);*/
border-bottom: 1px solid var(--border-color);
}

.logo {
display: flex;
align-items: center;
}

.logo a {
display: flex;
align-items: center;
text-decoration: none;
cursor: pointer;
transition: var(--transition-default);
}

.logo img {
height: 16px;
}

/* ============================
CLEAN NAVIGATION
============================ */
nav ul {
display: flex;
list-style: none;
gap: 2rem;
}

nav ul li {
display: flex;
justify-content: center;
align-items: center;
}

nav a {
text-decoration: none;
color: var(--text-body);
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.5px;
font-size: 0.9rem;
position: relative;
padding: 0.5rem 0;
transition: var(--transition-default);
}

nav a:hover {
color: var(--color-primary-500);
}

nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 1px;
background-color: var(--color-primary-500);
transition: var(--transition-default);
}

nav a:hover::after {
width: 100%;
}

/* ============================
LANGUAGE SELECTOR
============================ */
.language-selector {
position: relative;
display: inline-block;
}

.language-btn {
background: var(--card-bg);
border: 1px solid var(--glass-border);
backdrop-filter: blur(12px);
width: 40px;
height: 40px;
border-radius: var(--radius-none);
display: flex;
align-items: center;
justify-content: center;
font-weight: 500;
cursor: pointer;
color: var(--text-body);
transition: var(--transition-default);
font-size: 0.85rem;
}

.language-btn:hover {
background: var(--color-secondary-500);
color: white;
}

.language-list {
position: absolute;
top: 100%;
right: 0;
background: var(--card-bg);
backdrop-filter: blur(16px);
border: 1px solid var(--glass-border);
width: 40px;
box-shadow: var(--shadow-md);
display: none;
z-index: 10;
}

.language-list a {
display: block;
padding: 10px 12px;
text-decoration: none;
color: var(--text-body);
font-weight: 500;
text-align: center;
transition: var(--transition-fast);
font-size: 0.85rem;
}

.language-list a:hover {
background: var(--color-primary-500);
color: white;
}

.language-selector:hover .language-list {
display: block;
}

/* ============================
MOBILE MENU
============================ */
.menu-toggle {
display: none;
grid-template-columns: repeat(3, 4px);
grid-template-rows: repeat(3, 4px);
gap: 2px;
width: auto;
height: auto;
cursor: pointer;
padding: 8px;
}

.menu-toggle span {
width: 4px;
height: 4px;
background-color: var(--text-body);
transition: var(--transition-fast);
}

.menu-open .menu-toggle span:not(:nth-child(5)) {
opacity: 0;
}

/* ============================
CLEAN BUTTON STYLES
============================ */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color-primary-500);
  color: white;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-none);
  cursor: pointer;
  position: relative;
  transition: var(--transition-default);
  font-size: 0.9rem;
  overflow: hidden;
}

.btn::before {
content: '';
position: absolute;
top: -50%;
left: -100%;
width: 70%;
height: 200%;
background: linear-gradient(
  to right,
  rgba(255, 255, 255, 0) 0%,
  rgba(255, 255, 255, 0.1) 30%,
  rgba(255, 255, 255, 0.3) 50%,
  rgba(255, 255, 255, 0.1) 70%,
  rgba(255, 255, 255, 0) 100%
);
opacity: 0;
transition: opacity 0.3s ease, left 0.5s ease-out;
pointer-events: none;
}

.btn:hover::before {
opacity: 1;
left: 130%;
}

/* ============================
CLEAN SECTION STYLES
============================ */
section {
padding: 5rem 4vw;
}

section:first-of-type {
background-image: none;
}

section.section-center {
position: relative;
}

section.max-width {
max-width: 1200px;
margin: 0 auto;
}

.section-center {
text-align: center;
max-width: 600px;
margin: 0 auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.section-center h2 {
margin: 0 auto 1.5rem;
}

.section-center p {
margin: 0 auto 2rem;
text-align: center;
font-size: 1rem;
line-height: 1.6;
}

.section-title {
font-size: clamp(1.75rem, 4vw, 2rem);
margin-bottom: 1rem;
position: relative;
display: inline-block;
font-weight: 500;
}

.section-subtitle {
color: var(--color-primary-500);
font-size: 1rem;
margin-bottom: 1.5rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
}

.section-text {
margin-bottom: 2rem;
font-size: 1rem;
line-height: 1.6;
}

/* ============================
GLASSMORPHISM GRID (KEEP CARD STYLE - USER LIKES IT)
============================ */
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
margin-top: 3rem;
}

.grid-item-link {
text-decoration: none;
color: inherit;
display: block;
height: 100%;
}

.grid-item {
background: var(--card-bg);
border: 1px solid var(--glass-border);
backdrop-filter: blur(12px);
padding: 2rem;
color: var(--text-body);
transition: var(--transition-default);
height: 100%;
display: flex;
flex-direction: column;
}

.grid-item-link:hover .grid-item {
transform: translateY(-4px);
border-color: var(--color-primary-500);
}

.grid-item h3 {
margin-bottom: 1rem;
font-size: 1.25rem;
font-weight: 500;
}

.grid-item p {
margin-bottom: auto;
color: var(--text-secondary);
max-width: none;
line-height: 1.6;
font-size: 0.95rem;
}

.link-container {
margin-top: 1.5rem;
}

.grid-item .link {
color: var(--color-primary-500);
position: relative;
font-weight: 500;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.5px;
transition: var(--transition-default);
display: inline-block;
}

.grid-item .link::before {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 1px;
background: var(--color-primary-500);
transition: var(--transition-default);
}

.grid-item-link:hover .link::before {
width: 100%;
}

/* ============================
CLEAN FOOTER
============================ */
footer {
background-color: rgba(24, 26, 28, 0.8);
/*border-top: 1px solid var(--border-color);*/
color: var(--text-body);
background-image: none;
}

.footer-container {
background: rgba(24, 26, 28, 0.8);
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
padding: 4rem 0;
}

.footer-logo img {
height: 16px;
margin-bottom: 1rem;
}

.footer-column h4 {
color: var(--text-body);
border-bottom: 1px solid var(--color-primary-500);
padding-bottom: 0.75rem;
margin-bottom: 1rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.5px;
font-size: 0.9rem;
}

.footer-column ul {
list-style: none;
}

.footer-column ul li {
margin-bottom: 0.75rem;
}

.footer-column a {
text-decoration: none;
color: var(--text-secondary);
transition: var(--transition-default);
font-weight: 500;
font-size: 0.9rem;
}

.footer-column a:hover {
color: var(--text-body);
}

/* ============================
RESPONSIVE DESIGN - CLEAN
============================ */
@media (max-width: 1024px) {
header {
  padding: 1.5rem;
}

section {
  padding: 4rem 4vw;
}

.grid-container {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.footer-container {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
/* Mobile Navigation */
.menu-toggle {
  display: grid;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  z-index: 99;
  pointer-events: none;
  transition: var(--transition-default);
}

nav.active {
  opacity: 1;
  pointer-events: auto;
}

/* Close Button für Mobile Menü */
.mobile-close-btn {
   display: none !important; /* Standardmäßig komplett ausgeblendet */
}

/* Nur in mobiler Ansicht und wenn Menü aktiv ist anzeigen */
@media (max-width: 768px) {
   #mobile-close-btn.mobile-close-btn {
      position: absolute;
      bottom: 15%;
      left: 50%;
      transform: translateX(-50%);
      width: 24px;
      height: 24px;
      background-color: transparent;
      border: none;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      margin-top: 3rem;
      transition: var(--transition-default);
   }
   
   nav.active #mobile-close-btn.mobile-close-btn {
      display: flex !important;
   }
}

.mobile-close-btn svg {
  width: 100%;
  height: 100%;
}

.mobile-close-btn:hover svg path {
  fill: var(--color-primary-500);
}

nav ul {
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem; /* Doppelter Abstand zum Schließbutton */
}

nav a {
  color: var(--text-body);
  font-size: 1.25rem;
  font-weight: 400;
}

/* Mobile Language Selector - Complete Reset */
.language-selector {
  position: static !important;
  display: inline-block !important;
  margin-top: 2rem;
  background: none !important;
  border: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.language-btn {
  display: none !important;
}

.language-list {
  position: static !important;
  top: auto !important;
  right: auto !important;
  width: auto !important;
  background: none !important;
  backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 0;
  z-index: auto !important;
}

.language-list a {
  display: inline !important;
  padding: 0.4rem 0.6rem !important;
  text-decoration: none !important;
  color: var(--text-secondary) !important;
  font-weight: 400 !important;
  text-align: center !important;
  font-size: 0.9rem !important;
  position: relative;
  transition: color 0.2s ease !important;
  background: none !important;
  border: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border-bottom: 2px solid transparent !important;
  transition: border-bottom-color 0.3s ease !important;
  padding-bottom: 2px !important;
}

.language-list a::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
}

.language-list a:hover::after {
  display: none !important;
  width: 0 !important;
}

.language-list a:hover,
.language-list a:focus,
.language-list a:active,
.language-list a:visited {
  text-decoration: none !important;
  border-bottom-color: #888 !important;
  background: none !important;
}

.language-selector:hover .language-list {
  display: flex !important;
}

/* Mobile Hero */
.hero {
  padding: 2rem 1.5rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 6vw, 2rem);
  max-width: 500px;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

/* Mobile Grid */
.grid-container {
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.grid-item {
  padding: 1.5rem;
}

/* Mobile Footer */
.footer-container {
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

/* Mobile Sections */
section {
  padding: 3rem 2rem;
}

.btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}
}

@media (max-width: 480px) {
.hero {
  padding: 1.5rem 2rem;
}

.grid-item {
  padding: 1.25rem;
}

section {
  padding: 2.5rem 2rem;
}

nav a {
  font-size: 1.1rem;
}
}

/* ============================
CONTACT CTA - FULL WIDTH
============================ */
.cta-fullwidth {
  background: linear-gradient(to bottom, rgba(24, 26, 32, 0.85) 0%, rgba(24, 26, 28, 0.8) 100%);
  width: 100%;
  margin: 0;
  padding: 4rem var(--universal-padding);
  position: relative;
  border-top: 2px solid var(--color-primary-500);
}

.cta-fullwidth-content {
   max-width: 1200px;
   margin: 0 auto;
   text-align: center;
   display: flex;
   flex-direction: column;
   justify-content: start;
   align-items: center;
}

.cta-fullwidth h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-body);
}

.cta-fullwidth .cta-desc {
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 2rem;
  max-width: 800px;
  line-height: 1.6;
}

.cta-buttons {
   display: flex;
   gap: 1.5rem;
   margin-bottom: 2rem;
   justify-content: center;
}

.cta-disclaimer {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 500px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  color: var(--text-body);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-none);
  cursor: pointer;
  position: relative;
  transition: var(--transition-default);
  font-size: 0.9rem;
}

.btn-outline:hover {
  border-color: var(--text-body);
}

@media (max-width: 768px) {
  .cta-fullwidth {
    padding: 3rem 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn, .btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* ============================
ACCESSIBILITY & PERFORMANCE
============================ */

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

/* Print Styles */
@media print {
header,
nav,
.menu-toggle,
.language-selector {
  display: none;
}

.hero {
  background: none;
  color: black;
  height: auto;
  padding: 2rem;
}

.grid-item {
  background: white;
  border: 1px solid #ccc;
  box-shadow: none;
}
}

@media (max-width: 768px) {
   body {
     /* Eventuell auch background-size anpassen */
     background-attachment: fixed;
     background-size: cover;
   }
}

/* ============================
   MINIMAL FOOTER
============================ */
.minimal-footer {
  padding: 1.5rem var(--universal-padding);
  background: rgba(24, 26, 28, 0.8);
  border-top: 1px solid var(--glass-border);
}

.minimal-footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.minimal-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-default);
}

.minimal-footer a:hover {
  color: var(--text-body);
}

.footer-separator {
  color: var(--color-secondary-400);
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .principles-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================
   SERVICE KACHELN STYLES
============================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.service-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    transition: var(--transition-default);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
}

.service-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-primary-500);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
  .minimal-footer {
    padding: 1rem var(--universal-padding);
  }
  
  .minimal-footer-content {
    gap: 1rem;
  }
}
