.hero-section {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    background: url('../img/bg_profile.png') center/cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 45, 62, 0.85);
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
}

.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

.profile-image-container {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 159, 67, 0.3);
}

.bg_profile {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--accent-color) 0%, var(--primary-color) 40%, transparent 70%);
    z-index: 1;
    opacity: 0.9;
    transform: scale(1.2);
}

.profile-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.resume-section {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.resume-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resume-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 159, 67, 0.3);
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.resume-button .iconify {
    font-size: 20px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .profile-image-container {
        width: 250px;
        height: 250px;
        margin: 0 auto 30px;
    }

    .resume-section {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .profile-image-container {
        width: 200px;
        height: 200px;
    }
} 