/* General styling for the page */
body {
    background-image: url('garage-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
}

/* Header and Navigation (same as index.html for consistency) */
header {
    background-color: #222;
    padding: 50px 20px;
    text-align: center;
}
header h1 {
    color: #ff8c00;
    font-size: 36px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}
header p {
    color: #e0e0e0;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin: 5px 0 0;
}
nav {
    background-color: #333;
    padding: 15px 0;
    text-align: center;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 1.2em;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #ffcc00;
}
#logo-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 200px;
    height: auto;
    z-index: 1000;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}
#logo-overlay:hover {
    transform: scale(1.05);
}

/* Main content area and About Me section styling */
main {
    padding: 20px;
}
#about-me-section {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    text-align: left;
}
/* Updated text colors for better readability */
#about-me-section h2 {
    color: #ff8c00; /* Brighter orange for heading */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-bottom: 20px;
}
#about-me-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #FFD700; /* Bright gold for paragraph text */
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7); /* Subtle shadow for readability */
}
#about-me-section p:first-of-type {
    font-weight: bold;
}
.contact-info {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #ff8c00;
    padding-top: 20px;
}
.contact-info h3 {
    color: #ff8c00;
    margin-bottom: 10px;
}
/* Footer (same as index.html for consistency) */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}