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

body {
    font-family: 'Inter', sans-serif; /* Clean and modern font */
    color: #5C7474; /* Neutral text color */
    line-height: 1.8;
    background-color: #F5F3EF; /* Subtle background */
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: #5C7474;
    color: #E6CEB5;
    padding: 20px;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: inherit;
    font-size: 2rem;
    font-weight: bold;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav a {
    color: #E6CEB5;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    padding: 5px 10px;
    transition: color 0.3s ease-in-out;
}

.nav a:hover {
    color: #da7439;
}

/* Podcast Section */
.podcast {
    background: linear-gradient(135deg, #5C7474, #8C9086);
    color: #E6CEB5;
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.podcast h2 {
    font-size: 2.8rem;
    color: #E6CEB5;
    margin-bottom: 20px;
    font-weight: 700;
}

.podcast p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E6CEB5;
    line-height: 1.8;
}

/* Podcast Embeds */
.podcast-embeds {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.podcast iframe {
    border: 2px solid #C16632;
    border-radius: 8px;
    width: 100%;
    max-width: 320px;
    height: 400px;
}

/* Episodes Section */
.episodes {
    padding: 60px 20px;
    margin: 40px 0;
    background-color: #ebe3dc; /* Neutral section background */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.episodes h2 {
    font-size: 2.5rem;
    color: #5C7474;
    margin-bottom: 40px;
    font-weight: 700;
}

.episode {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.episode h3 {
    font-size: 1.8rem;
    color: #5C7474;
    margin-bottom: 10px;
}

.show-notes {
    font-size: 1rem;
    color: #5C7474;
    margin-bottom: 20px;
}

.episode-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.episode-links .cta-button {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 20px;
    background-color: #C16632;
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.episode-links .cta-button:hover {
    background-color: #B59275;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: #5C7474;
    color: #E6CEB5;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
}

.footer p {
    margin-bottom: 10px;
}

.footer .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.footer .social-links a {
    color: #E6CEB5;
    font-size: 1rem;
    text-decoration: none;
}

.footer .social-links a:hover {
    color: #C16632;
}

/* Responsive Behavior */
@media (max-width: 768px) {
    .podcast-embeds {
        flex-direction: column;
        gap: 20px;
    }

    .episode-links {
        flex-direction: column;
        gap: 10px;
    }

    .podcast iframe {
        max-width: 100%;
    }

    .episodes h2 {
        font-size: 2rem;
    }

    .episode h3 {
        font-size: 1.5rem;
    }
}
/* Mobile Navigation Styles */
.nav {
    position: relative;
}

/* Default styles for larger screens */
.nav ul {
    display: flex; /* Show the normal menu by default */
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-toggle {
    display: none; /* Hide the hamburger icon by default */
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav ul {
        display: none; /* Hidden by default */
        flex-direction: column; /* Stack menu items vertically */
        position: fixed; /* Fixed positioning keeps the menu visible */
        top: 60px; /* Position below the header */
        right: 0; /* Align to the right */
        width: 70%; /* Set the width to avoid overflow */
        height: auto; /* Ensure the dropdown fits its content */
        background-color: #5C7474; /* Distinct background for visibility */
        text-align: left; /* Align text to the left */
        padding: 20px; /* Add padding around items */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
        z-index: 1000; /* Ensure it appears above other elements */
        border-radius: 8px; /* Optional: rounded corners */
        overflow-y: auto; /* Enable scrolling if content overflows */
    }

    .nav ul.show {
        display: flex; /* Show the menu when toggled */
    }

    .nav a {
        color: #E6CEB5; /* Contrasting text color */
        text-decoration: none; /* Remove underline */
        text-transform: uppercase; /* Optional styling */
        font-size: 0.9rem; /* Slightly larger text for visibility */
        padding: 10px 20px; /* Add padding to increase clickable area */
        display: block; /* Ensure links are block elements */
        transition: color 0.3s ease-in-out;
    }

    .nav a:hover {
        color: #C16632; /* Different hover color */
    }

    .nav ul {
        z-index: 1000; /* Higher than other content */
    }

    .nav-toggle {
        display: block; /* Show the hamburger icon on small screens */
        cursor: pointer;
        font-size: 1.5rem;
        color: #E6CEB5;
    }
}
