/* ============================================
   LILAPIXEL Modern Hero Section
   Kombiniert Header + "Das bin ich"
   ============================================ */

/* Hero Section - Combined Header + About */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a1a 0%, #2d0f2d 50%, #0a0a12 100%);
    padding: 50px 0 60px 0;
}

/* Animated Background Elements */
#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 0, 102, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123, 45, 142, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(148, 80, 146, 0.15) 0%, transparent 30%);
    animation: heroGlow 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
        opacity: 1;
    }
    33% { 
        transform: translate(2%, -2%) rotate(2deg); 
        opacity: 0.8;
    }
    66% { 
        transform: translate(-1%, 1%) rotate(-1deg); 
        opacity: 0.9;
    }
}

/* Floating Pixel Accents */
.hero-pixels {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-pixel {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(123, 45, 142, 0.4);
    animation: floatPixel 20s ease-in-out infinite;
}

.hero-pixel:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.hero-pixel:nth-child(2) { top: 25%; left: 85%; animation-delay: -4s; width: 12px; height: 12px; }
.hero-pixel:nth-child(3) { top: 60%; left: 5%; animation-delay: -8s; width: 6px; height: 6px; }
.hero-pixel:nth-child(4) { top: 80%; left: 75%; animation-delay: -12s; }
.hero-pixel:nth-child(5) { top: 45%; left: 92%; animation-delay: -16s; width: 10px; height: 10px; }
.hero-pixel:nth-child(6) { top: 70%; left: 25%; animation-delay: -3s; width: 5px; height: 5px; }

@keyframes floatPixel {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-30px) rotate(45deg); opacity: 0.7; }
}

/* Hero Container */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6em;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4em;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Image Side */
.hero-image-wrapper {
    position: relative;
}

.hero-image-frame {
    position: relative;
    max-width: 450px;
    margin-left: auto;
}

/* Geometric Frame Effect */
.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(123, 45, 142, 0.5);
    z-index: -1;
    transition: all 0.4s ease;
}

.hero-image-frame:hover::before {
    top: -25px;
    left: -25px;
    border-color: rgba(123, 45, 142, 0.8);
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(102, 0, 102, 0.3) 0%, rgba(123, 45, 142, 0.1) 100%);
    z-index: -2;
    transition: all 0.4s ease;
}

.hero-image-frame:hover::after {
    top: 25px;
    left: 25px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(10%) contrast(1.05);
    transition: all 0.4s ease;
}

.hero-image-frame:hover .hero-image {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.02);
}

/* Content Side */
.hero-content {
    color: #fff;
}

.hero-tagline {
    display: inline-block;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.85em;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5em;
    position: relative;
    padding-left: 3em;
}

.hero-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2em;
    height: 1px;
    background: linear-gradient(90deg, #7B2D8E, transparent);
}

.hero-name {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 3.5em;
    font-weight: 300;
    line-height: 1.3;
    margin: 0 0 0.2em 0;
    text-transform: none;
    color: #fff;
    letter-spacing: -0.02em;
}

.hero-name span {
    display: block;
    padding-bottom: 0.1em;
    background: linear-gradient(135deg, #fff 0%, #d4a5d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.5em;
    font-weight: 300;
    color: #7B2D8E;
    margin: 0 0 2em 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2.5em 0;
    max-width: 500px;
}

.hero-description strong {
    color: #fff;
    font-weight: 400;
}

/* Highlight Line */
.hero-highlight {
    display: flex;
    align-items: center;
    gap: 1.5em;
    margin-bottom: 2.5em;
    padding: 1.5em 0;
    border-top: 1px solid rgba(123, 45, 142, 0.3);
    border-bottom: 1px solid rgba(123, 45, 142, 0.3);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2.5em;
    font-weight: 300;
    color: #7B2D8E;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5em;
}

.hero-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(123, 45, 142, 0.5), transparent);
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    gap: 1.5em;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 1em 2em;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #660066 0%, #7B2D8E 100%);
    color: #fff;
    border: 1px solid transparent;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8a4088 0%, #a358a3 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-btn-primary:hover::before {
    opacity: 1;
}

.hero-btn-primary:hover {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary span {
    position: relative;
    z-index: 1;
}

.hero-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    border-color: #7B2D8E;
    background: rgba(123, 45, 142, 0.1);
    color: #fff;
}

/* Scroll Indicator - Hidden */
.hero-scroll {
    display: none;
}

/* Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    animation: fadeInLeft 1s ease 0.3s both;
}

.hero-tagline {
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-name {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-title {
    animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-description {
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-highlight {
    animation: fadeInUp 0.8s ease 0.9s both;
}

.hero-actions {
    animation: fadeInUp 0.8s ease 1s both;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media screen and (max-width: 1200px) {
    .hero-container {
        padding: 0 3em;
        gap: 3em;
    }
    
    .hero-name {
        font-size: 2.8em;
    }
    
    .hero-image-frame {
        max-width: 380px;
    }
}

@media screen and (max-width: 980px) {
    #hero {
        min-height: auto;
        padding: 80px 0 80px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3em;
        padding: 0 2em;
    }
    
    .hero-image-wrapper {
        order: -1;
        animation: fadeInUp 1s ease 0.3s both;
    }
    
    .hero-image-frame {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-image-frame::before {
        top: -15px;
        left: -15px;
        right: 15px;
        bottom: 15px;
    }
    
    .hero-image-frame::after {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
    }
    
    .hero-tagline {
        padding-left: 0;
    }
    
    .hero-tagline::before {
        display: none;
    }
    
    .hero-name {
        font-size: 2.5em;
    }
    
    .hero-description {
        max-width: none;
    }
    
    .hero-highlight {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-scroll {
        display: none;
    }
}

@media screen and (max-width: 736px) {
    #hero {
        padding: 70px 0 60px 0;
    }
    
    .hero-container {
        padding: 0 1.5em;
        gap: 2em;
    }
    
    .hero-image-frame {
        max-width: 280px;
    }
    
    .hero-image-frame::before,
    .hero-image-frame::after {
        display: none;
    }
    
    .hero-name {
        font-size: 2em;
    }
    
    .hero-title {
        font-size: 1.2em;
    }
    
    .hero-description {
        font-size: 1em;
    }
    
    .hero-highlight {
        flex-direction: column;
        gap: 1em;
        padding: 1.5em 0;
    }
    
    .hero-divider {
        width: 50px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(123, 45, 142, 0.5), transparent);
    }
    
    .hero-stat-number {
        font-size: 2em;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    #hero {
        padding: 60px 0 50px 0;
    }
    
    .hero-image-frame {
        max-width: 240px;
    }
    
    .hero-name {
        font-size: 1.8em;
    }
    
    .hero-tagline {
        font-size: 0.75em;
    }
}
