/* Sam Rafferty | IS 201 Final Project | custom.css */
/* Custom CSS overrides for the Bootstrap Resume theme pages (index.html, projects.html) */
/* Tightens the theme's vertical whitespace and adds styles for the projects page */

/* === Tightened resume section spacing === */
section.resume-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
    section.resume-section {
        min-height: auto;
    }
}

@media (min-width: 992px) {
    section.resume-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

section.resume-section h1.mb-0 {
    margin-bottom: 0.25rem !important;
}

section.resume-section .subheading.mb-5 {
    margin-bottom: 1.25rem !important;
}

section.resume-section .lead.mb-5 {
    margin-bottom: 0 !important;
}

section.resume-section h2.mb-5 {
    margin-bottom: 1.5rem !important;
}

section.resume-section .d-flex.mb-5 {
    margin-bottom: 1.5rem !important;
}

section.resume-section .subheading.mb-3 {
    margin-bottom: 0.5rem !important;
}

section.resume-section .fa-ul.mb-4 {
    margin-bottom: 1rem !important;
}

section.resume-section p {
    margin-bottom: 0.75rem;
}

/* === Projects page styles === */
.projects-wrap {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.project-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #bd5d38;
}

.project-card h3 {
    color: #bd5d38;
    font-family: 'Saira Extra Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-card p {
    color: #444;
    line-height: 1.6;
}

.project-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.4rem;
    background-color: #bd5d38;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: background-color 0.2s;
}

.project-link:hover {
    background-color: #a94e2d;
    color: #fff;
}

.page-title {
    font-family: 'Saira Extra Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #bd5d38;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 3rem;
}
