/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-container {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.profile-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    z-index: 1;
    flex-shrink: 0;
}

.profile-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.3;
    filter: blur(20px);
    animation: pulse 2s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.profil-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
    transition: var(--transition);
    display: block;
}

.profil-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

.profile-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.2) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.hero-title {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.title-line {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    opacity: 0.9;
}

.title-name {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), #00cc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: clamp(2.5rem, 8vw, 6.5rem);
    line-height: 1.2;
    margin: 0;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.title-role {
    display: block;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    font-weight: 300;
    margin-top: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.8;
    opacity: 0.85;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.7;
    padding: 0 20px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

/* Mobile Hero Section */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px 60px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        padding: 0 15px;
        width: 100%;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }

    .profile-container {
        margin-bottom: 0.5rem;
    }

    .profile-image-wrapper {
        margin-bottom: 1.5rem;
    }

    .profil-image {
        width: 180px;
        height: 180px;
        border-width: 4px;
    }

    .profile-image-wrapper::before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }

    .profile-glow {
        width: 200px;
        height: 200px;
    }

    .hero-title {
        margin-bottom: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
    }

    .title-line {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
        margin-top: 0;
        display: block;
        color: var(--text-secondary);
        line-height: 1.5;
        padding: 0;
        width: 100%;
    }

    .title-name {
        font-size: 2.8rem;
        margin: 0;
        margin-bottom: 0.8rem;
        line-height: 1.15;
        display: block;
        padding: 0;
        width: 100%;
        word-break: keep-all;
    }

    .title-role {
        font-size: 0.85rem;
        margin-top: 0.5rem;
        margin-bottom: 0;
        display: block;
        letter-spacing: 0.15em;
        color: var(--text-secondary);
        padding: 0;
    }

    .hero-description {
        font-size: 1rem;
        margin-top: 0;
        margin-bottom: 0;
        padding: 0;
        line-height: 1.7;
        width: 100%;
        max-width: 100%;
        color: var(--text-secondary);
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .hero-buttons .btn {
        width: auto;
        min-width: 280px;
        max-width: 100%;
        padding: 18px 32px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 50px;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.5px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 15px 50px;
        min-height: 100vh;
    }

    .hero-content {
        max-width: 100%;
        gap: 1.5rem;
        padding: 0 10px;
    }

    .profile-image-wrapper {
        margin-bottom: 1rem;
    }

    .profil-image {
        width: 160px;
        height: 160px;
        border-width: 4px;
    }

    .profile-image-wrapper::before {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
    }

    .profile-glow {
        width: 180px;
        height: 180px;
    }

    .hero-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
        padding: 0;
    }

    .title-line {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        margin-top: 0;
        line-height: 1.5;
        display: block;
        padding: 0;
        width: 100%;
    }

    .title-name {
        font-size: 2.2rem;
        margin: 0;
        margin-bottom: 1rem;
        line-height: 1.15;
        display: block;
        padding: 0;
        width: 100%;
        word-break: keep-all;
    }

    .title-role {
        font-size: 0.8rem;
        margin-top: 0.5rem;
        margin-bottom: 0;
        padding: 0;
    }

    .title-role {
        font-size: 0.85rem;
        margin-top: 0.6rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-buttons {
        gap: 0.9rem;
    }

    .hero-buttons .btn {
        min-width: 260px;
        padding: 16px 28px;
        font-size: 14px;
        min-height: 52px;
    }
}

