/* General Body Styles */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 20px;
}

.resume {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Header */
.header {
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 300;
}

.header .subtitle {
    margin: 5px 0;
    font-size: 1.2em;
    color: #555;
    font-weight: bold;
}

.contact-info {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    font-size: 0.9em;
}

.contact-info span {
    display: inline-flex;
    align-items: center;
}

.contact-info i {
    margin-right: 8px;
    color: #007bff;
}

.contact-info a {
    text-decoration: none;
    color: #007bff;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Sections */
.section {
    margin-bottom: 25px;
}

.section-title {
    font-size: 1.5em;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* Reusable Entry Styling */
.entry {
    margin-bottom: 20px;
}

.entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.entry-subheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    margin-bottom: 10px;
}

.entry-title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
}

.entry-company {
    font-style: italic;
}

.entry-location, .entry-date {
    font-size: 0.9em;
    color: #555;
}

.entry p {
    margin: 5px 0;
}

.entry ul {
    padding-left: 20px;
    margin-top: 10px;
}

.entry li {
    margin-bottom: 8px;
}

/* Skills Section */
.skills-list p {
    margin-bottom: 8px; /* Adds a little space between each line of skills */
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    font-size: 1.2em;
    color: #555;
}

#count {
    font-weight: bold;
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }

    .contact-info, .entry-header, .entry-subheader {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .header {
        text-align: left;
    }

    .contact-info {
        justify-content: flex-start;
    }
}