/* Kinley Cummins
07/28/25
styles.css */

/* base styles - setting default font, text color, and spacing */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Headings - setting consistent style and color for h1, h2, and h3 */
h1,
h2,
h3 {
    color: #130e11;
    margin-bottom: 0.9rem;
}

/* Navigation section */
/* Style navbar font weight */
.navbar {
    font-weight: 500;
}

/* Pink color when hovered on nav links */
.navbar-light .navbar-nav .nav-link:hover {
    color: #c76b7a;
}

/* Header section */
/* Applying background image and spacing to the header */
.header-bg {
    background-image: url("../images/header-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 1rem;
}

/* Large text for h1 that's inside the header */
header h1 {
    font-size: 2.5rem;
    color: black;
}

/* Font sizing for the tagline inside the header */
.tagline {
    font-size: 1.25rem;
    color: black;
}

/* Styling for the contact info within my header */
.contact-info{
    font-size: 1.25rem;
    color: black;
}

/* Dotted pink border around the skills section */
#skills-section {
    border: 7px dotted rgb(250, 138, 153);
}

/* Dotted pink border aorund the contact section */
#contact-section {
    border: 7px dotted rgb(250, 138, 153);
    ;
}

/* padding for all other sections */
section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Project and skills cards */
/* Shared styles for both the project and skill cards */
.proj-skills-card {
    border: 1px solid #f9d0da;
    box-shadow: 0 0 10px rgba(248, 53, 150, 0.1);
    transition: transform 0.2s;
    padding-bottom: 1rem;
}

/* Slight lift effect when hovering on a card */
.proj-skills-card:hover {
    transform: translateY(-5px);
}

/* Card title color and spacing */
.proj-skills-card-title {
    color: #050405;
    padding-top: 0.5rem;
}

/* Overriding buttons with primary color to pink */
.btn-primary {
    background-color: rgb(248, 130, 151);
    border-color: rgb(248, 130, 151);
}

/* Slightly darker pink upon hovering on the button */
.btn-primary:hover {
    background-color: rgb(216, 113, 132);
    border-color: rgb(216, 113, 132);
}

/* Footer */
/* Reusing the header background for the footer */
footer {
    background-image: url("../images/header-background.jpg");
    background-size: cover;
    background-position: center;
}

/* Contact form */
/* Bold labels for form inputs */
form label {
    font-weight: 500;
}

/* Border styling on the input and textarea */
input,
textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Images */
/* Making the images responsive and rounded */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Media Queries - Responsive Layout */

/* Tablet */
@media (min-width: 768px) {
    header h1 {
        font-size: 3rem;
    }

    header p {
        font-size: 1.5rem;
    }

    .proj-skills-card {
        min-height: 100%;
    }

    #projects .row {
        display: flex;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    body {
        font-size: 1.1rem;
    }
    
    /* More spacing for larger screens */
    section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}