/* Custom CSS for Ryan Mooney's Portfolio */

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Home Page */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Resume */
.skill-item {
    margin-bottom: 20px;
}

.skill-bar {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background-color: var(--bs-primary);
}

/* Projects */
.project-card {
    transition: transform 0.3s ease;
}

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

/* Contact */
.contact-info-item {
    margin-bottom: 15px;
}

/* Footer */
footer {
    margin-top: auto;
}
