/* About App Styles */
#about-app .app-content {
    height: calc(100% - 44px);
    overflow: hidden;
    padding: 0;
    position: relative;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.about-container {
    padding: 16px 16px 50px 16px;
    text-align: center;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    max-height: 100%;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    margin-top: 20px;
    padding: 0;
    width: 100%;
}

.about-name {
    font-size: 32px;
    font-weight: 700;  /* Bolder weight */
    margin-bottom:0px;  /* Reduced gap between name and title */
    color: #1E293B;  /* Dark navy color for name */
    font-family: 'Poppins', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(30, 41, 59, 0.1);
}

.about-title {
    font-size: 20px;
    color: #64748B;  /* Gray color for title */
    margin-bottom: 30px;
    font-weight: 400;  /* Lighter weight */
    letter-spacing: 0.5px;
    font-family: 'Poppins', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    text-align: left;
    margin-bottom: 20px;
}

.about-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;  /* Added padding around icon */
}

.social-link.github-link {
    color: #181717;  /* GitHub black */
}

.social-link.linkedin-link {
    color: #0A66C2;  /* LinkedIn blue */
}

.social-link.email-link {
    color: #D2B48C;  /* Tan color for email */
}

.social-link.phone-link {
    color: #047857;  /* Emerald green for phone/calendar */
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(138, 75, 175, 0.2);  /* Adding purple shadow for variety */
}

.social-link i {
    font-size: 20px;
}

.about-section {
    margin: 25px 0;
    padding: 20px 10px; /* Reduced horizontal padding to fit more words */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.about-section.interests {
    border-color: rgba(52, 199, 89, 0.2);  /* Green border for Interests */
}

.about-section.interests .section-title {
    color: #34C759;  /* Green for Interests title */
}

.section-title {
    font-size: 22px;
    color: #007AFF;  /* Adding blue color to section titles */
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

/* Removing the blue underline */
.section-title::after {
    display: none;
}

.section-content {
    color: #34495e;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
    padding: 10px 0;  /* Added padding around text */
    /* Ensure the paragraph stretches to the right edge and properly hyphenates long words */
    text-align: left; /* Left align text for better readability */
    word-break: normal; /* Normal word breaking */
    overflow-wrap: normal; /* Normal overflow wrapping */
}

.about-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0; /* keep spacing consistent */
}

.about-list li {
    margin-bottom: 8px;
    text-align: left; /* align bullet text to the left */
    font-size: 14px; /* smaller font size for bullet points */
    color: #444; /* darker grey color for bullet points */
} 