/* Home Page Styles */
.home-section {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
    background: linear-gradient(to bottom, hsl(0, 0%, 100%), rgba(249, 250, 251, 0.3));
    overflow: hidden;
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

/* Profile Image Section */
.profile-image-container {
    width: 100%;
    max-width: 240px;
    position: relative;
}

.profile-image-wrapper {
    position: relative;
}

.profile-frame {
    position: absolute;
    border: 2px solid var(--primary);
    border-radius: 0.75rem;
    width: 66.666%;
    height: 66.666%;
    z-index: 1;
}

.profile-frame.frame-1 {
    bottom: -0.75rem;
    right: -0.75rem;
}

.profile-frame.frame-2 {
    top: -0.75rem;
    left: -0.75rem;
    opacity: 0.6;
}

.profile-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.profile-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.profile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent, transparent);
    opacity: 0.6;
}

/* Text Content */
.home-text {
    width: 100%;
    max-width: 28rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

.hello-badge {
    display: inline-block;
    width: fit-content;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
}

.hello-badge span {
    font-weight: 500;
    color: var(--primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.home-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(to right, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    white-space: nowrap;
}

.home-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.type-animation {
    display: inline-flex;
    align-items: baseline;
    min-height: 30px;
    min-width: 150px;
    position: relative;
}

.type-animation::after {
    content: '|';
    position: absolute;
    right: -2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.home-intro {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: justify;
}

.home-cta {
    padding-top: 0.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Responsive Design */
@media (min-width: 768px) {
    .home-content {
        flex-direction: row;
        gap: 4rem;
    }
    
    .home-title {
        font-size: 2.25rem;
    }
    
    .home-subtitle {
        font-size: 1.5rem;
    }
    
    .home-intro {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .home-section {
        padding: 2.5rem 1rem;
    }
}
