@import url('background_watercolor.css');

/* ==========================================================================
   DESIGN TOKENS & VARIABLES (REDUCED / MINIMALIST)
   ========================================================================== */
:root {
  --bg-color: #131315; /* Warm Anthracite Paper base */
  --bg-card: rgba(10, 10, 12, 0.5); /* Semi-transparent cards to reveal paper texture */
  --bg-card-hover: rgba(20, 20, 24, 0.75);
  
  --text-primary: #ffffff;
  --text-secondary: #a0a0a5;
  --text-muted: #55555a;
  
  --accent-color: #ffffff; 
  --accent-color-rgb: 255, 255, 255;
  --accent-secondary: #a0a0a5;
  --accent-secondary-rgb: 160, 160, 165;
  --accent-tertiary: #888888;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  
  --font-heading: 'Outfit', 'New Hero', 'Brother', sans-serif;
  --font-body: 'Brother', 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   GLOBAL TYPOGRAPHY RULES (NEW HERO / BROTHER FONT VERSAL / NORMAL)
   ========================================================================== */
.logo,
.hero-title,
.section-title, 
.card-title, 
.card-back-title, 
.work-title, 
.about-title, 
.contact-title, 
.modal-project-title, 
.success-title,
.hero-tag, 
.section-tag, 
.work-category, 
.timeline-title, 
.detail-label, 
.meta-label, 
.about-intro-tag,
.btn-magnetic, 
.btn-submit, 
.btn-view-all, 
.filter-btn, 
.nav-link,
button {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

body, 
p, 
.hero-desc, 
.card-desc, 
.about-text, 
.timeline-desc, 
.contact-text, 
.modal-project-desc, 
.success-desc, 
.detail-value, 
.meta-value, 
.example-name, 
.example-meta, 
input, 
textarea {
  text-transform: none;
  letter-spacing: 0.03em;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-color);
  background-image: 
    /* Paper fibers (coarse noise) */
    url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3e%3cfilter id='paperNoise'%3e%3cfeTurbulence type='fractalNoise' baseFrequency='0.035' numOctaves='4' stitchTiles='stitch' result='noise'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 0.025 0'/%3e%3c/filter%3e%3crect width='100%25' height='100%25' filter='url(%23paperNoise)'/%3e%3c/svg%3e"),
    /* Fine craft paper grain */
    url("data:image/svg+xml,%3Csvg viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3e%3cfilter id='grainNoise'%3e%3cfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch' result='noise'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.018 0'/%3e%3c/filter%3e%3crect width='100%25' height='100%25' filter='url(%23grainNoise)'/%3e%3c/svg%3e");
  background-repeat: repeat;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-primary);
}

/* Custom Cursor, Lights & Fixed Noise (DISABLED for clean paper aesthetic) */
.custom-cursor, .custom-cursor-dot, .bg-glow-1, .bg-glow-2, .noise-overlay {
  display: none !important;
}

/* ==========================================================================
   NAVIGATION / HEADER
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 48px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 24px 8%;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.logo {
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  z-index: 101;
}

.logo-img {
  height: 76px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  display: block;
  transition: var(--transition-smooth);
}

header.scrolled .logo-img {
  height: 56px;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: lowercase !important;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  opacity: 0.75;
  margin-left: 10px;
  display: inline-block;
  align-self: center;
  transition: var(--transition-smooth);
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  position: relative;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 20px;
  transition: var(--transition-fast);
  position: relative;
  cursor: pointer;
  border: none;
  background: transparent;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link.active {
  color: var(--text-primary);
  font-weight: 600;
}

/* Moving nav indicator pill (Simplified) */
.nav-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 22px;
  cursor: pointer;
  z-index: 101;
}

/* ==========================================================================
   SPA PAGE CONTAINER & TRANSITIONS
   ========================================================================== */
