/* About Page Styles */
.about-page {
    background: linear-gradient(135deg, #fff8e1 0%, #fff2a8 100%);
    min-height: 100vh;
    padding-top: 80px;
}

.page-header {
    text-align: center;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f0fff4 0%, #a8e6cf 100%);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.page-title {
    font-family: 'RocknRoll One', 'Arial', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 0px rgba(168, 230, 207, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Profile Section */
.profile-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 6rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.profile-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #a8e6cf;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
}

.profile-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco-element {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.deco-element.star {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.deco-element.heart {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.deco-element.sparkle {
    top: 60%;
    right: 5%;
    animation-delay: 2s;
}

.profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-name {
    font-family: 'RocknRoll One', 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #a8e6cf 0%, #88d8c0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-title {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

.profile-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.profile-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    flex: 1;
}

.stat-number {
    font-family: 'RocknRoll One', 'Arial', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #88d8c0;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Skills Section */
.skills-section,
.tools-section,
.experience-section {
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'RocknRoll One', 'Arial', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #a8e6cf 0%, #88d8c0 100%);
    border-radius: 2px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.skill-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.skill-title {
    font-family: 'RocknRoll One', 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.skill-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* Tools Section */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tool-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-3px);
}

.tool-name {
    font-family: 'RocknRoll One', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.tool-usage {
    font-size: 0.9rem;
    color: #666;
}

/* Experience Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #a8e6cf 0%, #88d8c0 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    background: linear-gradient(135deg, #a8e6cf 0%, #88d8c0 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'RocknRoll One', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    margin: 0 2rem;
}

.timeline-content h3 {
    font-family: 'RocknRoll One', 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, #a8e6cf 0%, #88d8c0 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.cta-title {
    font-family: 'RocknRoll One', 'Arial', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #88d8c0;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .profile-img {
        width: 200px;
        height: 200px;
    }
    
    .profile-stats {
        justify-content: center;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-date {
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .profile-section {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
