/* styles.css */

/* Import Highway Gothic font */
@import url('https://fonts.cdnfonts.com/css/highway-gothic');

/* CSS for the logo image */
.logo {
    width: 100px; /* Logo width updated */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 35px; /* Add margin at the bottom */
    color: #00ffff; /* Lime green text color */
}

/* Additional CSS for navigation, content, etc. */
header {
    text-align: center;
    margin-bottom: 40px; /* Increased margin-bottom for spacing */
    color: #00ffff; /* Lime green text color */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #33ff00; /* Lime green text color */
    font-family: Arial, sans-serif;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    padding: 15px 25px; /* Adjust button size */
    font-size: 20px; /* Adjust font size */
    border-radius: 25px; /* Rounded corners */
    background-color: rgba(51, 255, 0, 0.15); /* Lime green background color with 25% opacity */
    color: #33ff00; /* Lime green text color */
    box-shadow: 0 0 20px #33ff00; /* Glow effect */
    animation: glowing 3s infinite; /* Glowing animation */
    transition: transform 0.2s, background-color 0.4s; /* Add transition for background color */
    
    }
    
    /* Hyperlink styles */
a {
    text-decoration: none;
    color: #ccff00; /* Lime green color for normal links */
    
}

nav ul li a:hover {
    transform: scale(1.1); /* Scale on hover */
}

/* Make selected button yellow */
nav ul li a.active {
    background-color: rgba(51, 255, 0, 0.15); /* Yellow background color */
    color: #ffff00; /* Yellow text color */
}

@keyframes glowing {
    5% {
        box-shadow: 0 0 10px #33ff00; /* Initial glow */
    }
    50% {
        box-shadow: 0 0 30px #33ff00; /* Mid glow */
    }
    100% {
        box-shadow: 0 0 10px #33ff00; /* Final glow */
    }
}

.content-container {
    max-width: 800px;
    margin: 0 auto; /* Centers the container horizontally */
    padding: 0 20px; /* Adds padding to the sides */
    box-sizing: border-box; /* Ensures padding is included in the width */
}

.center-content {
    text-align: center;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #33ff00; /* Lime green text color */
    font-family: 'Highway Gothic', arial; /* Apply font family */
}

button {
    padding: 15px 25px; /* Adjust button size */
    font-size: 18px; /* Adjust font size */
    cursor: pointer;
    color: #33ff00; /* Lime green text color */
    background-color: rgba(51, 255, 0, 0.25); /* Lime green background color with 25% opacity */
    border: 2px solid #33ff00; /* Lime green border */
    border-radius: 30px; /* Rounded corners */
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: #ffff00; /* Change background color on hover */
    color: #ffff00; /* Change text color on hover */
}

footer {
    text-align: center;
    color: #33ff00; /* Lime green text color */
}

/* Apply background image to entire page */
html {
    background-image: url('back.gif');
    background-size: cover;
    background-attachment: fixed; /* Keep background image fixed */
}

/* Set body to scrollable */
body {
    overflow-y: scroll; /* Enable vertical scrolling */
}

/* MP3 Player styles */
.podcast-player {
    background-color: rgba(51, 255, 0, 0.25); /* Transparent green background color with 25% opacity */
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
}

/* Custom styles for the audio player */
audio {
    width: 90%; /* Make the audio player wider */
    margin-top: 10px; /* Add some space at the top */
    background-color: rgba(51, 255, 0, 0.25); /* Transparent green background color with 25% opacity */
    padding: 10px; /* Add some padding */
    border-radius: 10px; /* Rounded corners */
    outline: none; /* Remove outline */
    box-shadow: 0 0 10px rgba(51, 255, 0, 0.5); /* Add shadow */
}

audio::-webkit-media-controls-panel {
    background-color: rgba(51, 255, 0, 0.25); /* Transparent green background color with 25% opacity for Webkit browsers */
    border-radius: 10px; /* Rounded corners */
}

audio::-webkit-media-controls-play-button {
    color: #33ff00; /* Lime green play button */
}

audio::-webkit-media-controls-volume-slider {
    background-color: #33ff00; /* Lime green volume slider */
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: #33ff00; /* Lime green text color for time display */
}

audio::-webkit-media-controls-mute-button {
    color: #33ff00; /* Lime green mute button */
}

audio::-webkit-media-controls-volume-slider-container {
    width: 100px; /* Adjust volume slider width */
}

audio::-webkit-media-controls-timeline {
    height: 10px; /* Adjust timeline height */
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    nav ul {
        padding: 0;
    }
    nav ul li {
        display: block;
        margin-right: 0;
    }
    nav ul li a {
        display: block;
        padding: 10px;
        font-size: 16px;
    }
    .content-container {
        padding: 0 10px;
    }
    .center-content {
        padding-top: 10px;
    }
}

/* Mobile Portrait Mode */
@media (max-width: 640px) and (orientation: portrait) {
    button {
        font-size: 14px; /* Adjust font size for small screens */
        padding: 10px 15px; /* Adjust padding for small screens */
    }
    .content-container {
        width: 100%;
    }
    .center-content {
        padding-top: 10px;
    }
    nav ul li {
        display: inline-block;
        width: calc(33.33% - 10px); /* 3 buttons per line with spacing */
        margin: 5px;
    }
    nav ul li a {
        padding: 10px;
        font-size: 14px;
    }
}

/* Additional CSS for mobile message */
.mobile-message {
    display: none; /* Hide by default */
    text-align: center;
    font-size: 14px; /* Adjust font size */
    color: #ff0000; /* Adjust text color as needed */
    margin-top: 10px; /* Space above the message */
}

/* Show message on mobile devices in portrait mode */
@media (max-width: 768px) and (orientation: portrait) {
    .mobile-message {
        display: block; /* Show message */
    }
}
