/* Body and Main Styles */
body {
    font-family: 'Arial', sans-serif;
    background: #000000; /* Black background for a dark, sci-fi look */
    color: #f0f0f0; /* Light gray text for contrast */
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
    background: #111111; /* Darker background for header */
    border-bottom: 3px solid #ffcc00; /* Neon yellow border */
}

header h1 {
    margin: 0;
    color: #ffcc00; /* Neon yellow text */
    font-size: 2.5em;
}

main {
    padding: 20px;
    background: #222222; /* Dark grey background for content */
    margin: 20px;
    border-radius: 10px;
    border: 2px solid #ffcc00; /* Neon yellow border for main content */
}

h2 {
    color: #ffcc00; /* Neon yellow headers */
    font-size: 1.8em;
}

p {
    font-size: 1.1em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
    border: 2px solid #ffcc00; /* Neon yellow border for images */
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 10px;
    background: #111111; /* Darker background for footer */
    border-top: 3px solid #ffcc00; /* Neon yellow border */
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
    color: #ffcc00; /* Neon yellow text */
}

/* Link Styles */
a {
    color: #4CAF50; /* Medium green for better visibility */
    text-decoration: none;
}

a:hover {
    color: #388E3C; /* Darker green on hover */
}

.home-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 20px 0;
    background: #ffcc00; /* Neon yellow background */
    color: #000000; /* Black text */
    text-decoration: none;
    border-radius: 5px;
}

.home-button:hover {
    background: #e6b800; /* Slightly darker yellow on hover */
}

.linkedin-link {
    color: #1E88E5; /* Blue for LinkedIn */
    text-decoration: none;
    font-weight: bold;
}

.linkedin-link:hover {
    color: #1565C0; /* Darker blue on hover */
}

/* Linux Logo Styles */
.linux-logo {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 80px; /* Adjust size as needed */
    height: auto;
    opacity: 0.8; /* Slightly transparent for subtlety */
}

.linux-logo:hover {
    opacity: 1; /* Fully opaque on hover */
}

/* Photo Gallery Styles */
.photo-gallery {
    display: flex;
    justify-content: center; /* Center the photos */
    align-items: flex-start; /* Align items at the start */
    width: 100%; /* Make it full width */
    margin: 0; /* Remove default margin */
    padding: 20px 0; /* Add some vertical padding */
}

.photo-item {
    flex: 0 1 auto; /* Allow items to shrink but not grow */
    text-align: center; /* Center text under images */
    max-width: 624px; /* Increase width of individual items by 30% */
    margin: 0 10px; /* Add some horizontal spacing */
}

.career-photo {
    width: 100%; /* Make the image fill its container */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 8px; /* Optional: adds rounded corners */
    max-height: 390px; /* Increase the height limit */
}
