/* Custom styles for the resume website */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 56px; /* For fixed navbar */
}

.section-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-weight: bold;
    color: #333;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #007bff;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.profile-img {
    max-width: 300px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.social-icons a {
    font-size: 1.5rem;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #007bff !important;
}

/* Resume specific styles */
#resume-content {
    line-height: 1.6;
}

#resume-content h1, 
#resume-content h2, 
#resume-content h3, 
#resume-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

#resume-content ul {
    padding-left: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-container {
        padding: 40px 0;
    }
    
    .profile-img {
        max-width: 200px;
        margin-top: 30px;
    }
}
