/* Reset and basic styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
}

/* Navigation styles */
.navbar {
    background-color: #333;
    overflow: hidden;
}

.navbar-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.navbar a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    flex: 1;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

/* Hero section styles */
.hero {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

.headshot {
    margin-top: 20px;
    width: 300px; /* Adjusted width */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure it fits within the container */
    border-radius: 0; /* Remove rounded corners */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Section styles */
section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Box styles */
.box {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Audiobook image styles */
.audiobook-box img {
    max-width: 40%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }
}

