/* Global Styles */
body {
    margin: 0;
    background: var(--color-background);
    color: var(--color-text-primary);
    font-family: 'Montserrat', Arial, sans-serif;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation classes for scroll triggering */
.animate-on-scroll {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
}

.animate-on-scroll.animate-fade-in-up.animated {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-on-scroll.animate-fade-in-left.animated {
    animation: fadeInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-on-scroll.animate-fade-in-right.animated {
    animation: fadeInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-on-scroll.animate-scale-in.animated {
    animation: scaleIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Staggered animation delays */
.animate-delay-1 {
    animation-delay: 0.15s;
}

.animate-delay-2 {
    animation-delay: 0.3s;
}

.animate-delay-3 {
    animation-delay: 0.45s;
}

.animate-delay-4 {
    animation-delay: 0.6s;
}

.animate-delay-5 {
    animation-delay: 0.75s;
}

.animate-delay-6 {
    animation-delay: 0.9s;
}

/* About Me Header Section */
.about-header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    padding: 120px 20px 60px;
    box-sizing: border-box;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 60px;
}

/* Left Container - Picture */
.about-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced image container animations */
.about-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-portrait:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Right Container - Description and Text */
.about-content-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    width: 100%;
    max-width: 500px;
}

.about-name {
    color: var(--color-text-primary);
    font-size: 3rem;
    font-weight: 400;
    margin: 0 0 10px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
    transition: color 0.3s ease;
}

.about-name:hover {
    color: var(--color-text-secondary);
}

.about-profession {
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0 0 30px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.about-profession:hover {
    color: var(--color-text-primary);
}

.about-description {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 0 40px 0;
    line-height: 1.8;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.about-description:hover {
    color: var(--color-text-secondary);
}

.about-details {
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
    transition: transform 0.3s ease, padding-left 0.3s ease;
    padding-left: 0;
}

.detail-item:hover {
    transform: translateX(10px);
    padding-left: 10px;
}

.detail-label {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    min-width: 120px;
    transition: color 0.3s ease;
}

.detail-item:hover .detail-label {
    color: var(--color-text-primary);
}

.detail-value {
    color: var(--color-text-primary);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.detail-item:hover .detail-value {
    color: var(--color-text-secondary);
}

/* Email link styling */
.email-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.email-link:hover {
    color: var(--color-text-secondary);
    text-decoration: underline;
}

.detail-item:hover .email-link {
    color: var(--color-text-secondary);
}

.about-quote {
    border-left: 3px solid var(--color-text-primary);
    padding-left: 20px;
    margin-top: 30px;
    transition: border-left-color 0.3s ease, padding-left 0.3s ease;
}

.about-quote:hover {
    border-left-color: var(--color-text-secondary);
    padding-left: 25px;
}

.about-quote p {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.about-quote:hover p {
    color: var(--color-text-secondary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-container {
        gap: 40px;
    }
    
    .about-name {
        font-size: 2.5rem;
    }
    
    .about-profession {
        font-size: 1.1rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
    .about-header {
        padding: 100px 20px 40px;
        min-height: auto;
    }
    
    .about-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .about-image-container {
        order: 1;
    }
    
    .about-content-container {
        order: 2;
    }
    
    .about-image {
        max-width: 400px;
    }
    
    .about-name {
        font-size: 2.2rem;
    }
    
    .about-profession {
        font-size: 1rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .detail-item {
        justify-content: center;
        text-align: left;
    }
    
    .about-quote {
        border-left: none;
        border-top: 3px solid var(--color-text-primary);
        padding-left: 0;
        padding-top: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 600px) {
    .about-header {
        padding: 80px 20px 30px;
    }
    
    .about-container {
        gap: 40px;
    }
    
    .about-image {
        max-width: 300px;
    }
    
    .about-name {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .about-profession {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .about-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 20px;
    }
    
    .detail-label {
        font-size: 0.8rem;
        min-width: auto;
    }
    
    .detail-value {
        font-size: 0.9rem;
    }
    
    .about-quote p {
        font-size: 1rem;
    }
} 

/* Footer link hover effects */
.footer-links a,
.footer-social a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--color-text-secondary);
    transform: translateX(5px);
} 