/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #002233; /* Dark background color */
    color: #A6BAC8; /* Light text color */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0; /* Removed side padding */
    background-color: #002233; /* Dark background color */
    color: #FFFFFF; /* White text color */
    position: fixed;
    width: 100%;
    top: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.contact-section {
    padding-top: 100px;
}

.episodes-section {
    padding-top: 100px;
}


header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 37px; /* Added side padding to header content */
}

header.shrink {
    padding: 5px 0; /* Adjusted padding for shrunk state */
}

header .logo img {
    height: 100px; /* Increased logo size */
    filter: none; /* Ensure no filter is applied */
    transition: height 0.3s ease-in-out;
}

header.shrink .logo img {
    height: 50px; /* Shrink logo size */
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #11BCFD; /* Accent color */
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #A6BAC8; /* Light color on hover */
}

.main-banner {
    position: relative;
    text-align: center;
    color: #FFFFFF; /* White text color */
    height: 700px; /* Changed height */
    overflow: hidden; /* Ensure anything outside the height is hidden */
    margin-top: 120px; /* Added margin to accommodate fixed header */
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the area and crops accordingly */
    opacity: 0.8;
    filter: none; /* Ensure no filter is applied */
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overlay h1 {
    font-size: 3em;
}

.overlay p {
    font-size: 1.5em;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #11BCFD; /* Accent color */
    color: #002233; /* Dark text color */
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #0A9ACF; /* Slightly darker accent color for hover effect */
    color: #FFFFFF; /* White text color */
}

.cta-button:visited {
    color: #FFFFFF; /* Ensure text remains white after visiting */
}

.introduction, .latest-episode, .featured-topics, .about-us, .guest-appearances, .testimonials {
    padding: 50px 20px;
    background-color: #002233; /* Dark background color */
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding-left: 250px; /* Added padding for left side */
    padding-right: 250px; /* Added padding for right side */
}

.introduction img, .about-us img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    filter: none; /* Ensure no filter is applied */
}

.featured-topics .topics {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.featured-topics .topic {
    text-align: center;
    margin: 20px;
}

.featured-topics .topic img {
    height: 100px;
    width: auto;
    filter: none; /* Ensure no filter is applied */
}

.image-carousel img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: none; /* Ensure no filter is applied */
}

.testimonial-carousel blockquote {
    font-style: italic;
    margin: 20px 0;
    text-align: center;
    color: #FFFFFF; /* White text color */
}

/* Footer Styles */
footer {
    background-color: #002233; /* Dark background color */
    color: #A6BAC8; /* Light text color */
    padding: 20px;
    text-align: center;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.footer-links ul li {
    margin: 0 10px;
}

.footer-links ul li a {
    color: #11BCFD; /* Accent color */
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: #A6BAC8; /* Light color on hover */
}

.social-media a img {
    height: 30px;
    margin: 0 10px;
    filter: none; /* Ensure no filter is applied */
}

.newsletter form {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.newsletter input[type="email"] {
    padding: 5px;
    font-size: 1em;
    background-color: #A6BAC8; /* Light background color for input */
    color: #002233; /* Dark text color */
    border: none;
    border-radius: 3px;
    margin-right: 10px;
}

.newsletter input[type="email"]::placeholder {
    color: #002233; /* Dark text color for placeholder */
}

.newsletter input[type="email"]:focus {
    outline: none;
    border: 1px solid #11BCFD; /* Accent color for focus */
}

.newsletter button {
    padding: 5px 10px;
    font-size: 1em;
    background-color: #11BCFD; /* Accent color */
    color: #002233; /* Dark text color */
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.newsletter button:hover {
    background-color: #0A9ACF; /* Slightly darker accent color for hover effect */
}

/* Additional Styles to Override Default Browser Styles */
a, a:visited, a:active {
    color: #11BCFD; /* Ensure link color is consistent */
    text-decoration: none;
}

a:hover {
    color: #A6BAC8; /* Light color on hover */
}

input[type="email"]:focus, button:focus, a:focus {
    outline: none; /* Remove default orange outline */
}

.transcript-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #11BCFD; /* Accent color */
    color: #002233; /* Dark text color */
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
}

.transcript-button:hover {
    background-color: #0A9ACF; /* Slightly darker accent color for hover effect */
    color: #FFFFFF; /* White text color */
}

.transcript-button .disclaimer {
    font-size: 0.8em;
    color: #A6BAC8; /* Light text color */
    display: block;
    margin-top: 5px;
}

.podcast-platforms {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between the images */
    margin-top: 20px;
}

.podcast-platforms img {
    height: 50px; /* Adjust size as needed */
}

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .main-banner {
        height: 400px;
        margin-top: 100px;
    }

    .overlay h1 {
        font-size: 2em;
    }

    .overlay p {
        font-size: 1em;
    }

    .introduction, .latest-episode, .featured-topics, .about-us {
        padding: 20px;
        margin: 10px;
        padding-left: 20px; /* Adjusted padding for left side */
        padding-right: 20px; /* Adjusted padding for right side */
    }

    .footer-links ul {
        flex-direction: column;
    }

    .footer-links ul li {
        margin: 5px 0;
    }

    .featured-topics .topics {
        flex-direction: column;
        align-items: center;
    }

    .featured-topics .topic {
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .main-banner {
        margin-top: 300px; /* Adjust this value as needed to increase the padding */
    }
    .contact-section {
        padding-top: 300px;
    }
    .episodes-section {
        padding-top: 300px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    header.shrink nav ul {
        display: flex;
        flex-direction: row; /* Ensure items are in a row */
        justify-content: center; /* Center the items */
        padding: 0;
        margin: 0;
    }

    header.shrink nav ul li {
        margin: 0 5px; /* Adjust margin as needed */
    }

    header.shrink nav ul li a {
        font-size: 0.8em; /* Shrink the font size */
        padding: 5px 10px; /* Reduce padding */
    }

    header.shrink .logo img {
        height: 40px; /* Adjust logo size when shrinking */
    }
}