/* Hero Component - Persona Style */
.hero-section {
    padding: 40px 0;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: var(--text-light);
}

.hero-greeting {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 600;
}

.hero-name {
    max-width: 450px;
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}

.hero-tagline {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);   
     margin: 0;
    font-weight: 500;
}

.hero-social {
    display: flex;
    gap: 1rem;
    margin: 0;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--dark-section);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 160, 122, 0.3);
}

.social-icon:nth-child(2):hover {
    background-color: var(--accent-blue);
    box-shadow: 0 4px 15px rgba(128, 154, 207, 0.3);
}

.social-icon i {
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.hero-buttons a {
    border-radius: 50px;
}

.btn-hero-primary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 160, 122, 0.1), rgba(255, 182, 193, 0.1));
    transition: var(--transition);
    z-index: -1;
}

.btn-hero-primary:hover {
    border-color: rgba(255, 160, 122, 0.5);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 160, 122, 0.2);
}

.btn-hero-primary:hover::before {
    left: 0;
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 250px;
    min-width: 250px;
}

.hero-image {
    position: relative;
    flex: 1 1 300px;
    min-width: 300px;
    max-width: 500px;
    aspect-ratio: 1/1;
    overflow: hidden;
}


.hero-image img {
    width: 100%;
    aspect-ratio: 1/1;
object-position: top;
    object-fit: cover;
    border-radius: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-name {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-name {
        font-size: 3rem;
    }

    .hero-text {
        justify-content: center;
        align-items: center;
        text-align: center;
        flex: 1;
    }

    .hero-image {
        max-width: 350px;
        margin: 0 auto;
        height: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    .hero-tagline {
        max-width: 400px;
    }

}

@media (max-width: 480px) {
    .hero-name {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }
}
