/* 2018 Style CSS - Material Design 2.0 Era */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2C2C2C;
    --secondary-color: #3A3A3A;
    --accent-color: #FF6B35;
    --accent-light: #FF8A5B;
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --background: #2C2C2C;
    --surface: #3A3A3A;
    --shadow-light: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-medium: 0 4px 8px rgba(0,0,0,0.4);
    --shadow-heavy: 0 8px 16px rgba(0,0,0,0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation - 2018 Material Design */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    height: 64px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-1px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent-color);
}

.nav-menu a.active {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 2px 0;
    transition: var(--transition);
    border-radius: 1px;
}

/* Hero Section - Bold 2018 Style */
.hero {
    margin-top: 64px;
    min-height: 60vh;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.95), rgba(58, 58, 58, 0.9)), 
                linear-gradient(45deg, #FF6B35, #FF8A5B);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 48px 24px;
    animation: heroFadeIn 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.hero .highlight {
    background: linear-gradient(45deg, #FF8A5B, #FFB088);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 32px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-primary);
}

/* Buttons - Material Design 2018 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    min-height: 48px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    background: var(--accent-light);
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-light);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

/* Container & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-white {
    background: var(--surface);
}

.section-gray {
    background: var(--background);
}

.section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--accent-color);
    letter-spacing: -0.5px;
}

.section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.section p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Cards - Material Design 2018 */
.card {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255, 107, 53, 0.3);
}

.card h3 {
    color: var(--accent-color);
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.stats {
    background: var(--primary-color);
    color: white;
    padding: 64px 0;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.1) 100%);
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats .grid {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 500;
    color: var(--text-primary);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    text-align: center;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-heavy);
    border: 4px solid var(--accent-color);
    transition: var(--transition);
}

.profile-pic:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.4);
}

/* Timeline - 2018 Style */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-color), var(--accent-light));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
    background: var(--surface);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-left: 32px;
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 32px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 4px var(--surface);
    z-index: 2;
}

.timeline-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}

.timeline-year {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* Contact Form - Material Design */
.contact-form {
    background: var(--surface);
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--border-radius);
    background: var(--primary-color);
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    gap: 32px !important;
    margin-bottom: 48px;
}

/* Kontaktkarten schmaler und mit mehr Abstand */
.contact-card {
  max-width: 420px;
  width: 100%;
  margin-bottom: 16px;
  box-sizing: border-box;
}
.contact-cards {
  gap: 40px !important;
  margin-top: 32px;
}

/* Formular hervorheben */
.contact-card form {
  background: #232323;
  padding: 24px 18px 18px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.contact-card input,
.contact-card textarea {
  background: #181818;
  color: #fff;
  border: 1px solid #444;
  font-size: 1rem;
}
.contact-card input:focus,
.contact-card textarea:focus {
  border-color: orange;
  outline: none;
}

/* Einheitliches Button-Design */
.contact-card .btn,
.contact-form .btn {
  background: orange;
  color: #232323;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.contact-card .btn:hover,
.contact-form .btn:hover {
  background: #ff7a1a;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.contact-card h3 {
    margin-bottom: 16px;
    color: var(--accent-color);
    font-size: 1.25rem;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin: 0;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.skill-item {
    background: var(--surface);
    padding: 24px 16px;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
}

.skill-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Legal Content */
.legal-content {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 24px;
    border-left: 4px solid var(--accent-color);
}

.legal-content h3 {
    color: var(--accent-color);
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Footer - Clean 2018 Style */
.footer {
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 48px 0 32px;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 16px 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: var(--surface);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 16px;
        padding-top: 32px;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        width: 200px;
        text-align: center;
        padding: 16px;
    }
    
    .hero {
        min-height: 50vh;
    }
    
    .hero-content {
        padding: 32px 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .timeline {
        padding-left: 24px;
    }
    
    .timeline-item {
        margin-left: 16px;
        padding: 24px;
    }
    
    .section {
        padding: 64px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .card,
    .legal-content {
        padding: 24px;
    }
    
    .section {
        padding: 48px 0;
    }
    
    .stats {
        padding: 48px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection colors */
::selection {
    background: rgba(255, 107, 53, 0.3);
    color: var(--text-primary);
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Elevated surface for important content */
.elevated {
    box-shadow: var(--shadow-heavy);
    background: var(--surface);
    border: 1px solid rgba(255, 107, 53, 0.2);
} 

.service-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 48px;
  animation: fadeInSteps 1.2s;
}

@keyframes fadeInSteps {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}

.service-steps .step {
  color: orange;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.2s;
}

.service-steps .step:hover {
  transform: scale(1.08) rotate(-2deg);
}

.service-steps .arrow {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.7;
  margin: 0 4px;
}

.service-steps .icon {
  font-size: 1.2em;
} 

/* Mobile Optimierung */
@media (max-width: 600px) {
  .contact-card {
    max-width: 98vw;
    padding-left: 0;
    padding-right: 0;
  }
  .contact-card form {
    padding: 16px 4px 12px 4px;
  }
} 

/* Modernes Kontaktformular */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.contact-form input,
.contact-form textarea {
  background: #232323;
  color: #fff;
  border: 1.5px solid #333;
  border-radius: 8px;
  padding: 14px 16px 14px 44px;
  font-size: 1.08rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  position: relative;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: orange;
  box-shadow: 0 0 0 2px rgba(255,140,0,0.15);
  outline: none;
}
.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}
.contact-form .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: orange;
  color: #232323;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 16px 0;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  margin-top: 8px;
}
.contact-form .btn:hover {
  background: #ff7a1a;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
/* Input-Icons als Platzhalter */
.contact-form input[name="name"]::placeholder { content: "👤 Ihr Name *"; }
.contact-form input[name="email"]::placeholder { content: "✉️ Ihre E-Mail *"; }
.contact-form input[name="subject"]::placeholder { content: "📝 Betreff *"; }
.contact-form textarea::placeholder { content: "💬 Ihre Nachricht *"; }

/* Card-Optik für das Formular */
.contact-card form {
  background: #232323;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  padding: 28px 18px 18px 18px;
}

/* Button-Icon */
.contact-form .btn::after {
  content: "\1F4E9"; /* Papierflieger-Emoji */
  font-size: 1.2em;
  margin-left: 6px;
}

@media (max-width: 600px) {
  .contact-card form {
    padding: 16px 4px 12px 4px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
    padding-left: 38px;
  }
} 

@media (max-width: 600px) {
  .service-steps {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .service-steps .arrow {
    display: none;
  }
  .service-steps .step {
    font-size: 1.15rem;
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
} 