* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    /* background-color: #051414; */
    background-color: #051114;
    color: #9f6c2e;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #ecb68b;
}

.episode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    padding: 2rem;
}

@media (min-width: 1200px) {
    .episode-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .episode-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .episode-grid {
        grid-template-columns: 1fr;
    }
}

.episode-card {
    cursor: pointer;
    transition: transform 0.2s;
    background: rgba(22, 29, 31, 0.6);
    /* padding: 1rem; */
    /* border-radius: 8px; */
}

.episode-card-subcontainer{
    padding-left: 4.5%;
    padding-top: 3px;
    padding-bottom: 14px;
}

.episode-card:hover {
    transform: translateY(-5px);
}

.episode-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
}

.card-episode{
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 200;
}

.card-name{
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    letter-spacing: .5px;
}

.hamburger-menu {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    color: #907763;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.menu-content {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #11191c;
    transition: right 0.3s;
    box-shadow: -2px 0 5px rgba(0,0,0,0.3);
    padding: 2rem;
    border-left: 1px solid #D89544;
    z-index: 10;
}

.menu-content.open {
    right: 0;
}

.menu-item{
    color: #D89544;
    display: block; 
    padding: 1rem 0; 
    text-decoration: none; 
}


.audio-player {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.search-bar {
    width: 85%;
    max-width: 600px;
    margin: 2rem auto;
    padding: 0.5rem;
    font-size: 1.2rem;
    display: block;
    /* background: rgba(255, 255, 255, 0.1); */
    background: rgba(15, 22, 25, 1);
    border: 1px solid rgba(144, 119, 99, 0.3);
    color: #907763;
    border-radius: 4px;
    outline: none; /* Removes the default focus outline */
}

/* Change the color of the placeholder text */
.search-bar::placeholder {
    color: rgba(144, 119, 99, 0.6); /* Making placeholder slightly more transparent */
}

/* Remove the default highlight color when clicking (for webkit browsers) */
.search-bar:focus {
    outline: none;
    box-shadow: none;
    border-color: rgba(144, 119, 99, 0.5); /* Optional: subtle border color change on focus */
}

/* Remove the default highlight color for webkit browsers */
.search-bar::-webkit-search-decoration,
.search-bar::-webkit-search-cancel-button,
.search-bar::-webkit-search-results-button,
.search-bar::-webkit-search-results-decoration {
    display: none;
}

.title-container{
    width: 100%;
    display: flex;
    justify-content: space-around;
}


.title-image{
    text-align: center;
    width: 87%;
    max-width: 700px;
    margin: auto;
    padding: 35px;    
    padding-top: 3.5em;
}


.audio-player-play-pause-btn{
    background-color: color(srgb 0.0684 0.115 0.1271);
    box-shadow: none;
    border: 1px solid color(srgb 0.6258 0.4226 0.183);
    border-radius: 50px;
    width: 50px;
    height: 50px;
    color: #a06c2f;
    font-size: 1.25em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;    
}

.inner-play-btn{
    margin: auto;
}

.frwd-bck-btn{
    background-color: color(srgb 0.0684 0.115 0.1271);
    box-shadow: none;
    border: none;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    color: #a06c2f;
    font-size: 1.25em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;  
    margin-top: 6px;
    font-size: 1.75em;
}

.audio-container{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.frwd-bck-btn-inner-container{
    margin: auto; 

}

.upper-audio-container{
    display: flex;
    justify-content: space-evenly;
    width: 63%;
    margin: auto;
}

.audio-player-lower-container{
    display: flex;
    justify-content: space-evenly;
    margin-top: 12px;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 200;
}



/* Styling for the range input */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background: rgba(216, 149, 68, 0.2);
    border-radius: 5px;
    outline: none;
}

/* Thumb styles for webkit (Chrome, Safari, etc.) */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background: #a06c2f;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

/* Thumb styles for Firefox */
input[type="range"]::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #a06c2f;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

/* Track styles for Firefox */
input[type="range"]::-moz-range-track {
    background: rgba(216, 149, 68, 0.2);
    height: 5px;
    border-radius: 5px;
}

/* Hover effects */
input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: #a06c2f;
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: #a06c2f;
}


.episode-detail-episode-title{
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 200;
}

.episode-description{
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 200;
}


/* About Page Styles */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.about-title {
    margin: auto;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    letter-spacing: .5px;
    color: #D89544;
}

.about-intro {
    margin-bottom: 3rem;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 100;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    letter-spacing: .5px;
    color: #D89544;    
}

.hosts-section {
    margin-bottom: 4rem;
}

.hosts-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #D89544;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    letter-spacing: .5px;
    color: #D89544;    
}

.hosts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.host-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.host-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

.host-content {
    flex: 1;
}

.host-name {
    margin-bottom: 1rem;
    color: #D89544;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    letter-spacing: .5px;
    color: #D89544;    
}

.host-bio {
    line-height: 1.6;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    letter-spacing: .5px;
    color: #D89544;
}

.social-section {
    margin-top: 3rem;
    text-align: center;
}

.social-title, .platforms-title {
    margin-bottom: 1rem;
    color: #D89544;
}

.social-link, .platform-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(216, 149, 68, 0.1);
    color: #D89544;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid rgba(216, 149, 68, 0.3);
    transition: all 0.2s ease;
}

.social-link:hover, .platform-link:hover {
    background: rgba(216, 149, 68, 0.2);
}

.instagram-link {
    margin-bottom: 2rem;
}

.platform-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.credits-section {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
}

.credits-text {
    color: rgba(216, 149, 68, 0.8);
}

.credits-link {
    color: #D89544;
    text-decoration: none;
    margin-left: 5px;
}

.credits-link:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .host-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .host-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .platform-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1.1rem;
    }
}

.about-image{
    width: 80%;
    max-width: 600px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-image-container{
    width: 100%;
    text-align: center;
}







/* Contact Page Specific Styles */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #D89544;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    letter-spacing: .5px;    
}

.contact-description {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #D89544;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 100;
    letter-spacing: .5px;    
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
}

.email-section,
.social-section,
.listen-section {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background: rgba(216, 149, 68, 0.05);
}

.section-title {
    color: #D89544;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    letter-spacing: .5px;    
}

.email-link,
.social-link {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    color: #D89544;
    text-decoration: none;
    background: rgba(216, 149, 68, 0.1);
    border: 1px solid rgba(216, 149, 68, 0.3);
    border-radius: 4px;
    transition: background 0.2s ease;
}

.platform-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.platform-link {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    color: #D89544;
    text-decoration: none;
    background: rgba(216, 149, 68, 0.1);
    border: 1px solid rgba(216, 149, 68, 0.3);
    border-radius: 4px;
    transition: background 0.2s ease;
    width: 200px;
}

.email-link:hover,
.social-link:hover,
.platform-link:hover {
    background: rgba(216, 149, 68, 0.2);
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
}