/* style.css */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background: #4CAF50;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

nav {
    background: #333;
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

section {
    max-width: 800px;
    margin: 0 auto;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery img {
    width: 200px;
    height: auto;
    border: 2px solid #ddd;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.resume-item {
    margin-bottom: 20px;
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

/* LinkedIn-style experience formatting */
.experience {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.experience:last-child {
    border-bottom: none;
}

.experience h4 {
    margin: 5px 0;
    font-size: 18px;
    color: #333;
}

.enrollment {
    margin: 5px 0;
    font-weight: bold;
}

.enrollment a {
    color: #0077b5;
    /* LinkedIn blue */
    text-decoration: none;
}

.enrollment a:hover {
    text-decoration: underline;
}

.date {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

.experience-items {
    margin: 10px 0 0 20px;
    padding: 0;
}

.experience-items li {
    margin-bottom: 8px;
}

.experience-items a {
    color: #0077b5;
    text-decoration: none;
}

.experience-items a:hover {
    text-decoration: underline;
}

h1 {
    text-align: center;
    margin-top: 40px;
    font-size: 2.5em;
    letter-spacing: 1px;
}

.resources-list ul {
    max-width: 600px;
    margin: 40px auto;
    padding: 0;
    list-style: none;
}

.resources-list li {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
    transition: box-shadow 0.2s;
    padding: 20px 30px;
}

.resources-list li:hover {
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.15);
}

.resources-list a {
    text-decoration: none;
    color: #2d6cdf;
    font-weight: 500;
    font-size: 1.15em;
    transition: color 0.2s;
}

.resources-list a:hover {
    color: #174ea6;
    text-decoration: underline;
}

.back-home {
    display: inline-block;
    margin: 30px auto 0 auto;
    padding: 10px 24px;
    background: linear-gradient(90deg, #2d6cdf 0%, #6a82fb 100%);
    color: #fff;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.back-home:hover {
    background: linear-gradient(90deg, #174ea6 0%, #4e54c8 100%);
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.18);
    transform: translateX(-50%) scale(1.04);
    text-decoration: none;
}