main {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.page {
  position: relative;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 0;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  pointer-events: all !important;
}

.page.active {
  z-index: 10;
}

/* ==========================================================================
   HOME PAGE (REDUCED PORTFOLIO)
   ========================================================================== */

/* Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 160px 8% 80px 8%;
  position: relative;
  overflow: hidden;
}

.hero-text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  pointer-events: all;
  max-width: 620px;
}

.hero-animation-side {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  overflow: hidden;
}

.hero-animation-side svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-tag {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 6.5vw, 90px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.hero-title span.outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

.hero-title span.gradient {
  color: var(--text-primary);
  display: inline;
}

.hero-desc {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 36px;
  font-weight: 300;
}

/* Hollow Button CTA */
.btn-magnetic {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  transition: var(--transition-fast);
}

.btn-magnetic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-primary);
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 1;
}

.btn-magnetic span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-magnetic:hover {
  transform: none;
  color: var(--bg-color);
  border-color: var(--text-primary);
}

.btn-magnetic:hover::before {
  opacity: 1;
}

.btn-magnetic i {
  font-size: 12px;
  transition: transform 0.2s;
}

.btn-magnetic:hover i {
  transform: translateY(2px);
}

/* Infinite Marquee */
.marquee {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: transparent;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  overflow: hidden;
  display: flex;
  margin-top: 40px;
  margin-bottom: 80px;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  gap: 80px;
  padding-right: 80px;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.marquee-item span.dot {
  width: 4px;
  height: 4px;
  background-color: var(--text-muted);
  border-radius: 50%;
  display: inline-block;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.portfolio-home {
  padding: 140px 8% 140px 8%;
  background: rgba(10, 10, 12, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
  margin-top: 40px;
  margin-bottom: 40px;
}

.section-header {
  margin-bottom: 48px;
  position: relative;
}

.section-tag {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* The Flip Grid */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

/* Flip Card Styles */
.flip-card-container {
  perspective: 1500px;
  height: 520px;
}

.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 16px;
}

.flip-card-container:hover .flip-card {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

/* Front Side Card */
.flip-card-front {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  transition: var(--transition-fast);
}

.flip-card-container:hover .flip-card-front {
  border-color: rgba(255, 255, 255, 0.15);
}

.card-num {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
}

.card-visual-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reduced / Monochrome Wireframe Placeholders for Front of Cards */
.card-art {
  width: 180px;
  height: 180px;
  border-radius: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.flip-card-container:hover .card-art {
  transform: scale(1.05);
}

/* Branding Graphic Art (Minimalist) */
.art-branding {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.art-branding::before {
  content: 'Y';
  font-family: var(--font-heading);
  font-size: 70px;
  font-weight: 800;
  color: var(--text-primary);
  opacity: 0.85;
}

.art-branding::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  animation: rotateCircle 40s linear infinite;
}

/* Editorial Graphic Art (Minimalist) */
.art-editorial {
  background: transparent;
}

.art-editorial-box {
  width: 110px;
  height: 140px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.flip-card-container:hover .art-editorial-box {
  border-color: rgba(255,255,255,0.4);
}

.editorial-line {
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
}

.editorial-line:first-child {
  height: 8px;
  background: var(--text-primary);
  width: 50%;
}

.editorial-line:last-child {
  width: 75%;
}

/* Collage Graphic Art (Minimalist) */
.art-collage {
  background: transparent;
  border: 1px stroke rgba(255,255,255,0.1);
}

.collage-shape-1 {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: absolute;
  transform: rotate(45deg);
}

.collage-shape-2 {
  width: 80px;
  height: 80px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: absolute;
  transform: translate(-15px, 15px);
}

.collage-shape-3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  position: absolute;
  transform: translate(25px, -25px);
  opacity: 0.7;
}

.card-front-info {
  margin-top: 16px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Back Side Card (Minimal list) */
.flip-card-back {
  background: #09090b;
  transform: rotateY(180deg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-back-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-back-title span.theme-tag {
  font-family: var(--font-body);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  padding: 0;
  color: var(--text-muted);
}

.back-examples-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  justify-content: center;
}

.example-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
  border-radius: 0;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
  cursor: pointer;
}

.example-item:hover {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
}

.example-img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.example-item:hover .example-img {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Override mini backgrounds with clean wireframe */
.example-img.branding-mini, .example-img.editorial-mini, .example-img.collage-mini {
  background: transparent;
  color: var(--text-secondary);
}

.example-details {
  flex-grow: 1;
}

.example-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 1px;
}

.example-meta {
  font-size: 10px;
  color: var(--text-muted);
}

.example-arrow {
  font-size: 11px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.example-item:hover .example-arrow {
  color: var(--text-primary);
  transform: translateX(2px);
}

.card-back-footer {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
}

.btn-view-all {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-view-all:hover {
  color: var(--text-primary);
}

/* ==========================================================================
   ARBEIT SUBPAGE (DETAILED WORK GALLERY)
   ========================================================================== */
.arbeit-container {
  padding: 140px 8% 140px 8%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 calc(100% - 60px));
  margin-top: -40px;
  margin-bottom: 40px;
}

.gallery-filters {
  display: flex;
  gap: 6px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: 20px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--text-primary);
  color: var(--bg-color);
  border-color: var(--text-primary);
  font-weight: 600;
}

/* Grid layout for work */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.work-item {
  background: #0e0e10;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  cursor: default;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.work-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: none;
}

.work-img-container {
  aspect-ratio: 16 / 10;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #0e0e10;
}

.svg-project-graphic {
  width: 100%;
  height: 100%;
  display: block;
}

.work-info {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.work-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.work-category {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.work-arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  cursor: pointer;
}

.work-item:hover .work-arrow-circle {
  background: var(--text-primary);
  color: var(--bg-color);
  border-color: var(--text-primary);
}

/* IMMERSIVE LIGHTBOX / PORTFOLIO MODAL */
.project-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.project-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.9);
}

.modal-content-wrapper {
  position: relative;
  background: #09090b;
  width: 90%;
  max-width: 1000px;
  height: 80vh;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  z-index: 2001;
  overflow-y: auto;
  transform: scale(0.97) translateY(10px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.project-modal.active .modal-content-wrapper {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 2002;
}

.modal-close-btn:hover {
  background: var(--text-primary);
  color: var(--bg-color);
  border-color: var(--text-primary);
}

.modal-hero-visual {
  width: 100%;
  height: 300px;
  background: #08080a;
  position: relative;
}

.modal-body {
  padding: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  flex-grow: 1;
}

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

.modal-project-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.15;
}

.modal-project-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.modal-gallery-showcase {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.modal-gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: #08080a;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.modal-meta-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid var(--border-color);
  padding-left: 32px;
}

.meta-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: 600;
}

.meta-value {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

/* ==========================================================================
   YETTY SUBPAGE (ABOUT)
   ========================================================================== */
.about-container {
  padding: 120px 8%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  background: transparent;
  margin-top: 0;
  margin-bottom: 0;
}

.about-intro-tag {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-primary);
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Visuals & Timeline */
.about-visual-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-portrait-img {
  width: 400px;
  max-width: 100%;
  height: auto;
  opacity: 0.9;
  transition: var(--transition-smooth);
  z-index: 2;
}

.about-portrait-img:hover {
  opacity: 1;
  transform: scale(1.05);
}



.about-bird-swarm {
  width: 100%;
  max-width: 420px;
  height: auto;
  opacity: 0.95;
  transition: var(--transition-smooth);
}

.about-bird-swarm:hover {
  transform: translateY(-5px) scale(1.01);
}

/* Process steps / Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: -24px;
  width: 1px;
  background: var(--border-color);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  color: var(--text-secondary);
  flex-shrink: 0;
  z-index: 2;
}

.timeline-content {
  padding-top: 6px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   FAQ SUBPAGE & ACCORDION
   ========================================================================== */
.faq-container {
  padding: 140px 8%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  clip-path: polygon(0 70px, 100% 0, 100% 100%, 0 calc(100% - 70px));
  margin-top: -40px;
  margin-bottom: 40px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  padding: 16px 0;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.03em;
}

.faq-icon {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  opacity: 0;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 8px 0 16px 0;
}

/* Active states */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--text-primary);
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Large enough for paragraph */
  opacity: 1;
}

/* ==========================================================================
   KONTAKT SUBPAGE
   ========================================================================== */
.contact-container {
  padding: 140px 8% 140px 8%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: none;
  clip-path: none;
  margin-top: 0;
  margin-bottom: 0;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 24px;
}

.contact-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-secondary);
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 14px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

a.detail-value:hover {
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* Social links grid */
.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--text-primary);
  color: var(--bg-color);
  border-color: var(--text-primary);
  transform: none;
}

/* Form Styles (Simplified) */
.contact-form-side {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.form-group {
  position: relative;
  margin-bottom: 28px;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition-fast);
  outline: none;
}

.form-label {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
  transition: var(--transition-fast);
}

/* Floating Label Behavior */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -10px;
  font-size: 10px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-input:focus {
  border-bottom-color: var(--text-primary);
  box-shadow: none;
}

textarea.form-input {
  min-height: 80px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  box-shadow: none;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  transform: none;
  background: var(--text-primary);
  color: var(--bg-color);
  border-color: var(--text-primary);
}

/* Success Animation Panel */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #09090b;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.form-success-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 20px;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.form-success-overlay.active .success-icon-circle {
  transform: scale(1);
}

.success-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 8px;
}

