/*
Theme Name: Flachsfaden
Template: astra
Theme URI: https://flachsfaden.de
Author: Dietja Lumpe
Description: Ein minimalistisches, edles Astra Child-Theme für die Handweberei Flachsfaden inkl. Design-Showcase.
Version: 1.1.2
License: All rights reserved
Text Domain: flachsfaden
*/

/* =========================================
   GLOBAL RESET & STRUCTURE
   ========================================= */
* { box-sizing: border-box; }

.theme-container {
  width: 100%;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Base structural classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.text-center { text-align: center; }
.italic { font-style: italic; }

/* Product Grid Base */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card { text-align: center; }
.product-image { width: 100%; object-fit: cover; aspect-ratio: 4/5; margin-bottom: 1rem; transition: transform 0.3s ease; }
.product-card:hover .product-image { transform: scale(1.02); }

/* =========================================
   OVERVIEW PAGE (ENTRY POINT)
   ========================================= */
.overview-page {
  background-color: #fcfcfc; font-family: 'Inter', sans-serif; color: #333;
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 1.5rem; overflow-y: auto;
}
.overview-container { max-width: 1000px; width: 100%; margin: auto; }
.overview-header { margin-bottom: 3rem; }
.overview-logo { max-height: 50px; margin-bottom: 2rem; }
.overview-header h1 { font-size: 2.8rem; margin-bottom: 1rem; letter-spacing: -1px; }
.overview-header p { font-size: 1.1rem; color: #666; max-width: 700px; margin: 0 auto; line-height: 1.6; }

.overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

.overview-card {
  text-decoration: none; color: inherit; background: #fff; border-radius: 12px; padding: 1.2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.overview-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.overview-card h3 { font-size: 1rem; margin-top: 0.5rem; margin-bottom: 0.5rem; font-weight: 600; }
.overview-card p { font-size: 0.8rem; color: #777; line-height: 1.4; margin: 0; }

.card-visual {
  height: 120px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: bold; overflow: hidden; position: relative;
}

/* Conceptual Thumbnail Styling */
.card-1 .card-visual { background: #faf9f6; color: #2c2c2c; font-family: 'Playfair Display', serif; border: 1px solid #eee; }
.card-2 .card-visual { background: #ece5d8; color: #3d342b; font-family: 'Georgia', serif; font-style: italic; }
.card-3 .card-visual { background: #f5f7f8; color: #1a1a1a; letter-spacing: -2px; }
.card-4 .card-visual { background: #faf9f6; color: #2c2c2c; font-family: 'Playfair Display', serif; border: 1px solid #ddd; box-shadow: 0 10px 20px rgba(0,0,0,0.1); transform: scale(1.03); }
.card-5 .card-visual { background: linear-gradient(135deg, #e0e5ec, #f0f4f8); }
.card-5 .card-visual::after { content: '05'; position: absolute; background: rgba(255,255,255,0.7); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); padding: 10px 20px; border-radius: 8px; color: #2c2c2c; border: 1px solid rgba(255,255,255,0.5); }
.card-6 .card-visual { background: #faf9f6; color: #2c2c2c; border: 5px solid #333; border-radius: 20px; width: 60px; height: 100px; margin: 10px auto; font-size: 1.5rem; }
.card-7 .card-visual { background: #faf9f6; color: #2c2c2c; border: 5px solid #333; border-radius: 20px; width: 60px; height: 100px; margin: 10px auto; font-size: 1.5rem; box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.card-8 .card-visual { background: #030305; color: transparent; -webkit-text-stroke: 1px #00f0ff; text-shadow: 0 0 15px rgba(0,240,255,0.5); font-family: 'Courier New', monospace; border: 1px solid rgba(0,255,255,0.3); }

@media (max-width: 768px) {
  .overview-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .overview-header h1 { font-size: 2rem; }
  .overview-header p { font-size: 1rem; }
}

/* =========================================
   COMMON STRUCTURAL LAYOUTS
   ========================================= */
.hero {
  position: relative; height: 75vh; min-height: 500px; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; margin-bottom: 4rem; overflow: hidden;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 2rem; max-width: 800px; }
.hero-badge { display: inline-block; background: rgba(0,0,0,0.5); padding: 5px 15px; border-radius: 20px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.hero-content h1 { font-size: 3rem; margin-bottom: 1.5rem; color: #fff; }

/* Multi-image layouts */
.hero-floating-img { position: absolute; bottom: -50px; right: 10%; width: 250px; z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.hero-floating-img img { width: 100%; height: auto; border: 10px solid #fff; }

.vita-image-collage { position: relative; width: 100%; padding-bottom: 20px; }
.vita-image-collage .img-main { width: 80%; object-fit: cover; aspect-ratio: 3/4; z-index: 1; position: relative; }
.vita-image-collage .img-secondary { position: absolute; width: 50%; bottom: 0; right: 0; z-index: 2; border: 8px solid #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.section-textiles-intro {  color: #fff; background-size: cover; background-position: center; background-attachment: fixed; position: relative; }
.section-textiles-intro::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.intro-box { position: relative; z-index: 2; max-width: 600px; padding: 3rem; background: rgba(255,255,255,0.9); color: #333; margin-left: auto; }

/* Buttons */
.btn { display: inline-block; padding: 1rem 2.5rem; text-decoration: none; text-transform: uppercase; letter-spacing: 0.1em; transition: all 0.3s; font-size: 0.85rem; font-weight: 600; cursor: pointer; }


/* =========================================
   DESIGN 1: THEME MINIMAL (The Original Setup)
   ========================================= */
.theme-minimal {
  font-family: 'Inter', sans-serif;
  color: #2c2c2c;
  background-color: #faf9f6;
}
.theme-minimal .variant-header { background-color: #faf9f6; } /* Match bg to stay clean */
.theme-minimal h1, .theme-minimal h2, .theme-minimal h3 { font-family: 'Playfair Display', serif; font-weight: 400; color: #2c2c2c; }
.theme-minimal .section-light { background-color: #ffffff; }
.theme-minimal .btn { background: #2c2c2c; color: #fff; border: 1px solid #2c2c2c; }
.theme-minimal .btn:hover { background: #fff; color: #2c2c2c; }
.theme-minimal .hero-overlay { background: rgba(255, 255, 255, 0.7); /* White wash so dark text is readable */ }
.theme-minimal .hero-content h1 { color: #2c2c2c; }
.theme-minimal .hero-badge { background: rgba(0,0,0,0.1); color: #2c2c2c; }
.theme-minimal .intro-box h2 { margin-bottom: 1rem; }


/* =========================================
   DESIGN 2: THEME CLASSIC (Hannes Style)
   Traditional, rustic, warm, serifs
   ========================================= */
.theme-classic {
  font-family: 'Georgia', serif;
  color: #3d342b;
  background-color: #ece5d8;
}
.theme-classic .variant-header { background-color: #f6f3ed; border-bottom: 1px solid #d4cbb8; }
.theme-classic h1, .theme-classic h2, .theme-classic h3 { font-family: 'Georgia', serif; font-style: italic; color: #3d342b; border-bottom: 1px solid rgba(61,52,43,0.1); padding-bottom: 10px; margin-bottom: 20px;}
.theme-classic .hero-content h1 { color: #fff; border: none; }
.theme-classic .section-light { background-color: #f6f3ed; border-top: 1px solid #d4cbb8; border-bottom: 1px solid #d4cbb8; }
.theme-classic .btn { background: #6b5a45; color: #ece5d8; border-radius: 3px; }
.theme-classic .btn:hover { background: #3d342b; }
.theme-classic .hero-badge { background: #6b5a45; color: #fff; font-family: 'Arial', sans-serif; }
.theme-classic .hero-overlay { background: rgba(61,52,43,0.55); /* Dark earthy overlay so white text pops */ }
.theme-classic .product-image { border: 5px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }


/* =========================================
   DESIGN 3: THEME SCANDI (Linum Style)
   Modern, airy, structural, geometric sans
   ========================================= */
.theme-scandi {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background-color: #f5f7f8;
}
.theme-scandi .variant-header { background-color: #ffffff; border-bottom: 1px solid #e1e8ed; }
.theme-scandi h1, .theme-scandi h2, .theme-scandi h3 { font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: -1px; color: #1a1a1a; text-transform: uppercase; }
.theme-scandi .hero-content h1 { color: #fff; }
.theme-scandi .section-light { background-color: #ffffff; }
.theme-scandi .btn { background: transparent; color: #2c3e50; border: 2px solid #2c3e50; border-radius: 0; }
.theme-scandi .btn:hover { background: #2c3e50; color: #fff; }
.theme-scandi .hero-badge { background: #2c3e50; color: #fff; border-radius: 0; }
.theme-scandi .hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3)); /* Dark gradient */ }
.theme-scandi .intro-box { border-radius: 0; box-shadow: 20px 20px 0px #2c3e50; }
.theme-scandi .vita-image-collage .img-secondary { border-radius: 50%; border: none; }

/* =========================================
   DESIGN 4: THEME MINIMAL + DYNAMIC
   Based on Theme Minimal but with high-end, subtle image effects
   ========================================= */
.theme-minimal-dynamic {
  font-family: 'Inter', sans-serif;
  color: #2c2c2c;
  background-color: #faf9f6;
}
.theme-minimal-dynamic .variant-header { background-color: #faf9f6; } /* Match bg to stay clean */
.theme-minimal-dynamic h1, .theme-minimal-dynamic h2, .theme-minimal-dynamic h3 { font-family: 'Playfair Display', serif; font-weight: 400; color: #2c2c2c; }
.theme-minimal-dynamic .section-light { background-color: #ffffff; }

/* Dynamic Button Lift */
.theme-minimal-dynamic .btn { 
  background: #2c2c2c; color: #fff; border: 1px solid #2c2c2c; 
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.theme-minimal-dynamic .btn:hover { 
  background: transparent; color: #2c2c2c;
  transform: translateY(-4px); 
  box-shadow: 0 10px 20px rgba(0,0,0,0.06); 
}

/* Base Overlays */
.theme-minimal-dynamic .hero-overlay { background: rgba(255, 255, 255, 0.65); }
.theme-minimal-dynamic .hero-content h1 { color: #2c2c2c; }
.theme-minimal-dynamic .hero-badge { background: rgba(0,0,0,0.08); color: #2c2c2c; }
.theme-minimal-dynamic .intro-box h2 { margin-bottom: 1rem; }

/* =========================================
   SUBTLE CSS ANIMATIONS & PARALLAX FOR DESIGN 4
   ========================================= */

/* Hero: Smooth Parallax fixed background */
.theme-minimal-dynamic .hero,
.theme-minimal-dynamic .section-textiles-intro {
  background-attachment: fixed !important;
  background-position: center center;
}

/* Floating Image: Smooth vertical float */
@keyframes elegantFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}
.theme-minimal-dynamic .hero-floating-img {
  animation: elegantFloat 7s ease-in-out infinite;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2) !important;
}

/* Vita Collage Secondary Image Float */
.theme-minimal-dynamic .vita-image-collage .img-secondary {
  animation: elegantFloat 9s ease-in-out infinite alternate;
  animation-delay: 1s;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

/* Product Cards: High-end smooth hover zoom */
.theme-minimal-dynamic .product-card {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.theme-minimal-dynamic .product-image {
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform; /* hardware acceleration */
}
.theme-minimal-dynamic .product-card:hover {
  transform: translateY(-8px);
}
.theme-minimal-dynamic .product-card:hover .product-image {
  transform: scale(1.06);
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

/* =========================================
   DESIGN 5: THEME MINIMAL NO OVERLAY (BILD PUR / GLASSMORPHISM)
   ========================================= */
.theme-minimal-no-overlay {
  font-family: 'Inter', sans-serif;
  color: #2c2c2c;
  background-color: #faf9f6;
}
.theme-minimal-no-overlay .variant-header { background-color: #faf9f6; }
.theme-minimal-no-overlay h1, .theme-minimal-no-overlay h2, .theme-minimal-no-overlay h3 { font-family: 'Playfair Display', serif; font-weight: 400; color: #2c2c2c; }
.theme-minimal-no-overlay .section-light { background-color: #ffffff; }
.theme-minimal-no-overlay .btn { background: #2c2c2c; color: #fff; border: 1px solid #2c2c2c; transition: all 0.3s; }
.theme-minimal-no-overlay .btn:hover { background: #fff; color: #2c2c2c; }

/* 100% Background Visibility */
.theme-minimal-no-overlay .hero-overlay { background: transparent; }

/* Elegant Glassmorphism Text Box */
.theme-minimal-no-overlay .hero-content {
  background: rgba(255, 255, 255, 0.85); /* Frosty white */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 3rem 4rem;
  border-radius: 8px; /* Slightly softer edges */
  box-shadow: 0 25px 50px rgba(0,0,0,0.08); /* Deep soft shadow */
  max-width: 650px;
  border: 1px solid rgba(255, 255, 255, 0.4); /* Glass shine edge */
}
.theme-minimal-no-overlay .hero-content h1 { color: #2c2c2c; margin-bottom: 1rem; }
.theme-minimal-no-overlay .hero-badge { background: rgba(0,0,0,0.05); color: #2c2c2c; border: 1px solid rgba(0,0,0,0.1); }


/* =========================================
   DESIGN 6: THEME MINIMAL MOBILE OPTIMIZED
   Based on Design 5, strongly optimized for Mobile UX
   ========================================= */
.theme-minimal-mobile {
  font-family: 'Inter', sans-serif;
  color: #2c2c2c;
  background-color: #faf9f6;
}
.theme-minimal-mobile .variant-header { background-color: #faf9f6; }
.theme-minimal-mobile h1, .theme-minimal-mobile h2, .theme-minimal-mobile h3 { font-family: 'Playfair Display', serif; font-weight: 400; color: #2c2c2c; }
.theme-minimal-mobile .section-light { background-color: #ffffff; }
.theme-minimal-mobile .btn { background: #2c2c2c; color: #fff; border: 1px solid #2c2c2c; }
.theme-minimal-mobile .hero-overlay { background: transparent; }
.theme-minimal-mobile .hero-content {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.theme-minimal-mobile .hero-content h1 { color: #2c2c2c; }
.theme-minimal-mobile .hero-badge { background: rgba(0,0,0,0.05); color: #2c2c2c; }

/* 📱 HIGHLY OPTIMIZED MOBILE CSS FOR DESIGN 6 */
@media (max-width: 768px) {
  /* Tighter global padding */
  .theme-minimal-mobile .section { padding: 3rem 1.5rem !important; }
  .theme-minimal-mobile .container { padding: 0 !important; }

  /* Hero adjustments for iPhone */
  .theme-minimal-mobile .hero {
    height: 85vh; /* Taller on mobile to allow image breathing room */
    align-items: flex-end; /* Push text box to bottom */
    padding: 1.5rem;
    background-position: center 20%; /* Shift focus of background up */
  }
  .theme-minimal-mobile .hero-content {
    padding: 2.5rem 1.5rem;
    width: 100%;
    margin-bottom: 2rem; 
    border-radius: 12px;
  }
  .theme-minimal-mobile .hero-content h1 { font-size: 2.2rem; line-height: 1.1; }
  
  /* Hide overlapping floats on mobile */
  .theme-minimal-mobile .hero-floating-img { display: none; }
  
  /* Optimize "Über mich" Collage for vertical scroll */
  .theme-minimal-mobile .vita-image-collage { padding-bottom: 2rem; }
  .theme-minimal-mobile .vita-image-collage .img-secondary { 
    position: relative; 
    top: auto; right: auto; 
    width: 65%; 
    margin: -40px auto 0 auto; /* overlap center */
    display: block;
    border-width: 3px; 
  }

  /* Optimize Product Grid */
  .theme-minimal-mobile .product-card { margin-bottom: 1.5rem; }
  .theme-minimal-mobile .product-image { aspect-ratio: 1/1; /* Square images on mobile saves vertical real estate */ border-radius: 8px; }

  /* Variant Header Logo */
  .theme-minimal-mobile .variant-header { padding: 1.5rem 0; }
  .theme-minimal-mobile .variant-logo { max-height: 45px; }
}

/* =========================================
   DESIGN 7: THEME MINIMAL MOBILE DYNAMIC
   Combines Design 6 (Mobile) + Design 4 (CSS Animations)
   ========================================= */
.theme-minimal-mobile-dynamic {
  font-family: 'Inter', sans-serif;  color: #2c2c2c;  background-color: #faf9f6;
}
.theme-minimal-mobile-dynamic .variant-header { background-color: #faf9f6; }
.theme-minimal-mobile-dynamic h1, .theme-minimal-mobile-dynamic h2, .theme-minimal-mobile-dynamic h3 { font-family: 'Playfair Display', serif; font-weight: 400; color: #2c2c2c; }
.theme-minimal-mobile-dynamic .section-light { background-color: #ffffff; }

.theme-minimal-mobile-dynamic .btn { background: #2c2c2c; color: #fff; border: 1px solid #2c2c2c; transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); }
.theme-minimal-mobile-dynamic .btn:hover { background: transparent; color: #2c2c2c; transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.06); }
.theme-minimal-mobile-dynamic .hero-overlay { background: transparent; }
.theme-minimal-mobile-dynamic .hero-content { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); padding: 3rem; border-radius: 8px; box-shadow: 0 25px 50px rgba(0,0,0,0.08); border: 1px solid rgba(255, 255, 255, 0.4); }
.theme-minimal-mobile-dynamic .hero-content h1 { color: #2c2c2c; }
.theme-minimal-mobile-dynamic .hero-badge { background: rgba(0,0,0,0.05); color: #2c2c2c; }

/* Subtle Animations (from Design 4) */
.theme-minimal-mobile-dynamic .hero, .theme-minimal-mobile-dynamic .section-textiles-intro { background-attachment: fixed !important; background-position: center center; }
.theme-minimal-mobile-dynamic .product-card { transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.theme-minimal-mobile-dynamic .product-image { transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); will-change: transform; }
.theme-minimal-mobile-dynamic .product-card:hover { transform: translateY(-8px); }
.theme-minimal-mobile-dynamic .product-card:hover .product-image { transform: scale(1.06); box-shadow: 0 20px 30px rgba(0,0,0,0.1); }

@media (max-width: 768px) {
  .theme-minimal-mobile-dynamic .section { padding: 3rem 1.5rem !important; }
  .theme-minimal-mobile-dynamic .container { padding: 0 !important; }
  .theme-minimal-mobile-dynamic .hero { height: 85vh; align-items: flex-end; padding: 1.5rem; background-position: center 20%; background-attachment: scroll !important; }
  .theme-minimal-mobile-dynamic .hero-content { padding: 2.5rem 1.5rem; width: 100%; margin-bottom: 2rem; border-radius: 12px; }
  .theme-minimal-mobile-dynamic .hero-content h1 { font-size: 2.2rem; line-height: 1.1; }
  .theme-minimal-mobile-dynamic .hero-floating-img { display: none; }
  .theme-minimal-mobile-dynamic .vita-image-collage { padding-bottom: 2rem; }
  .theme-minimal-mobile-dynamic .vita-image-collage .img-secondary { position: relative; top: auto; right: auto; width: 65%; margin: -40px auto 0 auto; display: block; border-width: 3px; animation: elegantFloat 9s ease-in-out infinite alternate; animation-delay: 1s; box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;}
  .theme-minimal-mobile-dynamic .product-card { margin-bottom: 1.5rem; }
  .theme-minimal-mobile-dynamic .product-image { aspect-ratio: 1/1; border-radius: 8px; }
  .theme-minimal-mobile-dynamic .variant-header { padding: 1.5rem 0; }
  .theme-minimal-mobile-dynamic .variant-logo { max-height: 45px; }
}

/* =========================================
   DESIGN 8: THEME FUTURE (YEAR 2050 AESTHETIC)
   Unorthodox, dark mode, neo-brutalism, glowing neon
   ========================================= */
.theme-future { font-family: 'Courier New', Courier, monospace; color: #d1d5db; background-color: #030305; }
.theme-future .variant-header { background-color: #030305; border-bottom: 1px solid rgba(0,255,255,0.1); }
.theme-future .variant-logo { filter: invert(1) drop-shadow(0 0 10px rgba(0, 255, 255, 0.8)) brightness(2); }
.theme-future h1, .theme-future h2, .theme-future h3 { font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -2px; color: #ffffff; text-transform: uppercase; }

.theme-future .section-light { background-color: #0a0a0e; border-top: 1px solid rgba(0,255,255,0.05); }
.theme-future .section-dark { background-color: #030305; border-top: 1px solid rgba(0,255,255,0.05); }

.theme-future .btn { background: transparent; color: #00f0ff; border: 1px solid #00f0ff; box-shadow: 0 0 10px rgba(0,240,255,0.2), inset 0 0 10px rgba(0,240,255,0.2); border-radius: 0; text-transform: uppercase; letter-spacing: 2px; font-family: 'Courier New', monospace; font-weight: bold; }
.theme-future .btn:hover { background: #00f0ff; color: #000; box-shadow: 0 0 30px rgba(0,240,255,0.6); }

/* Futuristic Hero */
.theme-future .hero { background-attachment: fixed; background-color: #00f0ff; background-blend-mode: luminosity; clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%); }
.theme-future .hero-overlay { background: linear-gradient(135deg, rgba(3,3,5,0.9), rgba(0,240,255,0.2)); }
.theme-future .hero-content { background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(0, 240, 255, 0.4); padding: 4rem; border-radius: 0; transform: rotate(-1deg); box-shadow: -15px 15px 0px rgba(0, 240, 255, 0.15); }
.theme-future .hero-content h1 { font-size: 4rem; color: transparent; -webkit-text-stroke: 1px #00f0ff; text-shadow: 0 0 20px rgba(0,240,255,0.4); margin-bottom: 2rem; }
.theme-future .hero-badge { background: #00f0ff; color: #000; font-weight: 900; letter-spacing: 3px; border-radius: 0; }

.theme-future .hero-floating-img { filter: grayscale(100%) contrast(1.5); mix-blend-mode: hard-light; border-radius: 0; border: 2px solid #00f0ff; box-shadow: 10px 10px 0px rgba(0,255,255,0.2); }

/* Hollow Neon Intro Box */
.theme-future .intro-box { background: transparent; border: 1px solid #ffffff; box-shadow: 10px 10px 0px rgba(255,255,255,0.2); border-radius: 0; color: #fff; }

/* Images Grayscale to Neon Color on Hover */
.theme-future .product-image { filter: grayscale(100%) contrast(1.2) brightness(0.8); transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); border-radius: 0; border: 1px solid rgba(255,255,255,0.1); }
.theme-future .product-card:hover .product-image { filter: grayscale(0%) contrast(1.2) sepia(50%) hue-rotate(180deg) saturate(300%); box-shadow: 0 0 40px rgba(0,240,255,0.4); transform: scale(1.05) rotate(1deg); border-color: #00f0ff; }
.theme-future .product-card:hover h3 { color: #00f0ff; text-shadow: 2px 0 0 red, -2px 0 0 blue; }

/* Collage */
.theme-future .vita-image-collage .img-secondary { border: 2px solid #00f0ff; border-radius: 0; mix-blend-mode: screen; filter: grayscale(100%) contrast(2); }


/* =========================================
   DESIGN 09: FEEDBACK FOKUS (EVOLUTION V7 + V3)
   ========================================= */
.theme-variant-09 {
  font-family: 'Inter', sans-serif;
  color: #333333; /* Softer than #2c2c2c */
  background-color: #fbfaf8; /* Slightly warmer, natural white */
}
.theme-variant-09 .variant-header { background-color: #fbfaf8; padding: 2rem 0; }
.theme-variant-09 .variant-logo { max-height: 50px; }
.theme-variant-09 h1, .theme-variant-09 h2, .theme-variant-09 h3, .theme-variant-09 .hero-content h1 { font-family: 'Playfair Display', serif; font-weight: 400; color: #1a1a1a; letter-spacing: -0.5px; }

/* Hamburger Menu Integration */
.theme-variant-09 .variant-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251, 250, 248, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.03); padding-top: 1.5rem; padding-bottom: 1.5rem; transition: all 0.3s;
}

.theme-variant-09 .hamburger-btn {
  position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
  background: transparent; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 6px; align-items: flex-end; padding: 10px; z-index: 100;
}
.theme-variant-09 .hamburger-btn .dot { width: 8px; height: 8px; background-color: #1c3651; border-radius: 50%; display: block; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); margin-bottom: 2px; }
.theme-variant-09 .hamburger-btn .line { width: 30px; height: 2px; background-color: #1c3651; display: block; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
.theme-variant-09 .hamburger-btn:hover .line { width: 20px; }
.theme-variant-09 .hamburger-btn:hover .dot { transform: scale(1.3); }

/* Hamburger Active Toggle */
.theme-variant-09 .hamburger-btn.is-active .line:nth-child(2) { transform: rotate(45deg) translate(0px, 4px); width: 30px; }
.theme-variant-09 .hamburger-btn.is-active .line:nth-child(3) { transform: rotate(-45deg) translate(7px, -11px); width: 30px; }
.theme-variant-09 .hamburger-btn.is-active .dot { opacity: 0; transform: scale(0); }

/* Fullscreen Nav Overlay */
.v09-mobile-nav {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  background: rgba(251, 250, 248, 0.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  z-index: 99; display: flex; flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none; transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(-20px);
}
.v09-mobile-nav.is-active { opacity: 1; pointer-events: all; transform: translateY(0); }
.v09-mobile-nav .nav-content { display: flex; flex-direction: column; gap: 2.5rem; text-align: center; }
.v09-mobile-nav a { text-decoration: none; color: #1c3651; font-family: 'Playfair Display', serif; font-size: 2.5rem; transition: color 0.3s, transform 0.3s; }
.v09-mobile-nav a:hover { color: #888; transform: translateY(-3px); }
.v09-mobile-nav a.btn { font-family: 'Inter', sans-serif; font-size: 1rem; color: #fff; background: #1c3651; border: 1px solid #1c3651; padding: 1rem 3rem; text-transform: uppercase; letter-spacing: 2px; }
.v09-mobile-nav a.btn:hover { background: transparent; color: #1c3651; }

/* Hero */
.theme-variant-09 .hero { height: 85vh; margin-bottom: 5rem; }
@media (min-width: 1025px) { .theme-variant-09 .hero { background-attachment: fixed !important; } }
.theme-variant-09 .hero-overlay { background: transparent; backdrop-filter: none; }
.theme-variant-09 .hero-content { background: rgba(255, 255, 255, 0.95); padding: 3.5rem 4rem; border-radius: 4px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.theme-variant-09 .hero-floating-img { display: block; filter: brightness(1.05); }

/* Typography & Buttons */
.theme-variant-09 .section-light { background-color: #ffffff; }
.theme-variant-09 a.btn { background-color: #1c3651 !important; color: #ffffff !important; border: 1px solid #1c3651 !important; border-radius: 3px; font-weight: 500; font-size: 0.8rem; letter-spacing: 1.5px; transition: all 0.4s; }
.theme-variant-09 a.btn:hover { background-color: #ffffff !important; color: #1c3651 !important; }

/* Über mich - Editorial Magazine Layout */
.theme-variant-09 .editorial-vita-container {
  display: grid; grid-template-columns: 1fr; gap: 4rem; padding: 4rem 1.5rem; max-width: 1400px; margin: 0 auto;
}
.theme-variant-09 .editorial-col-img-main img { width: 100%; height: auto; border-radius: 4px; box-shadow: 0 15px 40px rgba(0,0,0,0.06); object-fit: cover; }
.theme-variant-09 .editorial-col-img-sec img { width: 100%; height: auto; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); filter: sepia(5%); }
.theme-variant-09 .editorial-col-text h2 { font-size: 2.6rem; line-height: 1.2; margin-bottom: 2rem; color: #1a1a1a; letter-spacing: -0.5px; }
.theme-variant-09 .editorial-col-text p { font-size: 1.05rem; line-height: 2.1; color: #4a4a4a; margin-bottom: 1.5rem; font-weight: 300; }
.theme-variant-09 .editorial-col-text .italic { font-family: 'Playfair Display', serif; color: #1c3651; font-weight: 400; font-style: italic; }

@media (min-width: 1024px) {
  .theme-variant-09 .editorial-vita-container {
    grid-template-columns: 5fr 1fr 5fr;
    grid-template-rows: auto auto auto;
    gap: 0; align-items: start; padding: 6rem 2rem 8rem 2rem;
  }
  .theme-variant-09 .editorial-col-img-main { grid-column: 1 / 3; grid-row: 1 / 3; padding-right: 3rem; }
  .theme-variant-09 .editorial-col-text { grid-column: 3 / 4; grid-row: 1 / 2; padding-top: 5rem; padding-left: 2rem; max-width: 600px; }
  .theme-variant-09 .editorial-col-img-sec { grid-column: 2 / 4; grid-row: 2 / 4; padding-left: 15%; margin-top: 8rem; z-index: 5; }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .theme-variant-09 .editorial-vita-container { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 4rem 2rem; }
  .theme-variant-09 .editorial-col-img-main { grid-column: 1 / 2; }
  .theme-variant-09 .editorial-col-text { grid-column: 2 / 3; padding-top: 2rem; }
  .theme-variant-09 .editorial-col-img-sec { grid-column: 1 / 3; width: 60%; margin: 2rem auto 0 auto; }
}

/* Textiles Intro */
.theme-variant-09 .section-textiles-intro { background-attachment: fixed !important; }
.theme-variant-09 .intro-box { background: rgba(251, 250, 248, 0.95); border-radius: 4px; border: 1px solid rgba(0,0,0,0.05); }

/* Kollektion / Products (No Zoom, Clickable, Clean) */
.theme-variant-09 .product-card { transition: none; text-align: left; }
.theme-variant-09 .product-image { transition: none; aspect-ratio: 4/5; border-radius: 3px; }
.theme-variant-09 .product-link { display: block; overflow: hidden; position: relative; }
.theme-variant-09 .product-link::after { content: ''; position: absolute; inset: 0; background: rgba(28, 54, 81, 0.0); transition: background 0.3s; }
.theme-variant-09 .product-link:hover::after { background: rgba(28, 54, 81, 0.05); }
.theme-variant-09 .product-title { font-size: 1.25rem; margin-top: 1rem; margin-bottom: 0.2rem; }
.theme-variant-09 .product-desc { font-size: 0.95rem; color: #555; margin-bottom: 0.5rem; }
.theme-variant-09 .product-meta { font-size: 0.8rem; color: #888; font-family: 'Inter', sans-serif; margin-top: 0.5rem; border-top: 1px solid #eee; padding-top: 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* News / Blog Section */
.theme-variant-09 .section-blog { background-color: #f6f5f3; padding-bottom: 7rem; }
.theme-variant-09 .blog-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media(min-width: 768px){ .theme-variant-09 .blog-grid { grid-template-columns: 1fr 1fr; } }
.theme-variant-09 .blog-card { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: transform 0.3s; }
.theme-variant-09 .blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.06); }
.theme-variant-09 .blog-img { height: 250px; background-size: cover; background-position: center; border-bottom: 1px solid #eee; }
.theme-variant-09 .blog-content { padding: 2.5rem; }
.theme-variant-09 .blog-meta { display: block; font-size: 0.75rem; color: #1c3651; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; font-weight: 600; }
.theme-variant-09 .blog-title { font-size: 1.4rem; margin-bottom: 1rem; }
.theme-variant-09 .blog-content p { color: #555; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.theme-variant-09 .blog-link { color: #1c3651; text-decoration: none; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; display: inline-flex; align-items: center; }
.theme-variant-09 .blog-link:hover .arrow { transform: translateX(5px); }
.theme-variant-09 .arrow { transition: transform 0.3s; margin-left: 8px; }

/* Mobile Tweaks */
@media (max-width: 1024px) {
  .theme-variant-09 .section-textiles-intro { background-attachment: scroll !important; }
}

@media (max-width: 768px) {
  .theme-variant-09 .hero { height: auto; min-height: 80vh; align-items: flex-end; padding: 2rem 0; background-attachment: scroll !important; }
  .theme-variant-09 .hero-content { padding: 2rem 1.5rem; width: 95%; margin: 0 auto; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
  .theme-variant-09 .hero-content h1 { font-size: 2rem !important; }
  .theme-variant-09 .hero-floating-img { display: none !important; }
  
  .theme-variant-09 .editorial-vita-container { padding: 3rem 1.5rem; gap: 3rem; }
  .theme-variant-09 .editorial-col-text { padding: 0; }
  .theme-variant-09 .editorial-col-text h2 { font-size: 2.2rem; }
  
  .theme-variant-09 .blog-content { padding: 1.5rem; }
  .theme-variant-09 .hamburger-btn { right: 1rem; }
  
  .theme-variant-10 .v10-category-card { padding: 1.5rem; }
  .theme-variant-10 .v10-cat-content h3 { font-size: 1.5rem; }
}

/* =========================================
   VARIANT 10: Inhalts-Fokus & Klassisches Menü
   ========================================= */

/* Override Hamburger toggle for 3 Lines */
.theme-variant-10 .hamburger-btn.is-active .line:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); width: 30px; }
.theme-variant-10 .hamburger-btn.is-active .line:nth-child(2) { opacity: 0; }
.theme-variant-10 .hamburger-btn.is-active .line:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); width: 30px; }

/* V10 Kollektionen: Großes, inhaltliches Design nach Feedback */
.theme-variant-10 .v10-category-grid { display: grid; gap: 4rem; padding-bottom: 5rem; }
.theme-variant-10 .v10-category-card { display: grid; grid-template-columns: 1fr; gap: 2rem; background: #fff; padding: 2rem; border-radius: 4px; box-shadow: 0 10px 40px rgba(0,0,0,0.03); transition: transform 0.4s; }
.theme-variant-10 .v10-category-card:hover { box-shadow: 0 15px 50px rgba(0,0,0,0.06); }
.theme-variant-10 .v10-cat-image-wrapper { position: relative; overflow: hidden; border-radius: 3px; }
.theme-variant-10 .v10-cat-image-wrapper img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.theme-variant-10 .v10-cat-badge { position: absolute; bottom: 20px; right: 20px; background: rgba(255,255,255,0.95); padding: 8px 18px; font-size: 0.8rem; font-weight: 600; color: #1c3651; border-radius: 30px; transition: all 0.4s; opacity: 0; transform: translateY(15px); }
.theme-variant-10 .v10-cat-image-wrapper:hover img { transform: scale(1.05); }
.theme-variant-10 .v10-cat-image-wrapper:hover .v10-cat-badge { opacity: 1; transform: translateY(0); }
.theme-variant-10 .v10-cat-content { align-self: center; }
.theme-variant-10 .v10-cat-content h3 { font-size: 2.2rem; margin-bottom: 1rem; color: #1a1a1a; font-family: 'Playfair Display', serif; }
.theme-variant-10 .v10-cat-content p { font-size: 1.05rem; line-height: 1.9; color: #555; font-weight: 300; }

@media (min-width: 900px) {
  .theme-variant-10 .v10-category-card { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 3rem; align-items: stretch; }
  .theme-variant-10 .v10-cat-image-wrapper img { height: 100%; min-height: 350px; }
  .theme-variant-10 .v10-category-card:nth-child(even) .v10-cat-image-wrapper { order: 2; }
  .theme-variant-10 .v10-category-card:nth-child(even) .v10-cat-content { order: 1; padding-right: 3rem; }
}

/* Hide Astra Default Components */
header#masthead { display: none !important; }
footer#colophon { display: none !important; }
.ast-container { max-width: 100% !important; padding: 0 !important; }

