/* --- Your Original Styles Combined with New Layout Styles --- */

body {
    background-image: url('garage-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* We are styling the header separately to avoid conflicts */
header {
    background-color: #222;
    padding: 50px 20px;
    text-align: center;
}

/* Original H1 color for the header */
header h1 {
    color: #ff8c00;
    font-size: 36px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Original P color for the header */
header p {
    color: #e0e0e0;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin: 5px 0 0;
}

/* The navigation bar */
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;
}

/* Main content area and boxes */
main {
    padding: 20px;
}
#host-profile,
#latest-episode-preview {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("20ceabfc-7676-47c7-8e6e-3564331fc97c.jpg");
    background-size: cover;
    background-position: center;
    padding: 30px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    text-align: center;
}

/* Original H2 color and text for the main sections */
#host-profile h2,
#latest-episode-preview h2 {
    color: #ff8c00;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Original P color for the main sections */
#host-profile p {
    color: #e0e0e0;
}
#host-profile ul {
    border: 3px solid #e0e0e0;
    padding: 15px;
    width: 300px;
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.1);
}
#host-profile li {
    color: #e0e0e0;
}

#host-profile button {
    background-color: #2f4f4f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    transition: transform 0.3s ease;
}
#host-profile button:hover {
    background-color: #1a1a1a;
    transform: scale(1.05) translateY(-5px);
}
/* Styling for the new logo overlay */
#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);
}
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f7a423;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #e0951e;
}