.success-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 280px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  border-top: 1px solid var(--border-color);
  padding: 32px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

footer .footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  text-decoration: none;
}

footer .footer-logo span {
  opacity: 0.5;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Up to Desktop Wide (1200px) */
@media (max-width: 1200px) {
  .flip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .flip-card-container {
    height: 480px;
  }
}

/* Up to Tablet (992px) */
@media (max-width: 992px) {
  header {
    padding: 24px 5%;
  }
  header.scrolled {
    padding: 16px 5%;
  }
  
  .hero {
    padding: 160px 5% 80px 5%;
    text-align: center;
    align-items: center;
    min-height: 80vh;
  }
  .hero-text-side {
    align-items: center;
  }
  .hero-animation-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .portfolio-home, .arbeit-container, .about-container, .faq-container, .testimonials-container, .contact-container, footer {
    padding-left: 5%;
    padding-right: 5%;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual-side {
    order: -1;
  }
  .about-image-wrapper {
    max-width: 380px;
    margin: 0 auto;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .modal-body {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px;
  }
  .modal-meta-sidebar {
    border-left: none;
    border-top: 1px solid var(--border-color);
    padding-left: 0;
    padding-top: 24px;
  }
}

/* Up to Mobile Large (768px) */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 280px;
    height: 100vh;
    background: #08080a;
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
    border: none;
    border-left: 1px solid var(--border-color);
    padding: 30px;
    gap: 16px;
    transition: var(--transition-smooth);
    z-index: 100;
  }
  
  nav.open {
    right: 0;
  }
  
  .nav-indicator {
    display: none;
  }
  
  .nav-link {
    font-size: 18px;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  
  .flip-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-form-side {
    padding: 24px;
  }
  
  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  /* Mobile angled section adjustments */
  .arbeit-container {
    padding: 90px 5% 90px 5% !important;
    clip-path: polygon(0 0, 100% 30px, 100% 100%, 0 calc(100% - 30px)) !important;
    margin-top: -20px !important;
    margin-bottom: 20px !important;
  }
  .about-container {
    padding: 100px 5% 100px 5% !important;
    clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%) !important;
    margin-top: -20px !important;
    margin-bottom: 20px !important;
  }
  .contact-container {
    padding: 90px 5% 90px 5% !important;
    clip-path: polygon(0 0, 100% 30px, 100% 100%, 0 100%) !important;
    margin-top: -30px !important;
    margin-bottom: 0 !important;
  }
  
  /* Mobile logo scaling overrides */
  .logo-img {
    height: 50px !important;
  }
  header.scrolled .logo-img {
    height: 38px !important;
  }
  .logo-text {
    font-size: 13px !important;
    margin-left: 8px !important;
  }
}

/* ==========================================================================
   ADMIN CMS EDITOR MODE STYLES
   ========================================================================== */
[contenteditable="true"]:hover {
  outline: 1px dashed rgba(255, 255, 255, 0.25) !important;
  cursor: text;
}
[contenteditable="true"]:focus {
  outline: 1px solid #ffffff !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.admin-badge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0e0e10;
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  font-size: 12px;
  font-family: var(--font-body);
}

.admin-badge-title {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.admin-badge-btn {
  background: var(--text-primary);
  color: #121215;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  font-size: 11px;
  transition: var(--transition-fast);
}

.admin-badge-btn:hover {
  background: #e0e0e0;
}

.admin-badge-btn.cancel-btn {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.admin-badge-btn.cancel-btn:hover {
  border-color: #ffffff;
  color: #ffffff;
}

/* Card actions overlay */
.card-admin-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.admin-card-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(14, 14, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: var(--transition-fast);
}

.admin-card-btn:hover {
  background: #ffffff;
  color: #121215;
  border-color: #ffffff;
}

.admin-card-btn.delete-card-btn:hover {
  background: #ff3344;
  color: #ffffff;
  border-color: #ff3344;
}

/* Add grid triggers */
.admin-add-card-wrapper {
  grid-column: span 3;
  display: flex;
  justify-content: center;
  padding: 32px 0;
  width: 100%;
}

.admin-add-btn {
  background: transparent;
  color: var(--text-secondary);
  border: 1px dashed var(--border-color);
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-add-btn:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255,255,255,0.02);
}

/* Admin modals for logins and configurations */
.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.admin-modal.active {
  opacity: 1;
  pointer-events: all;
}

.admin-modal-content {
  background: #0e0e10;
  border: 1px solid var(--border-color);
  width: 90%;
  max-width: 500px;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  font-family: var(--font-body);
}

.admin-modal-title {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.admin-modal-input {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.admin-modal-input:focus {
  outline: 1px solid #ffffff;
}

.admin-modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.admin-modal-btn {
  background: #ffffff;
  color: #121215;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.admin-modal-btn:hover {
  background: #e0e0e0;
}

.admin-modal-btn.secondary-btn {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.admin-modal-btn.secondary-btn:hover {
  border-color: #ffffff;
  color: #ffffff;
}

/* FAQ Admin Layout spacing */
.faq-admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.faq-item-admin-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.faq-delete-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 8px;
  transition: var(--transition-fast);
  margin-left: 12px;
}

.faq-delete-btn:hover {
  color: #ff3344;
}

.admin-add-faq-btn {
  background: transparent;
  border: 1px dashed var(--border-color);
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  transition: var(--transition-fast);
  width: 100%;
  margin-top: 16px;
}

.admin-add-faq-btn:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255,255,255,0.02);
}

/* ==========================================================================
   TESTIMONIALS (KUNDENSTIMMEN) SECTION
   ========================================================================== */
.testimonials-container {
  position: relative;
  z-index: 2;
  padding: 70px 8%;
  text-align: left;
}

.testimonials-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 40px;
  margin-top: 48px;
}

.testimonial-item {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 26.667px);
  box-sizing: border-box;
}

