/* Padding for the body content */
body {
    padding-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 20px;
}

/* Jumbotron styles */
.jumbotron {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    border-radius: 0.3rem;
}

/* Card styles */
.card {
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s ease-in-out;
}

/* Skills section */
.skill-item {
    margin-bottom: 15px;
}

.progress {
    height: 25px;
}

/* Project section */
.project-card {
    height: 100%;
}

.project-card img {
    max-height: 200px;
    object-fit: contain;
    background-color: #343a40;
}

/* Contact form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jumbotron {
        padding: 2rem 1rem;
    }
} 