:root { --coke-red: #F40009; --coke-black: #000000; --coke-white: #FFFFFF; --coke-silver: #F1F1F1; --coke-dark-grey: #1A1A1A; --bg: var(--coke-white); --text: var(--coke-black); --text-muted: #555555; --accent: var(--coke-red); --border: rgba(0, 0, 0, 0.1); --font-main: 'Lexend', sans-serif; --font-heading: 'Playfair Display', serif; --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); } * { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; } body { font-family: var(--font-main); background-color: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; } /* ── CUSTOM CURSOR ── */ #cursor { width: 12px; height: 12px; background: var(--coke-red); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; mix-blend-mode: multiply; } #cursor-ring { width: 45px; height: 45px; border: 2px solid var(--coke-red); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; } /* ── NAVIGATION ── */ nav { position: fixed; top: 0; width: 100%; padding: 25px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; transition: all 0.4s ease; background: transparent; } nav.scrolled { background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(15px); padding: 15px 5%; box-shadow: 0 8px 32px rgba(0,0,0,0.08); } .logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.8rem; color: var(--coke-red); text-decoration: none; position: relative; z-index: 10; } .nav-links { display: flex; gap: 40px; list-style: none; } .nav-links a { text-decoration: none; color: var(--text); font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.3s ease; position: relative; } .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--coke-red); transition: width 0.3s ease; } .nav-links a:hover::after { width: 100%; } .lang-switcher { display: flex; gap: 8px; } .lang-btn { background: none; border: 1px solid var(--border); padding: 6px 10px; font-size: 0.7rem; cursor: pointer; transition: all 0.3s ease; font-weight: 600; } .lang-btn.active { background: var(--coke-red); color: white; border-color: var(--coke-red); } /* ── HERO SECTION ── */ .hero { height: 100vh; display: flex; align-items: center; padding: 0 5%; background: linear-gradient(135deg, #fff 60%, var(--coke-silver) 100%); position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 150%; background: radial-gradient(circle, var(--coke-red) 0%, transparent 70%); opacity: 0.08; z-index: 0; } .hero-content { max-width: 800px; position: relative; z-index: 1; } .hero-eyebrow { color: var(--coke-red); font-weight: 700; text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 20px; display: block; opacity: 0; } .hero-title { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 6rem); line-height: 1.1; margin-bottom: 20px; opacity: 0; } .hero-title span { color: var(--coke-red); font-style: italic; } .hero-desc { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin-bottom: 40px; opacity: 0; } .hero-btns { display: flex; gap: 20px; opacity: 0; } /* ── BUTTONS WITH MAGNETIC EFFECT ── */ .btn { padding: 16px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; transition: all 0.3s ease; display: inline-block; position: relative; overflow: hidden; cursor: pointer; border: none; } .btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,0.2); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.6s ease, height 0.6s ease; } .btn:hover::before { width: 300px; height: 300px; } .btn-primary { background: var(--coke-red); color: white; box-shadow: 0 15px 35px rgba(244, 0, 9, 0.25); position: relative; z-index: 1; } .btn-primary:hover { transform: translateY(-5px); box-shadow: 0 25px 50px rgba(244, 0, 9, 0.4); } .btn-outline { border: 2px solid var(--coke-red); color: var(--coke-red); background: transparent; } .btn-outline:hover { background: var(--coke-red); color: white; transform: translateY(-5px); } /* ── STATS SECTION ── */ .stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; padding: 80px 5%; background: var(--coke-black); color: white; position: relative; overflow: hidden; } .stats::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(90deg, transparent 0%, rgba(244,0,9,0.05) 50%, transparent 100%); pointer-events: none; } .stat-item { text-align: center; position: relative; z-index: 1; } .stat-num { font-size: 3.5rem; font-weight: 700; color: var(--coke-red); display: block; opacity: 0; } .stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; margin-top: 10px; } /* ── SECTIONS ── */ section { padding: 100px 5%; position: relative; } .section-header { margin-bottom: 60px; opacity: 0; } .section-num { color: var(--coke-red); font-weight: 700; font-size: 1rem; margin-bottom: 10px; display: block; } .section-title { font-family: var(--font-heading); font-size: 3rem; line-height: 1.2; } /* ── JOURNEY / TIMELINE ── */ .journey { background: var(--coke-silver); } .timeline { position: relative; max-width: 1000px; margin: 0 auto; } .timeline::before { content: ''; position: absolute; left: 50%; width: 2px; height: 100%; background: var(--border); transform: translateX(-50%); } .timeline-item { margin-bottom: 80px; width: 50%; position: relative; padding: 0 40px; opacity: 0; } .timeline-item:nth-child(odd) { left: 0; text-align: right; } .timeline-item:nth-child(even) { left: 50%; text-align: left; } .timeline-dot { width: 20px; height: 20px; background: var(--coke-red); border-radius: 50%; position: absolute; top: 5px; z-index: 2; box-shadow: 0 0 0 4px var(--coke-white), 0 0 0 8px var(--coke-red); transition: all 0.3s ease; } .timeline-item:nth-child(odd) .timeline-dot { right: -10px; } .timeline-item:nth-child(even) .timeline-dot { left: -10px; } .timeline-item:hover .timeline-dot { transform: scale(1.3); box-shadow: 0 0 0 4px var(--coke-white), 0 0 0 8px var(--coke-red), 0 0 20px var(--coke-red); } .timeline-date { font-weight: 700; color: var(--coke-red); margin-bottom: 8px; display: block; font-size: 0.95rem; } .timeline-content h3 { font-size: 1.6rem; margin-bottom: 10px; font-family: var(--font-heading); } .timeline-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; } /* ── EXPERTISE CARDS ── */ .expertise { background: white; } .expertise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; } .expertise-card { padding: 40px; background: white; border: 1px solid var(--border); border-radius: 20px; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; opacity: 0; } .expertise-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent 0%, rgba(244,0,9,0.05) 50%, transparent 100%); transition: left 0.6s ease; } .expertise-card:hover::before { left: 100%; } .expertise-card:hover { transform: translateY(-15px); border-color: var(--coke-red); box-shadow: 0 30px 60px rgba(244,0,9,0.15); } .card-icon { font-size: 2.5rem; color: var(--coke-red); margin-bottom: 20px; display: block; } .card-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 15px; font-family: var(--font-heading); } .card-desc { color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; } .skill-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; } .skill-pill { background: var(--coke-silver); padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 500; transition: all 0.3s ease; } .expertise-card:hover .skill-pill { background: var(--coke-red); color: white; } /* ── KI SECTION ── */ .ki-section { background: var(--coke-black); color: white; position: relative; overflow: hidden; } .ki-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 50%; height: 150%; background: radial-gradient(circle, var(--coke-red) 0%, transparent 70%); opacity: 0.05; z-index: 0; } .ki-card { background: rgba(255,255,255,0.05); padding: 50px; border-radius: 30px; border-left: 5px solid var(--coke-red); margin-bottom: 50px; backdrop-filter: blur(10px); position: relative; z-index: 1; opacity: 0; } .module-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; position: relative; z-index: 1; } .module-item { background: rgba(255,255,255,0.08); padding: 18px; border-radius: 12px; display: flex; align-items: center; gap: 15px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); opacity: 0; cursor: pointer; border: 1px solid rgba(244,0,9,0.2); } .module-item:hover { background: var(--coke-red); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(244,0,9,0.3); } .module-num { font-weight: 700; color: var(--coke-red); min-width: 30px; } .module-item:hover .module-num { color: white; } /* ── EDUCATION ── */ .education { background: white; } .edu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .edu-card { padding: 35px; background: var(--coke-silver); border-radius: 15px; transition: all 0.4s ease; opacity: 0; border-left: 4px solid transparent; } .edu-card:hover { border-left-color: var(--coke-red); transform: translateX(10px); } .lang-grid { margin-top: 80px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; } .lang-item { position: relative; opacity: 0; } .lang-name { font-weight: 700; margin-bottom: 12px; display: flex; justify-content: space-between; } .lang-bar-bg { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; } .lang-bar { height: 100%; background: linear-gradient(90deg, var(--coke-red), #ff4444); width: 0; transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1); } /* ── CONTACT ── */ .contact { background: linear-gradient(135deg, var(--coke-red) 0%, #cc0007 100%); color: white; text-align: center; position: relative; overflow: hidden; } .contact::before { content: ''; position: absolute; top: -50%; left: -10%; width: 50%; height: 150%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); z-index: 0; } .contact-inner { position: relative; z-index: 1; } .contact-title { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 40px; opacity: 0; } .contact-info { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 60px; opacity: 0; } .contact-link { color: white; text-decoration: none; font-size: 1.1rem; font-weight: 500; border-bottom: 2px solid rgba(255,255,255,0.4); padding-bottom: 5px; transition: all 0.3s ease; } .contact-link:hover { border-color: white; transform: translateY(-3px); } .contact-form { max-width: 600px; margin: 0 auto; text-align: left; background: white; padding: 40px; border-radius: 20px; color: var(--coke-black); opacity: 0; } .form-group { margin-bottom: 20px; } .form-label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; } .form-input, .form-textarea, .form-select { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 8px; font-family: var(--font-main); transition: all 0.3s ease; } .form-input:focus, .form-textarea:focus { border-color: var(--coke-red); box-shadow: 0 0 0 3px rgba(244,0,9,0.1); outline: none; } .form-textarea { height: 120px; resize: none; } footer { padding: 40px 5%; text-align: center; background: var(--coke-silver); font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; } /* ── RESPONSIVE ── */ @media (max-width: 768px) { .nav-links { display: none; } .hero { text-align: center; justify-content: center; } .hero-btns { justify-content: center; flex-direction: column; } .timeline::before { left: 20px; } .timeline-item { width: 100%; text-align: left !important; padding-left: 50px; } .timeline-dot { left: 12px !important; } .section-title { font-size: 2.2rem; } .stats { grid-template-columns: 1fr 1fr; } .contact-info { flex-direction: column; gap: 20px; } } /* ── PROFILE PHOTO ── */ .hero-photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; object-position: center top; border: 4px solid var(--coke-red); box-shadow: 0 0 0 8px rgba(244,0,9,0.1), 0 20px 60px rgba(0,0,0,0.15); margin-bottom: 30px; display: block; opacity: 0; animation: photoReveal 1s cubic-bezier(0.16,1,0.3,1) 1s forwards; } @keyframes photoReveal { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } } .hero-photo:hover { box-shadow: 0 0 0 8px rgba(244,0,9,0.2), 0 25px 70px rgba(244,0,9,0.2); transform: scale(1.04); transition: all 0.4s cubic-bezier(0.16,1,0.3,1); }
Ich verbinde strategisches Marketing-Know-how mit fundierter KI-Kompetenz — von der Kampagnenentwicklung über Prompt Engineering bis hin zur KI-Transformation ganzer Unternehmen.
Von Sales & Retail über Marketing-Spezialistin zur KI-Dozentin — eine Karriere, die Tiefe und Breite vereint.
Business Academy Ruhr / IHK & Freelance. Strategische Beratung und Schulung von Unternehmen in KI-Workflows und modernem Marketing.
Fokus auf digitale Strategien, Kampagnenmanagement und die Integration von KI-Tools in den Marketing-Mix.
High-End Kundenberatung und Vertrieb in internationalen Märkten. Entwicklung eines tiefen Verständnisses für Kundenpsychologie.
Grundsteinlegung in Sales und Kundenkommunikation. Aufbau von langfristigen Kundenbeziehungen.
Sechs Kernbereiche, die ich nicht nur kenne — sondern täglich lebe und lehre.
KI ist mein Fachgebiet. Ich entwickle Strategien und Workflow-Automatisierungen für den gesamten KI-Stack.
Planung und Optimierung kanalübergreifender Kampagnen — von der Idee bis zur datenbasierten Auswertung.
Strategische Content-Produktion für Social Media. Videografie, Design und plattformspezifisches Storytelling.
Eigenständige Gestaltung von Marketingprozessen, Marktanalyse und strategische Markenführung.
Übersetzung komplexer KI-Themen in praxisnahe Inhalte für Führungskräfte und Teams.
Über 10 Jahre Erfahrung im High-End Verkauf. Ich verstehe, wie Kaufentscheidungen entstehen.
Als Dozentin bringe ich aktuelles KI-Wissen direkt in Unternehmen.
Praxisnahes Programm für den professionellen KI-Einsatz im Berufsalltag — von Textarbeit über Bildgenerierung bis zur Datenanalyse und Prozessautomatisierung.
IHK Augsburg
IHK Bonn
Swiss Management School, Manno
IHK Bonn