.carousel-btn:hover {
  background: var(--text-secondary) !important;
  color: #0e0e10 !important;
  border-color: var(--text-secondary) !important;
  transform: scale(1.05);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.testimonial-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: none; /* override uppercase */
  letter-spacing: normal;
  color: var(--text-primary);
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-author::before {
  content: "—";
  color: var(--text-muted);
}

/* Admin controls for Testimonials */
.testimonials-admin-header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.admin-add-testimonial-btn {
  background: transparent;
  border: 1px dashed var(--border-color);
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  transition: var(--transition-fast);
}

.admin-add-testimonial-btn:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255,255,255,0.02);
}

.testimonial-delete-btn {
  position: absolute;
  right: -8px;
  top: -8px;
  background: rgba(235, 87, 87, 0.15);
  color: #eb5757;
  border: none;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
  z-index: 5;
  transition: var(--transition-fast);
}

.testimonial-delete-btn:hover {
  background: #eb5757;
  color: #ffffff;
}

/* Responsive grid adjustments */
@media (max-width: 1024px) {
  .testimonial-item {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .testimonials-track {
    gap: 24px;
  }
  .testimonial-item {
    flex: 0 0 100%;
  }
  .testimonials-container {
    padding: 50px 5%;
  }
}

/* Testimonials section animated background container */
.testimonials-birds-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

