/* General Styles */
body {
    font-family: 'Fira Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #172a34;
}

header {
    background-color: #172a34;
    text-align: center;
    padding: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 20px;
    border: 5px solid #58d4e5;
}

@media (max-width: 600px) {
    .logo {
        max-width: 100%;
        height: auto;
    }
}

/* Player and Social Links Styles */
.player-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.player-container iframe {
    width: 100%;
    height: 150px;
    border: 0;
    max-width: 100%;
    border: 2px solid #fff;
}

/* For smaller mobile views */
@media (max-width: 600px) {
    .player-container iframe {
        height: auto;
        max-width: 100%;
    }
}
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
}

.social-icon {
    color: #feffeb;
    font-size: 2em;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ffdb76;
}

/* Section Styles */
section {
    padding: 20px;
    background-color: #f0f0f0;
    border-left: 5px solid #58d4e5;
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

section h2 {
    background-color: #172a34;
    color: #fff;
    padding: 20px;
    margin: 0 0 20px 0;
    text-align: center;
    font-size: 2.5em;
}

section .content-box {
    background-color: #fff;
    padding: 20px;
    border-left: 5px solid #58d4e5;
}

/* General Text and Link Styles */
p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #172a34;
    font-style: normal;
}

a {
    color: #58d4e5;
    text-decoration: none;
}

a:hover {
    color: #7b7b7b;
}

/* Responsive Text Adjustments */
@media (max-width: 768px) {
    p {
        font-size: 1em;
    }
}


/* Instagram Link Style */
.instagram-link {
    margin-top: 10px;
    color: #172a34;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #fff;
    border: 2px solid #58d4e5;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.instagram-link i {
    margin-right: 8px;
    font-size: 1.5em;
}
.instagram-link:hover {
    background-color: #58d4e5;
    color: #fff;
}
/* Footer Styles */
footer {
    padding: 20px;
    text-align: center;
    color: #172a34; 
    font-size: 0.7em;
    width: 100%;
    clear: both;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box; 
}

footer a {
    color: #172a34;
}

footer a:hover {
    text-decoration: underline;
}
h3 {
    font-size: 2em;
}
/* Host Box Styles */
.host-box {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    border-left: 5px solid #58d4e5;
}

.host-photo {
    flex-shrink: 0;
    margin-right: 20px;
    width: 400px;
    min-width: 150px;
}

.host-photo img {
    width: 100%;
    border: 2px solid #58d4e5;
}

.host-info {
    flex-grow: 1;
}

.host-info h3 {
    font-size: 2em;
    color: #172a34;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .host-box {
        flex-direction: column; 
        align-items: flex-start; 
    }

    .host-photo {
        margin-right: 0; 
        margin-bottom: 15px;
        width: 100%;
    }

    .host-info h3 {
        text-align: center; 
        width: 100%;
    }

    .host-info {
        width: 100%; 
        text-align: left;
    }
}

/* Grid Layout for "Listen On" and "Contact Us" Sections */
.links-container,
.contact-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    justify-content: center;
}

.platform-link,
.contact-link {
    color: #172a34;
    font-size: 1em;
    text-decoration: none;
    padding: 15px 25px;
    background-color: #fff;
    border: 2px solid #58d4e5;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.platform-link:hover,
.contact-link:hover {
    background-color: #58d4e5;
    color: #fff;
}


@media (max-width: 768px) {
    .links-container,
    .contact-links {
        grid-template-columns: 1fr; 
    }
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 150px;
    padding: 0 20px;
}

.header-icon {
    height: 150px;
}

.hamburger-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2em;
    background: none;
    border: none;
    color: #ffffff; /* White text */
    cursor: pointer;
}

.hamburger-menu i {
    font-size: 1.3em; /* Size of the Font Awesome film icon */
}


iframe {
    width: 100%;
    height: 150px;
    border: solid 2px white;
    overflow: hidden;
}

#full-screen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #172a34; /* Solid background color */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.menu-hidden {
    transform: translateY(-100%);
}

.menu-visible {
    transform: translateY(0);
}

.close-menu {
    font-size: 3em;
    background: none;
    border: none;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.menu-links {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.menu-links li {
    margin: 15px 0;
}

.menu-links a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 2em;
    font-weight: 600;
    transition: color 0.3s ease;
}

.menu-links a:hover {
    color: #58d4e5; /* Light blue */
}

.menu-social {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    font-size: 2.5em;
    color: white;
}

.subscribe-button {
    padding: 15px 30px;
    color: #fff; /* Dark blue */
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.5em;
    border-radius: 8px;
    border: 2px solid #58d4e5;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.subscribe-button:hover {
    background-color: #58d4e5;
    color: #172a34;
}
.more-episodes-container {
    text-align: center;
    margin: 40px 0px 20px; /* Added more margin at the top */
}

.more-episodes-button {
    padding: 15px 70px;
    color: #172a34; /* White text */
    text-decoration: none;
    font-size: 1em;
    border-radius: 8px;
    border: 2px solid #172a34; /* Light blue border */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.more-episodes-button:hover {
    background-color: #172a34; /* Light blue background on hover */
    color: #fff; /* Dark blue text on hover */
}