/* ======================================== CSS VARIABLES ======================================== */ :root { --bg: #FAFBFC; --bg-white: #FFFFFF; --surface: #F1F5F9; --surface-hover: #E2E8F0; --text: #0F172A; --text2: #475569; --muted: #94A3B8; --border: #E2E8F0; --border-strong: #CBD5E1; --accent: #FF2D7D; --accent-hover: #E91E6B; --accent-light: #FFF0F5; --accent2: #2563EB; --accent2-hover: #1D4ED8; --accent2-light: #EFF6FF; --success: #10B981; --success-light: #D1FAE5; --warning: #F59E0B; --warning-light: #FEF3C7; --tier1: #10B981; --tier1-bg: #D1FAE5; --tier2: #6366F1; --tier2-bg: #E0E7FF; --font-display: 'Space Grotesk', system-ui, sans-serif; --font-body: 'Inter', system-ui, sans-serif; --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px; --radius-xl: 24px; --shadow-sm: 0 1px 2px rgba(0,0,0,0.04); --shadow-md: 0 4px 12px rgba(0,0,0,0.06); --shadow-lg: 0 12px 32px rgba(0,0,0,0.08); --shadow-xl: 0 24px 48px rgba(0,0,0,0.12); --max-width: 1200px; --header-height: 72px; --transition: 0.2s ease; /* Gradient Mesh Colors */ --gradient-pink: rgba(255, 45, 125, 0.15); --gradient-teal: rgba(0, 168, 150, 0.12); --grid-color: rgba(0, 0, 0, 0.015); } /* Dark Mode Variables */ [data-theme="dark"] { --bg: #0F172A; --bg-white: #1E293B; --surface: #334155; --surface-hover: #475569; --text: #F8FAFC; --text2: #CBD5E1; --muted: #64748B; --border: #334155; --border-strong: #475569; --accent-light: rgba(255, 45, 125, 0.15); --accent2-light: rgba(37, 99, 235, 0.15); --success-light: rgba(16, 185, 129, 0.15); --warning-light: rgba(245, 158, 11, 0.15); --tier1-bg: rgba(16, 185, 129, 0.15); --tier2-bg: rgba(99, 102, 241, 0.15); --shadow-sm: 0 1px 2px rgba(0,0,0,0.2); --shadow-md: 0 4px 12px rgba(0,0,0,0.3); --shadow-lg: 0 12px 32px rgba(0,0,0,0.4); --shadow-xl: 0 24px 48px rgba(0,0,0,0.5); --gradient-pink: rgba(255, 45, 125, 0.2); --gradient-teal: rgba(0, 168, 150, 0.15); --grid-color: rgba(255, 255, 255, 0.03); } /* Dark Mode Header */ [data-theme="dark"] .header { background: rgba(15, 23, 42, 0.95); border-bottom-color: var(--border); } [data-theme="dark"] .header.scrolled { background: rgba(15, 23, 42, 0.98); } [data-theme="dark"] .mobile-menu { background: var(--bg); } /* System Preference Default */ @media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) { --bg: #0F172A; --bg-white: #1E293B; --surface: #334155; --surface-hover: #475569; --text: #F8FAFC; --text2: #CBD5E1; --muted: #64748B; --border: #334155; --border-strong: #475569; --accent-light: rgba(255, 45, 125, 0.15); --accent2-light: rgba(37, 99, 235, 0.15); --success-light: rgba(16, 185, 129, 0.15); --warning-light: rgba(245, 158, 11, 0.15); --tier1-bg: rgba(16, 185, 129, 0.15); --tier2-bg: rgba(99, 102, 241, 0.15); --shadow-sm: 0 1px 2px rgba(0,0,0,0.2); --shadow-md: 0 4px 12px rgba(0,0,0,0.3); --shadow-lg: 0 12px 32px rgba(0,0,0,0.4); --shadow-xl: 0 24px 48px rgba(0,0,0,0.5); --gradient-pink: rgba(255, 45, 125, 0.2); --gradient-teal: rgba(0, 168, 150, 0.15); --grid-color: rgba(255, 255, 255, 0.03); } :root:not([data-theme="light"]) .header { background: rgba(15, 23, 42, 0.95); border-bottom-color: var(--border); } :root:not([data-theme="light"]) .header.scrolled { background: rgba(15, 23, 42, 0.98); } :root:not([data-theme="light"]) .mobile-menu { background: var(--bg); } } /* ======================================== RESET & BASE ======================================== */ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; font-size: 16px; } body { font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.6; color: var(--text); background-color: var(--bg); -webkit-font-smoothing: antialiased; } img { max-width: 100%; height: auto; display: block; } a { color: var(--accent2); text-decoration: none; transition: color var(--transition); } a:hover { color: var(--accent2-hover); } /* ======================================== TYPOGRAPHY ======================================== */ h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--text); } h1 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.02em; } h2 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.01em; } h3 { font-size: 1.125rem; font-weight: 600; } h4 { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text2); } /* ======================================== LAYOUT ======================================== */ .container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; } @media (max-width: 768px) { .container { padding: 0 16px; } } /* ======================================== BUTTONS ======================================== */ .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; font-family: var(--font-body); font-size: 15px; font-weight: 600; line-height: 1; border-radius: var(--radius-md); border: none; cursor: pointer; transition: all var(--transition); text-decoration: none; } .btn-primary { background: var(--accent); color: white; } .btn-primary:hover { background: var(--accent-hover); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); } .btn-outline { background: transparent; color: var(--text); border: 2px solid var(--border-strong); } .btn-outline:hover { background: var(--surface); border-color: var(--text2); color: var(--text); } .btn-linkedin { background: #0077B5; color: white; } .btn-linkedin:hover { background: #005885; color: white; } .btn-sm { padding: 8px 16px; font-size: 14px; } .btn-icon { width: 40px; height: 40px; padding: 0; border-radius: var(--radius-sm); } /* ======================================== HEADER ======================================== */ .header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-height); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: all var(--transition); } .header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); } .header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; } .logo { display: flex; align-items: center; gap: 8px; color: var(--text); font-family: var(--font-display); font-weight: 700; font-size: 18px; flex-shrink: 1; min-width: 0; overflow: hidden; } .logo:hover { color: var(--text); } .logo-icon { flex-shrink: 0; } .logo-img { height: 36px; width: auto; flex-shrink: 0; } .logo-text { display: block; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } @media (min-width: 640px) { .header-inner { gap: 32px; } .logo { gap: 12px; } .logo-text { font-size: 18px; } } .nav-desktop { display: none; align-items: center; gap: 32px; } .nav-desktop a { color: var(--text2); font-size: 15px; font-weight: 500; transition: color var(--transition); } .nav-desktop a:hover { color: var(--text); } @media (min-width: 768px) { .nav-desktop { display: flex; } } .header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; } /* Theme Toggle Button */ .theme-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); cursor: pointer; color: var(--text2); transition: all var(--transition); } .theme-toggle:hover { background: var(--surface-hover); color: var(--text); border-color: var(--border-strong); } .theme-toggle .icon-sun, .theme-toggle .icon-moon { width: 18px; height: 18px; } .theme-toggle .icon-moon { display: none; } [data-theme="dark"] .theme-toggle .icon-sun { display: none; } [data-theme="dark"] .theme-toggle .icon-moon { display: block; } @media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: none; } :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: block; } } /* Language Switcher */ .lang-switch { display: flex; align-items: center; gap: 2px; padding: 4px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); } .lang-switch a { display: flex; align-items: center; justify-content: center; padding: 6px 10px; font-size: 13px; font-weight: 600; color: var(--text2); border-radius: 6px; transition: all var(--transition); } .lang-switch a:hover { color: var(--text); } .lang-switch a.active { background: var(--bg-white); color: var(--text); box-shadow: var(--shadow-sm); } .search-wrapper { position: relative; display: none; } @media (min-width: 640px) { .search-wrapper { display: block; } } .search-input { width: 200px; padding: 10px 40px 10px 16px; font-size: 14px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg); transition: all var(--transition); } .search-input:focus { outline: none; border-color: var(--accent2); background: var(--bg-white); width: 280px; } .search-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; } /* Mobile Menu Button */ .mobile-menu-btn { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 8px; } .mobile-menu-btn span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); } .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); } .mobile-menu-btn.active span:nth-child(2) { opacity: 0; } .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); } @media (min-width: 768px) { .mobile-menu-btn { display: none; } } /* Mobile Menu */ .mobile-menu { position: fixed; top: var(--header-height); left: 0; right: 0; background: var(--bg-white); border-bottom: 1px solid var(--border); padding: 24px; transform: translateY(-100%); opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 999; } .mobile-menu.active { transform: translateY(0); opacity: 1; visibility: visible; } .mobile-menu nav { display: flex; flex-direction: column; gap: 16px; } .mobile-menu a { color: var(--text); font-size: 18px; font-weight: 500; padding: 8px 0; } /* ======================================== HERO SECTION - Animated Gradient Mesh ======================================== */ .hero { position: relative; padding: calc(var(--header-height) + 80px) 0 80px; background: var(--bg-white); overflow: hidden; min-height: 500px; /* Prevent CLS */ } /* Animated Gradient Mesh Background */ .hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse 80% 50% at 20% 40%, var(--gradient-pink) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 80% 20%, var(--gradient-teal) 0%, transparent 50%), radial-gradient(ellipse 50% 60% at 60% 80%, var(--gradient-pink) 0%, transparent 50%), radial-gradient(ellipse 40% 40% at 30% 70%, var(--gradient-teal) 0%, transparent 50%); animation: gradientMove 20s ease-in-out infinite; z-index: 0; will-change: transform; /* Prevent CLS */ } @keyframes gradientMove { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 25% { transform: translate(2%, 1%) rotate(1deg); } 50% { transform: translate(-1%, 2%) rotate(-1deg); } 75% { transform: translate(1%, -1%) rotate(0.5deg); } } /* Subtle Grid Overlay */ .hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px); background-size: 60px 60px; z-index: 1; } .hero .container { position: relative; z-index: 2; } .hero-content { max-width: 720px; } .hero-badge { display: inline-block; padding: 6px 14px; background: var(--accent-light); color: var(--accent); font-size: 13px; font-weight: 600; border-radius: 100px; margin-bottom: 20px; backdrop-filter: blur(8px); } .hero h1 { margin-bottom: 20px; } .hero-lead { font-size: 1.125rem; color: var(--text2); margin-bottom: 32px; line-height: 1.7; } .hero-lead strong { color: var(--accent); font-weight: 700; } .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; } /* Work in Progress Link */ .hero-wip-link { margin-top: 20px; text-align: center; } .wip-link { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(245, 158, 11, 0.1); border: 1px dashed rgba(245, 158, 11, 0.4); border-radius: var(--radius-md); color: var(--text2); font-size: 14px; text-decoration: none; transition: all 0.2s ease; } .wip-link:hover { background: rgba(245, 158, 11, 0.15); border-color: rgba(245, 158, 11, 0.6); color: var(--text); } .wip-label { font-weight: 600; color: #b45309; } [data-theme="dark"] .wip-label { color: #fbbf24; } /* Coming Soon Teaser */ .coming-soon-teaser { margin-top: 24px; padding-top: 24px; border-top: 1px dashed var(--border); } .teaser-link { display: inline-flex; align-items: center; gap: 12px; padding: 12px 20px; background: linear-gradient(135deg, rgba(255,45,125,0.08) 0%, rgba(102,126,234,0.08) 100%); border: 1px solid rgba(255,45,125,0.2); border-radius: var(--radius-lg); color: var(--text); text-decoration: none; transition: all 0.2s ease; } .teaser-link:hover { background: linear-gradient(135deg, rgba(255,45,125,0.15) 0%, rgba(102,126,234,0.15) 100%); border-color: var(--primary); transform: translateY(-2px); } .teaser-badge { font-size: 12px; font-weight: 600; color: var(--primary); } .teaser-text { font-weight: 600; color: var(--text); } .teaser-arrow { color: var(--primary); transition: transform 0.2s ease; } .teaser-link:hover .teaser-arrow { transform: translateX(4px); } .hero-stats, .hero-stats-centered { display: flex; gap: 48px; margin-top: 32px; padding-top: 24px; } .hero-stats-centered { justify-content: center; border-top: none; margin-bottom: 8px; } .stat { display: flex; flex-direction: column; align-items: center; gap: 4px; } .stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--primary); min-width: 4ch; display: inline-block; text-align: center; font-variant-numeric: tabular-nums; /* Alle Ziffern gleich breit */ } .stat-label { font-size: 14px; color: var(--muted); } @media (max-width: 640px) { .hero-stats, .hero-stats-centered { gap: 32px; } .stat-num { font-size: 2rem; } } /* ======================================== TIER EXPLAINER ======================================== */ /* Intro Note */ .intro-note { padding: 0 0 48px; } .intro-text { font-size: 15px; color: var(--text2); line-height: 1.6; text-align: center; max-width: 700px; margin: 0 auto; } .intro-text strong { color: var(--text); } .intro-text a { color: var(--primary); text-decoration: none; font-weight: 500; } .intro-text a:hover { text-decoration: underline; } /* ======================================== LIBRARY SECTION ======================================== */ .library { padding: 64px 0 96px; } .library-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; } .results-count { font-size: 14px; color: var(--muted); } .results-count span { font-weight: 600; color: var(--text); } /* ======================================== FILTER SECTION - AirBnB Style ======================================== */ .filter-section { background: var(--bg-white); border: 1px solid var(--border); border-radius: 16px; padding: 24px; margin-bottom: 32px; box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03); } /* Main Search Bar */ .search-bar-main { margin-bottom: 24px; } .search-input-wrapper { position: relative; display: flex; align-items: center; } .search-icon-main { position: absolute; left: 16px; color: var(--text2); pointer-events: none; } .search-input-main { width: 100%; padding: 16px 48px; font-size: 16px; font-family: var(--font-body); color: var(--text); background: var(--surface); border: 2px solid var(--border); border-radius: 12px; transition: all 0.2s ease; } .search-input-main:focus { outline: none; border-color: var(--text); background: var(--bg-white); box-shadow: 0 0 0 2px rgba(0,0,0,0.05); } .search-input-main::placeholder { color: var(--text2); } .search-clear { position: absolute; right: 12px; padding: 8px; background: none; border: none; color: var(--text2); cursor: pointer; border-radius: 50%; transition: all 0.2s ease; } .search-clear:hover { background: var(--surface); color: var(--text); } /* Filter Groups */ .filter-group { margin-bottom: 20px; } .filter-group:last-child { margin-bottom: 0; } .filter-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text2); margin-bottom: 12px; } .filter-hint { font-weight: 400; text-transform: none; letter-spacing: 0; } /* Filter Chips */ .filter-chips { display: flex; flex-wrap: wrap; gap: 8px; } .chip { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; border: 1px solid var(--border); border-radius: 100px; background: var(--bg-white); font-size: 14px; font-weight: 500; font-family: var(--font-body); color: var(--text); cursor: pointer; transition: all 0.15s ease; user-select: none; } .chip:hover { border-color: var(--text); background: var(--surface); } .chip.active { background: var(--text); border-color: var(--text); color: var(--bg-white); } .chip.active:hover { background: #000; border-color: #000; } /* Filter Divider */ .filter-divider { height: 1px; background: var(--border); margin: 20px 0; } /* Filter Row - Typ & Verfügbarkeit nebeneinander */ .filter-row { display: flex; gap: 32px; flex-wrap: wrap; align-items: flex-start; } .filter-row .filter-group { margin-bottom: 0; } /* Toggle Group für Verfügbarkeit */ .toggle-group { display: inline-flex; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; } .toggle-btn { padding: 10px 16px; border: none; background: var(--bg-white); font-size: 14px; font-weight: 500; font-family: var(--font-body); color: var(--text); cursor: pointer; transition: all 0.15s; border-right: 1px solid var(--border); display: flex; align-items: center; gap: 6px; } .toggle-btn:last-child { border-right: none; } .toggle-btn:hover { background: var(--surface); } .toggle-btn.active { background: var(--text); color: var(--bg-white); } .toggle-btn svg { width: 16px; height: 16px; } /* Select Wrapper für Sortierung */ .select-wrapper-new { position: relative; display: inline-block; } .select-wrapper-new select { padding: 10px 36px 10px 14px; font-size: 14px; font-family: var(--font-body); font-weight: 500; color: var(--text); background: var(--bg-white); border: 1px solid var(--border); border-radius: 8px; cursor: pointer; appearance: none; transition: all 0.15s ease; min-width: 140px; } .select-wrapper-new select:hover { border-color: var(--text); } .select-wrapper-new select:focus { outline: none; border-color: var(--text); } .select-wrapper-new .select-arrow { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--text2); } /* Filter Footer */ .filter-footer { display: flex; justify-content: flex-end; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); } .reset-link { font-size: 14px; color: var(--text2); text-decoration: underline; cursor: pointer; background: none; border: none; font-family: var(--font-body); padding: 0; } .reset-link:hover { color: var(--text); } /* Header CTA Button */ .header-cta { display: flex; align-items: center; gap: 8px; padding: 8px 16px; font-size: 14px; font-weight: 500; color: var(--accent); background: var(--accent-light); border-radius: 8px; text-decoration: none; transition: all 0.2s ease; } .header-cta:hover { background: var(--accent); color: white; } @media (max-width: 768px) { .filter-section { padding: 16px; border-radius: 12px; } .search-input-main { padding: 14px 44px; font-size: 15px; } .chip { padding: 8px 12px; font-size: 13px; } .filter-row { flex-direction: column; gap: 20px; } .toggle-group { width: 100%; } .toggle-btn { flex: 1; justify-content: center; padding: 10px 12px; font-size: 13px; } .select-wrapper-new { width: 100%; } .select-wrapper-new select { width: 100%; } .filter-footer { justify-content: center; } .header-cta { display: none; } } /* Tool Grid */ .tool-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 20px; padding: 4px; /* Platz für Card-Schatten */ margin: -4px; /* Kompensiere das Padding */ } @media (max-width: 400px) { .tool-grid { grid-template-columns: 1fr; } } /* Tool Card */ .tool-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); content-visibility: auto; contain-intrinsic-size: 0 200px; } .tool-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); } .tool-card-header { padding: 20px 20px 16px; } .tool-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; } .tool-tag { display: inline-block; padding: 4px 10px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; border-radius: 100px; background: var(--surface); color: var(--text2); } .tool-tag.tag-Strategie { background: #FEF3C7; color: #92400E; } .tool-tag.tag-Leadership { background: #FCE7F3; color: #9D174D; } .tool-tag.tag-Teams { background: #DBEAFE; color: #1E40AF; } .tool-tag.tag-Organisation { background: #E0E7FF; color: #3730A3; } .tool-tag.tag-Change { background: #FEE2E2; color: #991B1B; } .tool-tag.tag-Innovation { background: #D1FAE5; color: #065F46; } .tool-tag.tag-Kultur { background: #F3E8FF; color: #6B21A8; } .tool-tag.tag-Agilität { background: #CFFAFE; color: #0E7490; } .tool-tag.tag-Problemlösung { background: #FFEDD5; color: #9A3412; } .tool-tag.tag-Kommunikation { background: #F1F5F9; color: #475569; } .tool-tag.tag-ProductManagement { background: #FDF4FF; color: #A21CAF; } .tool-tag.tag-Facilitation { background: #ECFDF5; color: #047857; } .tool-tag.tag-Design { background: #FFF7ED; color: #C2410C; } .tool-tag.tag-Coaching { background: #EFF6FF; color: #1D4ED8; } .tool-typ { font-size: 12px; color: var(--muted); } .tool-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; line-height: 1.3; } .tool-card-desc { font-size: 14px; color: var(--text2); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } /* Tool Card Info Row - License & Tier */ .tool-card-info { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; background: var(--surface); border-top: 1px solid var(--border); } .tool-license { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 6px; background: var(--bg-white); border: 1px solid var(--border); } .tool-license svg { flex-shrink: 0; } .tool-license.license-cc { background: #ECFDF5; border-color: #A7F3D0; color: #047857; } .tool-license.license-free { background: #EFF6FF; border-color: #BFDBFE; color: #1D4ED8; } .tool-license.license-prop { background: #FEF3C7; border-color: #FCD34D; color: #92400E; } .tool-tier { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; } .tool-tier.tier-1 { color: var(--tier1); } .tool-tier.tier-2 { color: var(--tier2); } .tool-tier svg { width: 14px; height: 14px; } /* Tool Card Footer */ .tool-card-footer { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-top: 1px solid var(--border); gap: 12px; flex-wrap: wrap; } .tool-actions-left { display: flex; align-items: center; gap: 8px; flex-shrink: 0; } .tool-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; font-size: 13px; font-weight: 600; border-radius: var(--radius-sm); border: none; cursor: pointer; text-decoration: none; transition: all var(--transition); white-space: nowrap; flex-shrink: 0; } .tool-btn-download { background: var(--tier1); color: white; } .tool-btn-download:hover { background: #059669; color: white; } .tool-btn-external { background: var(--tier2); color: white; } .tool-btn-external:hover { background: #4F46E5; color: white; } .tool-btn svg { width: 14px; height: 14px; } /* Feedback Buttons */ .tool-feedback { display: flex; gap: 4px; } .feedback-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; color: var(--muted); transition: all var(--transition); } .feedback-btn:hover { background: var(--bg-white); color: var(--text2); } .feedback-btn.active.up { background: var(--success-light); border-color: var(--success); color: var(--success); } .feedback-btn.active.down { background: #FEE2E2; border-color: #EF4444; color: #EF4444; } .feedback-btn svg { width: 16px; height: 16px; } /* Tool Actions Left (Feedback + Use Button) */ .tool-actions-left { display: flex; align-items: center; gap: 8px; } /* "Use It" Button */ .use-btn { display: inline-flex; align-items: center; gap: 5px; padding: 6px 10px; font-size: 12px; font-weight: 500; color: var(--muted); background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); } .use-btn:hover { background: var(--surface); color: var(--text2); border-color: var(--text2); } .use-btn.active { background: var(--accent-light); border-color: var(--accent); color: var(--accent); } .use-btn svg { width: 14px; height: 14px; } .use-btn .use-label { font-weight: 500; } /* Expanded Tool Card */ .tool-card-expanded { display: none; padding: 0 20px 20px; } .tool-card.expanded .tool-card-expanded { display: block; } .tool-card.expanded .tool-card-desc { -webkit-line-clamp: unset; } .tool-license { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--border); } .tool-license svg { width: 14px; height: 14px; flex-shrink: 0; } /* Empty State */ .empty-state { text-align: center; padding: 64px 24px; background: var(--bg-white); border: 1px dashed var(--border); border-radius: var(--radius-lg); } .empty-state svg { color: var(--muted); margin-bottom: 16px; } .empty-state h3 { margin-bottom: 8px; } .empty-state p { color: var(--text2); margin-bottom: 24px; } /* Load More */ .load-more { text-align: center; margin-top: 40px; } /* ======================================== FAQ SECTION ======================================== */ .faq-section { padding: 80px 0; background: var(--surface); } .faq-header { text-align: center; max-width: 600px; margin: 0 auto 48px; } .faq-header h2 { margin-bottom: 12px; } .faq-header p { color: var(--text2); font-size: 1.125rem; } .faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; } .faq-item { background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.2s ease; } .faq-item:hover { border-color: var(--border-strong); } .faq-item[open] { box-shadow: var(--shadow-md); } .faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; list-style: none; font-weight: 500; font-size: 1rem; color: var(--text); transition: all 0.2s ease; } .faq-item summary::-webkit-details-marker { display: none; } .faq-item summary:hover { background: var(--surface); } .faq-item summary span { flex: 1; padding-right: 16px; } .faq-item summary svg { flex-shrink: 0; color: var(--text2); transition: transform 0.3s ease; } .faq-item[open] summary svg { transform: rotate(180deg); color: var(--accent); } .faq-answer { padding: 0 24px 24px; color: var(--text2); line-height: 1.7; } .faq-answer p { margin-bottom: 12px; } .faq-answer p:last-child { margin-bottom: 0; } .faq-answer a { color: var(--accent); text-decoration: underline; } .faq-answer strong { color: var(--text); } @media (max-width: 768px) { .faq-section { padding: 60px 0; } .faq-item summary { padding: 16px 20px; font-size: 0.95rem; } .faq-answer { padding: 0 20px 20px; font-size: 0.95rem; } } /* ======================================== SPREAD SECTION ======================================== */ .spread-section { padding: 64px 0; background: var(--text); } .spread-content { text-align: center; max-width: 600px; margin: 0 auto; } .spread-content h2 { color: white; margin-bottom: 12px; } .spread-content p { color: rgba(255,255,255,0.7); margin-bottom: 32px; } .spread-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; } .spread-section .btn-outline { border: 2px solid rgba(255,255,255,0.6); color: white; background: rgba(255,255,255,0.1); } .spread-section .btn-outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.9); color: white; } /* Copy Button Feedback */ .spread-section .btn-outline.copied { background: rgba(16, 185, 129, 0.2); border-color: rgba(16, 185, 129, 0.5); } /* Dark Mode: Spread Section */ [data-theme="dark"] .spread-section { background: var(--surface); } [data-theme="dark"] .spread-content h2 { color: var(--text); } [data-theme="dark"] .spread-content p { color: var(--text2); } [data-theme="dark"] .spread-section .btn-outline { border: 2px solid var(--border); color: var(--text); background: var(--bg); } [data-theme="dark"] .spread-section .btn-outline:hover { background: var(--surface); border-color: var(--text2); color: var(--text); } /* Email Obfuscation */ .email-link { cursor: pointer; } .email-placeholder { text-decoration: underline; text-decoration-style: dotted; } /* ======================================== NEWSLETTER SECTION ======================================== */ .newsletter-section { padding: 80px 0; background: var(--bg); } .newsletter-grid { display: grid; grid-template-columns: 1fr; gap: 48px; max-width: 1000px; margin: 0 auto; } @media (min-width: 768px) { .newsletter-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } } /* Tool der Woche */ .tool-of-week { order: 2; } @media (min-width: 768px) { .tool-of-week { order: 1; } } .tow-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: linear-gradient(135deg, var(--accent) 0%, #FF6B9D 100%); color: white; font-size: 13px; font-weight: 600; border-radius: 20px; margin-bottom: 16px; } .tow-badge svg { fill: currentColor; stroke: none; } .tow-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: all var(--transition); } .tow-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); } .tow-card .tool-category { font-size: 12px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; } .tow-card .tool-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 8px; } .tow-card .tool-desc { color: var(--text2); font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; } .tow-card .tool-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; } .tow-card .tier-badge { font-size: 11px; padding: 4px 10px; border-radius: 12px; font-weight: 600; } .tow-card .tier-badge.tier-1 { background: var(--tier1-bg); color: var(--tier1); } .tow-card .tier-badge.tier-2 { background: var(--tier2-bg); color: var(--tier2); } .tow-card .tool-link { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 500; font-size: 14px; } .tow-card .tool-link:hover { text-decoration: underline; } /* Newsletter Signup */ .newsletter-signup { order: 1; } @media (min-width: 768px) { .newsletter-signup { order: 2; } } .newsletter-signup h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; } .newsletter-signup > p { color: var(--text2); margin-bottom: 24px; } .newsletter-form { display: flex; flex-direction: column; gap: 12px; } .newsletter-input-group { display: flex; gap: 8px; flex-wrap: wrap; } .newsletter-input { flex: 1; min-width: 200px; padding: 14px 16px; font-size: 15px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg-white); transition: all var(--transition); } .newsletter-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 45, 125, 0.1); } .newsletter-btn { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; } .newsletter-btn .btn-icon { transition: transform 0.2s ease; } .newsletter-btn:hover .btn-icon { transform: translateX(4px); } .newsletter-privacy { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); } .newsletter-privacy a { color: var(--text2); } .newsletter-privacy a:hover { color: var(--accent); } .newsletter-success { text-align: center; padding: 24px; background: var(--success-light); border-radius: var(--radius-md); } .newsletter-success svg { color: var(--success); margin-bottom: 12px; } .newsletter-success p { color: var(--text); } /* ======================================== ABOUT SECTION ======================================== */ .about-section { padding: 96px 0; } .about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; } @media (min-width: 768px) { .about-grid { grid-template-columns: 2fr 1fr; } } .about-content { max-width: 600px; } .about-content h2 { margin-bottom: 24px; } .about-content p { color: var(--text2); margin-bottom: 16px; line-height: 1.7; } .about-content p:last-child { margin-bottom: 0; } .about-card { padding: 32px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); text-align: center; } .about-logo { height: 48px; margin: 0 auto 16px; } .about-card p { color: var(--text2); font-size: 14px; } .about-desc { margin-bottom: 20px !important; } /* ======================================== FOOTER ======================================== */ .footer { background: #0F172A; padding: 64px 0 32px; color: rgba(255,255,255,0.7); } /* Dark mode footer stays dark */ [data-theme="dark"] .footer { background: #020617; border-top: 1px solid rgba(255,255,255,0.1); } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px; margin-bottom: 48px; } .footer-brand strong { display: block; color: white; font-size: 18px; margin-bottom: 8px; } .footer-brand p { font-size: 14px; margin-bottom: 16px; } .footer-social-links { display: flex; gap: 12px; } .footer-social { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.1); border-radius: 8px; transition: all 0.2s ease; } .footer-social:hover { color: white; } .footer h4 { color: white; margin-bottom: 16px; } .footer h4 a.footer-heading-link { color: white; text-decoration: none; transition: color 0.2s ease; } .footer h4 a.footer-heading-link:hover { color: var(--accent); } .footer nav { display: flex; flex-direction: column; gap: 10px; } .footer nav a { color: rgba(255,255,255,0.7); font-size: 14px; } .footer nav a:hover { color: white; } .footer-contact-list { display: flex; flex-direction: column; gap: 8px; } .footer-contact-list a { color: rgba(255,255,255,0.7); font-size: 14px; } .footer-contact-list a:hover { color: white; } .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 14px; } .footer-bottom a { color: rgba(255,255,255,0.7); } .footer-bottom a:hover { color: var(--accent); } /* ======================================== BACK TO TOP ======================================== */ .back-to-top { position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--bg-white); border: 1px solid var(--border); border-radius: 50%; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(16px); transition: all var(--transition); box-shadow: var(--shadow-md); z-index: 100; } .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); } .back-to-top:hover { background: var(--accent); border-color: var(--accent); color: white; } .back-to-top svg { width: 20px; height: 20px; } /* ======================================== FORM PAGE STYLES ======================================== */ .page-header { padding: calc(var(--header-height) + 48px) 0 48px; background: var(--bg-white); } .page-header h1 { margin-bottom: 12px; } .page-header p { color: var(--text2); max-width: 600px; } .form-section { padding: 64px 0 96px; } .form-card { max-width: 640px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; } .form-group { margin-bottom: 24px; } .form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; } .form-group label span { color: var(--accent); } .form-input, .form-textarea, .form-select { width: 100%; padding: 12px 16px; font-size: 15px; font-family: var(--font-body); color: var(--text); background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); transition: all var(--transition); } .form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--accent2); background: var(--bg-white); } .form-textarea { min-height: 120px; resize: vertical; } .form-hint { font-size: 13px; color: var(--muted); } /* Input with Prefix (e.g. https://) */ .input-with-prefix { display: flex; align-items: stretch; } .input-prefix { display: flex; align-items: center; padding: 12px 12px; font-size: 14px; font-family: var(--font-body); color: var(--muted); background: var(--bg-alt); border: 1px solid var(--border); border-right: none; border-radius: var(--radius-md) 0 0 var(--radius-md); white-space: nowrap; } .input-with-prefix .form-input { border-radius: 0 var(--radius-md) var(--radius-md) 0; margin-top: 6px; } .form-actions { display: flex; gap: 12px; margin-top: 32px; } /* Success Message */ .form-success { display: none; text-align: center; padding: 48px 24px; } .form-success svg { width: 64px; height: 64px; color: var(--success); margin-bottom: 24px; } .form-success h2 { margin-bottom: 12px; } .form-success p { color: var(--text2); margin-bottom: 24px; } /* ======================================== LEGAL PAGES ======================================== */ .legal-content { padding: calc(var(--header-height) + 48px) 0 96px; } .legal-content .container { max-width: 800px; } .legal-content h1 { margin-bottom: 32px; } .legal-content h2 { margin-top: 40px; margin-bottom: 16px; font-size: 1.25rem; } .legal-content p { color: var(--text2); margin-bottom: 16px; line-height: 1.7; } .legal-content ul { margin-bottom: 16px; padding-left: 24px; } .legal-content li { color: var(--text2); margin-bottom: 8px; } .legal-content a { color: var(--accent2); } /* ======================================== ANIMATIONS ======================================== */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .tool-card { animation: fadeInUp 0.4s ease backwards; } .tool-card:nth-child(1) { animation-delay: 0.05s; } .tool-card:nth-child(2) { animation-delay: 0.1s; } .tool-card:nth-child(3) { animation-delay: 0.15s; } .tool-card:nth-child(4) { animation-delay: 0.2s; } .tool-card:nth-child(5) { animation-delay: 0.25s; } .tool-card:nth-child(6) { animation-delay: 0.3s; } /* ======================================== DISCLAIMER SECTION ======================================== */ .disclaimer { background: var(--bg-secondary); padding: 60px 0; border-top: 1px solid var(--border); } .disclaimer-content h3 { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 600; margin-bottom: 24px; color: var(--foreground); } .disclaimer-content h3 svg { color: var(--muted); } .disclaimer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 24px; } .disclaimer-item { background: var(--background); padding: 20px; border-radius: 12px; border: 1px solid var(--border); } .disclaimer-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; color: var(--foreground); } .disclaimer-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; } .disclaimer-footer { font-size: 0.875rem; color: var(--muted); text-align: center; padding-top: 16px; border-top: 1px solid var(--border); } .disclaimer-footer a { color: var(--primary); text-decoration: none; } .disclaimer-footer a:hover { text-decoration: underline; } @media (max-width: 768px) { .disclaimer { padding: 40px 0; } .disclaimer-grid { grid-template-columns: 1fr; gap: 16px; } } /* ======================================== TOOL DETAIL MODAL ======================================== */ .tool-modal { display: none; position: fixed; inset: 0; z-index: 1000; } .tool-modal.active { display: flex; align-items: center; justify-content: center; } .tool-modal-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(4px); animation: fadeIn 0.2s ease; } .tool-modal-content { position: relative; background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); max-width: 600px; width: calc(100% - 32px); max-height: calc(100vh - 64px); overflow-y: auto; animation: slideUp 0.3s ease; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .tool-modal-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--surface); border: none; border-radius: 50%; cursor: pointer; color: var(--text2); transition: all 0.2s ease; z-index: 1; } .tool-modal-close:hover { background: var(--border); color: var(--text); } .tool-modal-body { padding: 32px; } .tool-modal-header { margin-bottom: 16px; } .tool-modal-category { display: inline-block; font-size: 12px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; } .tool-modal-title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; line-height: 1.2; margin: 0; } .tool-modal-desc { color: var(--text2); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; } .tool-modal-meta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); } .tool-modal-info { display: flex; flex-wrap: wrap; gap: 8px; } .tool-modal-info span { padding: 6px 12px; background: var(--surface); border-radius: var(--radius-sm); font-size: 13px; color: var(--text2); } .tool-modal-tags { display: flex; flex-wrap: wrap; gap: 6px; } .tool-modal-tag { padding: 4px 10px; background: var(--accent-light); color: var(--accent); border-radius: 12px; font-size: 12px; font-weight: 500; } .tool-modal-source { margin-bottom: 24px; font-size: 14px; color: var(--text2); } .tool-modal-source a { color: var(--accent2); text-decoration: none; } .tool-modal-source a:hover { text-decoration: underline; } .tool-modal-actions { display: flex; gap: 12px; } .tool-modal-cta { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; } /* Dark mode modal */ [data-theme="dark"] .tool-modal-backdrop { background: rgba(0, 0, 0, 0.8); } [data-theme="dark"] .tool-modal-content { background: var(--bg-white); border: 1px solid var(--border); } /* Focus states for keyboard navigation */ .tool-card:focus { outline: 2px solid var(--accent); outline-offset: 2px; } .tool-card:focus:not(:focus-visible) { outline: none; } .tool-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; } /* ======================================== USE CASE FINDER ======================================== */ .use-case-finder { padding: 60px 0; background: linear-gradient(135deg, rgba(255, 45, 125, 0.05) 0%, rgba(0, 168, 150, 0.03) 100%); border-bottom: 1px solid var(--border); } .use-case-header { text-align: center; margin-bottom: 32px; } .use-case-header h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; margin-bottom: 8px; } .use-case-header p { color: var(--text2); font-size: 1.1rem; } .use-case-search { max-width: 700px; margin: 0 auto 24px; } .use-case-input-wrapper { display: flex; align-items: center; background: var(--bg-white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 8px 8px 8px 16px; transition: all 0.2s ease; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); } .use-case-input-wrapper:focus-within { border-color: var(--accent); box-shadow: 0 4px 20px rgba(255, 45, 125, 0.15); } .use-case-icon { color: var(--text2); flex-shrink: 0; margin-right: 12px; } .use-case-input { flex: 1; border: none; background: transparent; font-size: 1rem; color: var(--text); outline: none; min-width: 0; } .use-case-input::placeholder { color: var(--muted); } .use-case-search-btn { display: flex; align-items: center; gap: 6px; padding: 12px 20px; background: var(--accent); color: white; border: none; border-radius: var(--radius-md); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.2s ease; flex-shrink: 0; } .use-case-search-btn:hover { background: var(--accent-hover); transform: translateY(-1px); } .use-case-suggestions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; max-width: 800px; margin: 0 auto; } .suggestions-label { color: var(--text2); font-size: 0.9rem; margin-right: 8px; } .suggestion-chip { padding: 8px 16px; background: var(--bg-white); border: 1px solid var(--border); border-radius: 20px; font-size: 0.875rem; color: var(--text2); cursor: pointer; transition: all 0.2s ease; } .suggestion-chip:hover { border-color: var(--accent); color: var(--accent); background: rgba(255, 45, 125, 0.05); } /* Results */ .use-case-results { max-width: 900px; margin: 40px auto 0; background: var(--bg-white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; animation: slideUp 0.3s ease; } @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .results-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--border); background: var(--surface); } .results-header h3 { font-size: 1rem; font-weight: 600; color: var(--text); } .results-header h3 span { color: var(--accent); } .close-results { background: none; border: none; color: var(--text2); cursor: pointer; padding: 4px; border-radius: 4px; transition: all 0.2s ease; } .close-results:hover { background: var(--border); color: var(--text); } .results-grid { padding: 16px; display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 20px; } @media (max-width: 400px) { .results-grid { grid-template-columns: 1fr; } } .result-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px; background: var(--bg); border-radius: var(--radius-md); border: 1px solid transparent; transition: all 0.2s ease; text-decoration: none; color: inherit; } .result-item:hover { border-color: var(--accent); background: rgba(255, 45, 125, 0.03); } .result-rank { width: 28px; height: 28px; background: var(--accent); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; } .result-content { flex: 1; min-width: 0; } .result-name { font-weight: 600; font-size: 1rem; margin-bottom: 4px; color: var(--text); } .result-desc { font-size: 0.875rem; color: var(--text2); line-height: 1.5; } .result-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; } .result-tag { font-size: 0.75rem; padding: 2px 8px; background: var(--surface); border-radius: 4px; color: var(--text2); } .result-match { font-size: 0.8rem; color: var(--accent); font-weight: 600; white-space: nowrap; } .result-header { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; flex-wrap: wrap; } .result-typ { font-size: 0.7rem; padding: 2px 6px; background: var(--surface); border-radius: 4px; color: var(--text2); text-transform: uppercase; letter-spacing: 0.3px; } .result-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; align-items: center; } .result-license { font-size: 0.7rem; padding: 2px 8px; border-radius: 4px; font-weight: 500; } .result-license.license-open { background: rgba(76, 175, 80, 0.15); color: #2e7d32; } .result-license.license-free { background: rgba(33, 150, 243, 0.15); color: #1565c0; } .result-license.license-other { background: var(--surface); color: var(--text2); } .result-tier { font-size: 0.7rem; padding: 2px 8px; border-radius: 4px; font-weight: 500; } .result-tier.tier-download { background: rgba(76, 175, 80, 0.15); color: #2e7d32; } .result-tier.tier-link { background: rgba(33, 150, 243, 0.15); color: #1565c0; } .result-tier.tier-info { background: var(--surface); color: var(--text2); } .result-source { font-size: 0.7rem; color: var(--text2); } /* Mobile Responsive */ @media (max-width: 640px) { .use-case-finder { padding: 40px 0; } .use-case-header h2 { font-size: 1.5rem; } .use-case-input-wrapper { flex-direction: column; padding: 12px; gap: 12px; } .use-case-icon { display: none; } .use-case-input { width: 100%; text-align: center; } .use-case-search-btn { width: 100%; justify-content: center; } .suggestions-label { width: 100%; text-align: center; margin-bottom: 4px; } .result-item { flex-direction: column; gap: 12px; } .result-rank { align-self: flex-start; } } /* ======================================== USE CASE FINDER - EXTENDED FEATURES ======================================== */ /* Beta Badge */ .beta-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; font-size: 0.7rem; font-weight: 600; border-radius: 20px; vertical-align: middle; margin-left: 8px; text-transform: uppercase; letter-spacing: 0.5px; } /* Autosuggest Dropdown */ .use-case-search { position: relative; } .autosuggest-dropdown { position: absolute; top: 100%; left: 0; right: 0; max-width: 700px; margin: 4px auto 0; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); z-index: 100; max-height: 300px; overflow-y: auto; } .autosuggest-list { padding: 8px 0; } .autosuggest-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; cursor: pointer; transition: background 0.15s ease; } .autosuggest-item:hover, .autosuggest-item.active { background: var(--surface); } .autosuggest-icon { color: var(--accent); flex-shrink: 0; } .autosuggest-text { flex: 1; } .autosuggest-keyword { font-weight: 600; color: var(--text); } .autosuggest-hint { font-size: 0.85rem; color: var(--text2); } .autosuggest-category { font-size: 0.75rem; padding: 2px 8px; background: var(--surface); border-radius: 4px; color: var(--text2); } /* Search History */ .search-history { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--border); } .history-label { color: var(--text2); font-size: 0.85rem; } .history-chips { display: flex; flex-wrap: wrap; gap: 6px; } .history-chip { display: flex; align-items: center; gap: 4px; padding: 6px 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; font-size: 0.8rem; color: var(--text2); cursor: pointer; transition: all 0.2s ease; } .history-chip:hover { border-color: var(--accent); color: var(--accent); } .history-chip svg { width: 12px; height: 12px; } /* Feedback Section */ .results-feedback { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px; padding: 24px; border-top: 1px solid var(--border); background: linear-gradient(135deg, var(--surface) 0%, rgba(255,255,255,0.5) 100%); } .feedback-question { color: var(--text2); font-size: 0.95rem; font-weight: 500; } .feedback-buttons { display: flex; gap: 12px; } .feedback-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border: 2px solid var(--border); border-radius: 50px; background: var(--bg-white); color: var(--text2); font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.25s ease; min-width: 100px; } .feedback-btn svg { width: 20px; height: 20px; transition: transform 0.2s ease; } .feedback-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); } .feedback-btn.feedback-yes { border-color: #d1fae5; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); color: #059669; } .feedback-btn.feedback-yes:hover { border-color: #10B981; background: linear-gradient(135deg, #dcfce7 0%, #a7f3d0 100%); box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25); } .feedback-btn.feedback-yes:hover svg { transform: scale(1.15) rotate(-5deg); } .feedback-btn.feedback-no { border-color: #fef3c7; background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%); color: #d97706; } .feedback-btn.feedback-no:hover { border-color: #F59E0B; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25); } .feedback-btn.feedback-no:hover svg { transform: scale(1.15) rotate(5deg); } .feedback-btn.selected { pointer-events: none; transform: scale(0.95); } .feedback-btn.feedback-yes.selected { border-color: #10B981; background: #10B981; color: white; } .feedback-btn.feedback-no.selected { border-color: #F59E0B; background: #F59E0B; color: white; } .feedback-thanks { display: flex; align-items: center; gap: 8px; color: #10B981; font-weight: 600; font-size: 1rem; animation: thanksPop 0.4s ease; } @keyframes thanksPop { 0% { opacity: 0; transform: scale(0.8); } 50% { transform: scale(1.05); } 100% { opacity: 1; transform: scale(1); } } @keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } } /* Nothing Found CTA */ .nothing-found-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; padding: 16px 20px; background: linear-gradient(135deg, rgba(255, 45, 125, 0.05) 0%, rgba(0, 168, 150, 0.03) 100%); border-top: 1px solid var(--border); } .nothing-found-cta p { color: var(--text2); font-size: 0.9rem; margin: 0; } .suggest-tool-link { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: var(--accent); color: white; text-decoration: none; border-radius: var(--radius-md); font-size: 0.875rem; font-weight: 500; transition: all 0.2s ease; } .suggest-tool-link:hover { background: var(--accent-hover); transform: translateY(-1px); } /* Mobile Adjustments */ @media (max-width: 640px) { .beta-badge { display: block; margin: 8px auto 0; width: fit-content; } .results-feedback { flex-direction: column; text-align: center; } .nothing-found-cta { flex-direction: column; text-align: center; } .search-history { flex-direction: column; } } /* ======================================== SMART SEARCH (INTEGRATED IN LIBRARY) ======================================== */ .smart-search-section { margin-top: 32px; } .smart-search-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; } .smart-search-divider::before, .smart-search-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); } .smart-search-divider span { color: var(--text2); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; } .smart-search-box { background: linear-gradient(135deg, rgba(255, 45, 125, 0.04) 0%, rgba(102, 126, 234, 0.04) 100%); border: 1px solid rgba(255, 45, 125, 0.15); border-radius: var(--radius-lg); padding: 24px; } .smart-search-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 20px; } .smart-search-intro { display: flex; gap: 12px; align-items: flex-start; } .smart-search-icon { font-size: 1.5rem; line-height: 1; } .smart-search-intro strong { display: block; font-size: 1rem; color: var(--text); margin-bottom: 4px; } .smart-search-intro p { font-size: 0.9rem; color: var(--text2); margin: 0; } .smart-search-input-row { position: relative; margin-bottom: 16px; } .smart-search-input-wrapper { display: flex; gap: 8px; } .smart-search-input { flex: 1; padding: 14px 16px; border: 2px solid var(--border); border-radius: var(--radius-md); font-size: 1rem; background: var(--bg-white); color: var(--text); transition: all 0.2s ease; } .smart-search-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 45, 125, 0.1); } .smart-search-input::placeholder { color: var(--muted); } .smart-search-btn { display: flex; align-items: center; gap: 6px; padding: 14px 24px; background: var(--accent); color: white; border: none; border-radius: var(--radius-md); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.2s ease; white-space: nowrap; } .smart-search-btn:hover { background: var(--accent-hover); transform: translateY(-1px); } .smart-search-suggestions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; } .smart-search-suggestions .suggestions-label { color: var(--text2); font-size: 0.85rem; } .smart-search-suggestions .suggestion-chip { padding: 6px 14px; background: var(--bg-white); border: 1px solid var(--border); border-radius: 16px; font-size: 0.85rem; color: var(--text2); cursor: pointer; transition: all 0.2s ease; } .smart-search-suggestions .suggestion-chip:hover { border-color: var(--accent); color: var(--accent); background: rgba(255, 45, 125, 0.05); } /* Autosuggest positioning fix */ .smart-search-input-row .autosuggest-dropdown { position: absolute; top: 100%; left: 0; right: 80px; margin-top: 4px; } /* Results in library context */ .smart-search-section .use-case-results { margin-top: 24px; max-width: none; } /* Mobile adjustments */ @media (max-width: 640px) { .smart-search-header { flex-direction: column; gap: 12px; } .smart-search-intro { flex-direction: column; text-align: center; } .smart-search-icon { margin: 0 auto; } .beta-badge { align-self: center; } .smart-search-input-wrapper { flex-direction: column; } .smart-search-btn { width: 100%; justify-content: center; } .smart-search-input-row .autosuggest-dropdown { right: 0; } .smart-search-suggestions { justify-content: center; } } /* Hide old use-case-finder section styles if any remain */ .use-case-finder { display: none; } /* Logo Icon (Emoji) */ .logo-icon { font-size: 1.3rem; line-height: 1; flex-shrink: 0; } @media (min-width: 640px) { .logo-icon { font-size: 1.5rem; } } /* About Links (Social Icons) */ .about-links { display: flex; gap: 12px; margin-top: 12px; } .about-social { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--surface); color: var(--text2); transition: all 0.2s ease; } .about-social:hover { background: var(--accent); color: white; } .about-social svg { width: 18px; height: 18px; } /* ======================================== LINK RATING & SUGGEST LINK ======================================== */ .link-rating { display: flex; gap: 2px; align-items: center; } .rating-btn { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border: none; background: transparent; color: var(--text3); cursor: pointer; border-radius: 4px; transition: all 0.15s ease; } .rating-btn:hover { background: var(--surface-alt); } .rating-btn.rating-top:hover, .rating-btn.rating-top.active { color: #22c55e; background: rgba(34, 197, 94, 0.1); } .rating-btn.rating-mid:hover, .rating-btn.rating-mid.active { color: #f59e0b; background: rgba(245, 158, 11, 0.1); } .rating-btn.rating-bad:hover, .rating-btn.rating-bad.active { color: #ef4444; background: rgba(239, 68, 68, 0.1); } .suggest-link-btn { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border: none; background: transparent; color: var(--text3); cursor: pointer; border-radius: 4px; transition: all 0.15s ease; margin-left: 4px; } .suggest-link-btn:hover { background: var(--accent); color: white; } /* Suggest Link Modal */ .suggest-link-modal { max-width: 500px; width: 90%; } .suggest-link-modal .modal-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); } .suggest-link-modal .modal-header svg { color: var(--accent); } .suggest-link-modal .modal-header h2 { font-size: 1.25rem; margin: 0; } .suggest-link-modal .form-info { background: var(--surface-alt); padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; font-size: 0.875rem; } .suggest-link-modal .form-info p { margin: 4px 0; } .suggest-link-modal .current-url-display { color: var(--text2); word-break: break-all; font-size: 0.8rem; } .suggest-link-modal .form-group { margin-bottom: 16px; } .suggest-link-modal label { display: block; font-weight: 500; margin-bottom: 6px; font-size: 0.875rem; } .suggest-link-modal input[type="url"], .suggest-link-modal textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 6px; background: var(--surface); color: var(--text); font-size: 0.875rem; transition: border-color 0.2s ease; } .suggest-link-modal input[type="url"]:focus, .suggest-link-modal textarea:focus { outline: none; border-color: var(--accent); } .suggest-link-modal .form-hint { font-size: 0.75rem; color: var(--text3); margin-top: 4px; } .suggest-link-modal .form-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--border); } .suggest-link-modal .btn { padding: 10px 20px; border-radius: 6px; font-weight: 500; cursor: pointer; transition: all 0.2s ease; } .suggest-link-modal .btn-secondary { background: var(--surface-alt); color: var(--text2); border: 1px solid var(--border); } .suggest-link-modal .btn-secondary:hover { background: var(--surface); } .suggest-link-modal .btn-primary { background: var(--accent); color: white; border: none; } .suggest-link-modal .btn-primary:hover { opacity: 0.9; } .modal-success { text-align: center; padding: 40px 20px; } .modal-success svg { color: #22c55e; margin-bottom: 16px; } .modal-success h3 { margin: 0 0 8px 0; font-size: 1.25rem; } .modal-success p { color: var(--text2); margin: 0 0 24px 0; } /* Tool card footer adjustment */ .tool-card-footer .tool-actions-left { display: flex; align-items: center; gap: 4px; } /* Dark mode adjustments */ [data-theme="dark"] .rating-btn.rating-top:hover, [data-theme="dark"] .rating-btn.rating-top.active { background: rgba(34, 197, 94, 0.15); } [data-theme="dark"] .rating-btn.rating-mid:hover, [data-theme="dark"] .rating-btn.rating-mid.active { background: rgba(245, 158, 11, 0.15); } [data-theme="dark"] .rating-btn.rating-bad:hover, [data-theme="dark"] .rating-btn.rating-bad.active { background: rgba(239, 68, 68, 0.15); } /* Generic Modal Overlay */ .modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); display: flex; align-items: center; justify-content: center; z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.2s ease; padding: 20px; } .modal-overlay.active { opacity: 1; visibility: visible; } .modal-content { background: var(--surface); border-radius: 12px; padding: 24px; position: relative; max-height: 90vh; overflow-y: auto; transform: translateY(20px); transition: transform 0.2s ease; } .modal-overlay.active .modal-content { transform: translateY(0); } .modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border: none; background: transparent; color: var(--text3); cursor: pointer; border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: all 0.15s ease; } .modal-close:hover { background: var(--surface-alt); color: var(--text); } [data-theme="dark"] .modal-overlay { background: rgba(0, 0, 0, 0.8); } /* ======================================== V23: NEUE ELEMENTE ======================================== */ /* Quelle auf Karte */ .tool-card-source { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.35rem; font-style: italic; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; } /* Essential Badge (Tier 1) */ .tool-essential { font-size: 0.65rem; margin-left: 0.35rem; background: linear-gradient(135deg, #fef3c7, #fde68a); padding: 0.15rem 0.4rem; border-radius: 4px; display: inline-flex; align-items: center; } [data-theme="dark"] .tool-essential { background: linear-gradient(135deg, #78350f, #92400e); } /* Sortierung Dropdown */ .sort-select { padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: 8px; background: var(--bg); color: var(--text); font-size: 0.875rem; cursor: pointer; min-width: 160px; } .sort-select:focus { outline: none; border-color: var(--accent); } /* Quellenfilter */ .source-filter { padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: 8px; background: var(--bg); color: var(--text); font-size: 0.875rem; cursor: pointer; min-width: 140px; } .source-filter:focus { outline: none; border-color: var(--accent); } /* Filter-Gruppe Layout */ .filter-group { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; } .filter-group label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.25rem; display: block; } .filter-item { display: flex; flex-direction: column; } /* Dark Mode für neue Elemente */ [data-theme="dark"] .tool-card-source { color: var(--text-muted); } [data-theme="dark"] .sort-select, [data-theme="dark"] .source-filter { background: var(--card-bg); border-color: var(--border); color: var(--text); } /* Responsive */ @media (max-width: 640px) { .filter-group { flex-direction: column; align-items: stretch; } .sort-select, .source-filter { width: 100%; } } /* Filter Row mit Selects */ .filter-row-selects { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; } .filter-row-selects .filter-group { flex: 1; min-width: 140px; } @media (max-width: 768px) { .filter-row-selects { flex-direction: column; } .filter-row-selects .filter-group { width: 100%; } } /* Profi-Filter Toggle */ .filter-row-toggle { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); } .profi-filter-toggle { display: flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--text2); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s ease; height: 44px; } .profi-filter-toggle:hover { border-color: var(--primary); color: var(--primary); } .profi-filter-toggle.active { background: rgba(255, 45, 125, 0.08); border-color: var(--primary); color: var(--primary); } .profi-filter-toggle .toggle-arrow { transition: transform 0.2s ease; } .profi-filter-toggle.active .toggle-arrow { transform: rotate(180deg); } .profi-filter-section { padding-top: 16px; margin-top: 16px; border-top: 1px dashed var(--border); animation: slideDown 0.2s ease; } .profi-filter-section .filter-group { margin-bottom: 16px; } .profi-filter-section .filter-group:last-child { margin-bottom: 0; } .profi-filter-section .filter-row-selects { margin-top: 16px; } @keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 640px) { .profi-filter-toggle { width: 100%; justify-content: center; } } 