/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    color: #333;
}

h1 {
    color: #444;
}

p {
    line-height: 1.6;
}

a {
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Makes the text color the same as its parent */
}

/* Transparent Top Bar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Slight transparency */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 80px;
    box-sizing: border-box;
}

/* Logo Styling */
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    white-space: nowrap;
}

.audio {
    font-weight: 300;
    color: #333;
}

.jo {
    font-weight: 700;
    color: #007bff; /* Blue color for Jo */
}

/* Navigation Bar */
nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

nav a:hover {
    color: #007bff;
}

/* Container for Page Content */
.container {
    margin-top: 100px; /* Ensures content starts below the fixed header */
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Align items vertically in the center */
    gap: 20px; /* Add space between the image and contact text */
}

.container img {
    max-width: 400px; /* Set a max width for the image */
    height: auto; /* Maintain aspect ratio */
}

.contact {
    font-size: 1.5rem; /* Increase font size */
    line-height: 1.8; /* Adjust line spacing for readability */
    color: #333; /* Optional: Set a consistent text color */
    font-family: 'Tahoma', sans-serif;
}

.contact a {
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Match color with parent */
}

@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack items vertically on small screens */
        align-items: flex-start; /* Align items to the start */
    }

    .container img {
        max-width: 100%; /* Make image full width on small screens */
        margin-bottom: 20px; /* Add space below the image */
    }
}