/* About Page Enhanced Styles */

/* Content Section */
.about-content {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(200, 26, 117, 0.02) 50%,
        transparent 100%
    );
}

/* About Card Container */
.about-card {
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.95), rgba(40, 40, 50, 0.95));
    border-radius: 20px;
    padding: 60px;
    margin: 40px auto;
    max-width: 900px;
    position: relative;
    border: 1px solid rgba(200, 26, 117, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent,
        #c81a75,
        #e63989,
        #c81a75,
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Profile Section */
.profile-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c81a75, #e63989);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(200, 26, 117, 0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.profile-avatar::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c81a75, transparent, #e63989);
    z-index: -1;
    animation: rotate 4s linear infinite;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #c81a75, #e63989);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.profile-title {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Text Styles */
.content-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.lead-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid #c81a75;
    animation: fadeInLeft 0.8s ease;
}

.content-text p {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.content-text p:nth-child(2) {
    animation-delay: 0.4s;
}

.content-text p:nth-child(3) {
    animation-delay: 0.6s;
}

/* Skills/Interests Section */
.skills-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(200, 26, 117, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(200, 26, 117, 0.2);
}

.skills-title {
    font-size: 1.5rem;
    color: #e63989;
    margin-bottom: 20px;
    text-align: center;
}

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

.skill-item {
    background: linear-gradient(135deg, rgba(200, 26, 117, 0.1), rgba(230, 57, 137, 0.1));
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(200, 26, 117, 0.3);
    transition: all 0.3s ease;
    cursor: default;
}

.skill-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(200, 26, 117, 0.2), rgba(230, 57, 137, 0.2));
    box-shadow: 0 10px 20px rgba(200, 26, 117, 0.3);
}

/* Contact Info Enhancement */
.contact-info {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(40, 40, 50, 0.8), rgba(50, 50, 60, 0.8));
    border-radius: 15px;
    border: 1px solid rgba(200, 26, 117, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(200, 26, 117, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(230, 57, 137, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-info h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #c81a75, #e63989);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.contact-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(200, 26, 117, 0.2), rgba(230, 57, 137, 0.2));
    border: 1px solid rgba(200, 26, 117, 0.4);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: linear-gradient(135deg, #c81a75, #e63989);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200, 26, 117, 0.4);
}

.contact-link i {
    font-size: 1.2rem;
}

/* Timeline/Journey Section */
.journey-section {
    margin: 60px 0;
}

.journey-title {
    text-align: center;
    font-size: 2rem;
    color: #e63989;
    margin-bottom: 40px;
}

.journey-timeline {
    position: relative;
    padding-left: 40px;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #c81a75, transparent);
}

.journey-item {
    position: relative;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.journey-item:nth-child(1) { animation-delay: 0.2s; }
.journey-item:nth-child(2) { animation-delay: 0.4s; }
.journey-item:nth-child(3) { animation-delay: 0.6s; }

.journey-dot {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #c81a75;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(200, 26, 117, 0.3);
}

.journey-content {
    padding: 15px 20px;
    background: rgba(200, 26, 117, 0.05);
    border-radius: 10px;
    border-left: 3px solid #c81a75;
}

.journey-year {
    color: #e63989;
    font-weight: bold;
    margin-bottom: 5px;
}

.journey-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Quote Section */
.quote-section {
    text-align: center;
    padding: 40px;
    margin: 40px 0;
    position: relative;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    display: inline-block;
}

.quote-text::before,
.quote-text::after {
    content: '"';
    font-size: 3rem;
    color: #c81a75;
    position: absolute;
    opacity: 0.3;
}

.quote-text::before {
    top: -20px;
    left: -40px;
}

.quote-text::after {
    bottom: -40px;
    right: -40px;
}

/* Animations */
@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);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-card {
        padding: 40px 20px;
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
    }

    .skills-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-links {
        flex-direction: column;
    }

    .profile-name {
        font-size: 2rem;
    }
}

