@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap');

/* General Styles */
body {
    font-family: Arial, sans-serif;;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #5C2C3E;
    color: #333;
    font-size: 1.25em;
    font-weight: 400;
}

#myCanvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1; /* Send the canvas behind other elements */
    width: 100%;
    height: 100%;
}

.textdiv {
    flex: 1; /* Takes up the remaining space */
    margin-right: 20px; /* Adds some space between the text and the image */
}

.imagediv {
    flex-shrink: 0; /* Prevents the image from shrinking */
}

.logoimg {
    max-width: 8em;
}


.crewimg {
    max-width: 8em;
    margin-right: 1em;
    margin-bottom: 0;
}


.imagediv img {
    max-width: 300px; /* Limits the image size */
    height: auto; /* Ensures the image maintains its aspect ratio */
}

.subbtncontainer  {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Space the buttons evenly */
    gap: 1em;
    width: 100%;
    margin-bottom: 2em;

}

.subbtncontainer .subbtn {
    flex: 1; /* Each button takes up equal space */
}

@media (max-width: 600px) {
    .subbtncontainer {
        flex-direction: column; /* Stack buttons vertically on narrow screens */
    }
}
.subbtncontainer .button {
    width: 100%; /* Full width when stacked */
}



.subbtn {
    display: inline-block;
    text-align: left;
    padding: 0.5em 1em;
    text-decoration: none;
    /*border-radius: 0.5em;*/
    transition: background-color 0.3s;
   /* border: 1px solid black;*/
    background-color: rgba(255,255,255,0.7); /*
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);*/
    color:black;
}


.subbtn:hover {
    background-color: #ffd900

}

.subbtn img {
    width: 1.5em;
    height: 1.5em;
    margin-right: 0.5em;
    vertical-align: middle;
}

/* Hero Section Styles */
.hero {
    background-image: url("img/hero2025.jpg");
    background-position: center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 60vh; /* Adjust height as needed */
    display: flex;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* General Styles for h1 */

/* Styles for Emphasizing the Number 2 */
.hero h1 {
    font-size: 5em;
    font-family: "Gloria Hallelujah", cursive;
    font-style: normal;
    color: #FFD700; /* Gold color for emphasis */
    vertical-align: middle; /* Aligns with the text baseline */
}

.hero-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

p {
    margin-bottom: 2em;
}

.episode p {
    margin-bottom: 0em;
}


.hero p {
    font-size: 2em;
}



/* Header Styles */
header {
    background-color: #5C2C3E00; /* Bordeaux */
    color: #fff; 
    padding: 20px 0;
    padding-top: 0px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}


/* Main Content Styles */
main {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    background-color: rgba(255,255,255,0.7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}



.episode {
    display: flex;
    background-color: rgba( 238, 238, 238, 0.5);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  
    transition: background-color 1.5s;
}

div .highlighted {
  
    background-color: rgb(255, 255, 255);
}

.episode-image {
    width: 128px;
    height: 128px;
    border-radius: 5%; /* Makes the image circular */
    margin-right: 20px;
    margin-top: 20px;
    object-fit: cover; /* Ensures the image covers the circle evenly */
}

.episode-content {
    flex-grow: 1;
}

.episode-content h3 {
    margin: 0;
    font-size: 1.5em;
    color: #5C2C3E; /* Bordeaux color */
}

.episode-description {
    margin: 10px 0;
    font-size: 1em;
    color: #333;
}

.privacy {
    margin-top: 0em;
    margin-bottom: 0.5em;
    font-size: 0.8em;
    color: rgb(100,100,100)
}

.episode-date {
    font-size: 0.9em;
    color: #666;
    text-align: right;
    margin-top: 0em;
}

/* Episode Content Styles */
#episode-content h2 {
    margin-top: 0;
    font-size: 2em;
    color: #5C2C3E; /* Bordeaux */
}

#episode-content p {
    font-size: 1.1em;
    margin: 20px 0;
}

audio {
    width: 100%;
    margin: 20px 0;
}

/* Footer Styles */
footer {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;

    color: #fff; /* White for better contrast */
    position: relative;
    bottom: 0;
    width: 100%;
}

.aboutlink {
    color: #fff; /* White for better contrast */
}
.aboutlink:visited {
    color: #fff; /* White for better contrast */
}



a {
    color: rgb(94, 94, 94);
    text-decoration: none;
}
a:visited {
    color: rgb(94, 94, 94);
}
a:hover {
    text-decoration: underline dashed;
}

a img {
    height:1.3em;
    vertical-align: text-bottom;
}


form {
    padding: 20px;

}
form input[type="text"],
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    
    box-sizing: border-box;
    background-color: rgba( 255,255,255, 0.7);
    font-family: Arial, sans-serif;
    font-size: 0.75em;
}

form {
    padding-top:0;
    margin-top:0;
}

form textarea {
    height: 100px;
    resize: none;
}

form input[type="submit"] {
/*    background-color: white;
    border-radius: 0.5em;*/
    background-color: rgba(255,255,255,0.7);
    border: none;
    color: black;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

div.submit {
    width: 100%;
    margin: 0px;
    padding: 0px;
    text-align: right;
}

form input[type="submit"]:hover {
    background-color: #FFD700;
    box-shadow: 1px 1px 10px rgba(69, 160, 73,0.25);
}