/* Page Styles */
.page-header {
    padding: 120px 0 60px;
    background: transparent;
    margin-top: 80px;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.page-header p {
    font-size: 1.125rem;
    color: var(--secondary);
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 24px;
    text-align: center;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-light {
    background: var(--light-gray);
}

.section-accent {
    background: var(--accent);
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, rgba(250, 250, 250, 0.95) 100%);
    z-index: -1;
}

.hero-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    box-shadow: 0 20px 60px rgba(230, 126, 34, 0.2);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 32px;
    color: var(--secondary);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--secondary);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 600px;
}

.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);
    }
}

/* Portfolio Section */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(230, 126, 34, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Skills */
.skill-bar {
    background: var(--light-gray);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #d35400);
    border-radius: 4px;
    transition: width 1s ease;
    width: 0;
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
        margin-top: 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .hero-section {
        padding-top: 60px;
    }

    .hero-image {
        width: 300px;
        height: 300px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }
}
