body {
    background-image: url("Images/background1.jpg");
    background-position: center;
    background-size: cover;
    margin: 0;
    font-family: sans-serif;
}

#topBar {
    width: 100%;
    height: 35px;
    background: rgb(224, 12, 5);
}

#mainWrapper {
    width: 1200px;
    height: auto;
    margin: auto;
}

#headerWrapper {
    width: 100%;
    height: 150px;
}

#mainLogo {
    width: 250px;
    height: 150px;
    float: left;
}

#slogan {
    width: 300px;
    padding-top: 0;
    float: left;
    font-size: 25px;
}

#songDetailsContainer {
    width: 300px;
    height: 100px;
    float: left;
}

.facebookTwitterContainer {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    float: right;
}

.facebookTwitterContainer svg {
    fill: rgb(224, 12, 5);
}

.facebookTwitterContainer svg:hover {
    transition: ease-in-out 0.5s;
    transform: scale(1.3);
    fill: rgb(11, 7, 253);
}

#navBarWhole {
    width: 100%;
    height: 60px;
    background-color: #00308f;
}

.navBarContainer {
    width: 1200px;
    height: 60px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    text-decoration: none;
}

.navBarContainer button {
    width: 140px;
    height: 40px;
    position: relative;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.navBarContainer button:hover {
    box-shadow: inset 0px 40px 0 0 rgba(224, 12, 5);
    color: white;
}

.slideshowContainer {
    flex-direction: row;
    width: 500px;
    height: 500px;
    padding: 20px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    box-shadow: 0.1px 0.1px 2px rgb(73, 73, 73);
    margin: auto;
    margin-bottom: 20px;
}

.mySlides img {
    width: 500px;
    height: 500px;
    border-radius: 10px;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 9s;
    animation-name: fade;
    animation-duration: 9s;
}

@-webkit-keyframes fade {
    0%   { opacity: 0.4; }
    50%  { opacity: 1;   }
    100% { opacity: 0.4; }
}

@keyframes fade {
    0%   { opacity: 0.4; }
    50%  { opacity: 1;   }
    100% { opacity: 0.4; }
}

#footerLine {
    width: 100%;
    border-style: solid;
    border-color: rgb(224, 12, 5);
    border-width: 2px 0 0 0;
}

#footerText {
    text-align: center;
    font-size: 12px;
    font-style: italic;
    padding: 10px 0;
}


#aboutContainer {
    width: 1000px;
    height: 500px;
    margin-left: 100px;
}

#micContainer {
    width: 400px;
    height: 500px;
    float: left;
}

#aboutTextContainer {
    width: 250px;
    height: auto;
    font-size: 35px;
    float: left;
}

#googleMap {
    width: 250px;
    height: 250px;
    margin-left: 25px;
    float: left;
}


.scheduleTableContainer table th {
    font-family: sans-serif;
    font-size: 30px;
    padding: 15px;
    color: rgb(224, 12, 5);
}

.scheduleTableContainer table td {
    font-family: sans-serif;
    font-size: 16px;
    padding: 10px;
    font-weight: bold;
}

#contactContainer {
    width: 800px;
    height: auto;
    margin-left: 100px;
    margin-top: 20px;
}

#contactTextContainer {
    width: 700px;
    height: auto;
    font-size: 20px;
    float: left;
}

#contactTextContainer h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

#contactTextContainer p {
    margin-bottom: 20px;
    line-height: 1.4;
}

#contactTextContainer form {
    margin-top: 20px;
}

#contactTextContainer label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

#contactTextContainer input[type="text"],
#contactTextContainer input[type="email"],
#contactTextContainer textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #999;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

#contactTextContainer textarea {
    height: 150px;
}

#contactTextContainer input[type="submit"] {
    padding: 12px 30px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}

#contactTextContainer input[type="submit"]:hover {
    background-color: #004080;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#mainWrapper {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}


#trafficContainer {
    width: 1000px;
    min-height: 500px;
    margin: 30px auto 40px 100px;
    overflow: hidden;
}

#trafficImageContainer {
    width: 400px;
    height: 500px;
    float: left;
}

#trafficImageContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

#trafficTextContainer {
    width: 320px;
    float: left;
    padding: 0 25px;
    font-size: 20px;
    line-height: 1.45;
}

#trafficTextContainer h1 {
    font-size: 38px;
    margin: 0 0 20px 0;
    color: #222;
    text-align: center;
}

#trafficTextContainer h2 {
    font-size: 26px;
    margin: 28px 0 12px 0;
    color: #444;
    border-bottom: 2px solid #eee;
    padding-bottom: 6px;
}

#trafficTextContainer .intro {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 24px;
    text-align: center;
}

#trafficTextContainer ul {
    padding-left: 22px;
    margin: 12px 0 24px 0;
    list-style-type: square;
}

#trafficTextContainer ul li {
    margin-bottom: 10px;
}

#trafficTextContainer .studio-info {
    font-size: 19px;
    font-style: italic;
    margin-top: 30px;
    padding: 12px;
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
}

#trafficMap {
    width: 250px;
    height: 250px;
    margin-left: 20px;
    float: left;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

#trafficContainer::after {
    content: "";
    display: table;
    clear: both;
}
/* Listen Live page – simple and prominent player focus */
#listenContainer {
    width: 1000px;
    min-height: 500px;
    margin: 30px auto 40px 100px;
    text-align: center;
}

#listenContainer h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #222;
}

#listenContainer .intro {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #444;
}

#playerArea {
    margin: 30px auto;
    max-width: 600px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#playerArea audio {
    width: 100%;
    margin: 20px 0;
}

#playerArea .player-note {
    font-size: 17px;
    color: #555;
    line-height: 1.5;
}

.listen-info {
    margin-top: 50px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.listen-info h2 {
    font-size: 28px;
    margin: 30px 0 12px 0;
    color: #00308f;         
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.listen-info ul {
    padding-left: 25px;
    list-style-type: disc;
}

.listen-info ul li {
    margin-bottom: 12px;
    font-size: 18px;
}