/* body and stuff */
        body {
          font-family: 'Raleway', Arial, sans-serif;
          color: #FFEDD2;
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          display: flex;
          flex-direction: column;
    /* Background layers */
          background: 
            url("../images/bg-01.jpg") repeat-x center top, /* Top image */
            url("../images/bg-01.png") repeat; /* Repeated background */

          background-color: #000; /* Fallback color */
          background-size: auto, auto; /* Ensure bg-01.jpg covers the top and bg-01.png repeats */
        }

        .info-text {
          font-size: .85em;
          color: rgba(239, 211, 98, 0.5);
          padding-bottom: 2%; 
          width: 100%;
          text-align: left;
        }

    h4 { 
          font-family: 'Raleway', Arial, sans-serif;
          color: #FFEDD2;
          text-align: left;
        }  

/* header code */
        #header {
            padding: 0 0 10px 0;
            height: 200px; /* Adjust the height of the header container */
            margin-bottom: 10px;
            background-image: url("../images/logo.png");
            background-repeat: no-repeat;
            background-position: center 10px; /* Center horizontally, move 10px down */
            background-size: 65% auto; /* Adjust the size of the logo */
            width: 80%; /* Set width to 80% for larger screens */
            max-width: 800px; /* Optional: Set a maximum width if needed */
            margin: 0 auto 5px auto; /* Center the header horizontally */
        }

        /* Media query for smaller screen widths */
        @media screen and (max-width: 768px) {
            #header {
                background-size: 65%; /* Reduce the size of the logo */
                background-position: top center; /* Maintain 10px from the top */
                padding: 5px;
                width: 98%; /* Set width to 98% for smaller screens */
                height: 185px; /* Adjust the height for small screens */
            }

            .container {
                padding: 10px;
            }
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            #header {
                background-size: 75%; /* Maintain smaller size */
                background-position: center 10px; /* Keep the logo at the top */
                padding: 10px;
            }

            .container {
                padding: 10px;
            }
        }

/* container */
       .container {
            max-width: 100%;
            margin: 10px auto 0; /* Adjusted margin-top to 10px */
            padding: 10px 5% 0 10%;
            background-repeat: no-repeat;
            background-size: cover;
            height: auto; /* Set height to 60% of the viewport height */
            font-family: 'Raleway', Arial, sans-serif;
            color: #FEF5E8;
            max-width: 800px; /* Set mac width of the page */
            text-align: left;
        }

/* Nav Menu */
        .menu-container {
            position: fixed;
            top: 200px;
            left: 0;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.7);
            border-radius: 0 10px 10px 0;
            overflow: hidden;
            box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
            width: 30px; /* Default width when closed */
            transition: width 0.3s ease;
        }

        .menu-container.open {
            width: 120px; /* Width when the menu is open */
        }

        .menu-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            color: #EDCC61;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 1;
            transition: background 0.3s ease;
        }

        .menu-toggle:hover {
            background: rgba(0, 0, 0, 0.9); /* Slightly darker background on hover */
        }


        .menu {
            display: flex;
            flex-direction: column;
            padding: 10px;
            opacity: 0; /* Initially hidden */
            transition: opacity 0.3s ease;
            background: rgba(255, 255, 255, 0.7);
        }

        .menu-container.open .menu {
            opacity: 1;
            width: 100px;
        }

        .menu a {
            padding: 8px;
            color: #07525A;
            text-decoration: none;
            text-align: center;
            border-bottom: 1px solid #444;
            transition: background 0.3s;
        }

        .menu a:hover {
            background: #07525A;
            color: #fff; /* Ensure hover text is visible */
        }

/* links */
            a {
                text-decoration: none;
                color: #EDCC61;
                font-family: 'Raleway', sans-serif;
            }

            /* Mouse over effect */
            a:hover {
                color: #FFEDD2;
            }

/* mp3 player */
        #player-container {
            width: 400px;
            min-width: 260px;
            margin-left: auto;
            margin-right: auto;
            background: rgba(255, 255, 255, 0.5);
            padding: 20px;
            border-radius: 12px; /* container rounded corners */
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
        }

/* audio player */
        #audio-player {
            width: 60%;
            max-width: 320px;
            border-radius: 12px; /* round corners */
            overflow: hidden;    /* make inner controls respect the radius */
            display: block;
            margin-top: 10px;
        }

/* song info */
      .toggle-info
            background:#07525A; 
            color:white; 
            border:none; 
            padding:5px 10px; 
            border-radius:5px; 
            cursor:pointer;
        }

/* individual song items */
        .song-item {
            margin: 10px 0;
            padding: 10px;
            border: 1px solid #ccc;
            border-radiuse: 5px;
            background: #fff;
            max-width: 400px;
            margin: 10px auto;
            font-size: .8em;
        }

        .song-item button {
            margin: 5px;
            padding: 5px 10px;
            font-size: 0.9em;
        }

/* MP3 Form */
        .mp3-form {
            margin-top: 130px;
            margin-left: auto;
            margin-right: auto;
            padding: 10px;
            padding-right: 30px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 8px;
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
            max-width: 400px;
        }

        .mp3-form input,
        .mp3-form textarea,
        .mp3-form button {
            width: 96%;
            margin: 8px 0;
            padding: 10px;
            border-radius: 6px;
            font-size: 1em;
        }
/* email Form*/
     .form-container {
            max-width: 500px;
            min-width: 260px;
            background: rgba(255, 255, 255, 0.5);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
            margin: 0 0 40px 0;
        }

        .form-container label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: .9em;
            color: #07525A;
        }

        .form-container input, .form-container textarea {
            width: 95%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #CFB5A6;
            border-radius: 5px;
        }

        .form-container button {
            width: 30%;
            padding: 10px;
            background: #07525A;
            opacity: .7;
            color: white;
            border: none;
            cursor: pointer;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .form-container button:hover {
            background: #07525A;
            opacity: 1.0;
            color: #CFB5A6;
        }

        .honeypot {
            display: none;
        }

        .math-captcha-row input[type="text"] {
            width: auto;
            flex: 1;
            max-width: 100px; /* Adjust the maximum width for the input box */
        }

        .math-captcha-row button {
            width: auto;
        }

/* footer stuff */
        .footer {
          position: relative;
          margin-top: auto;
          bottom: 2%;
          margin: 0 auto;
          width: 80%;
          background-color: rgba(0, 0, 0, 0.6);
          color: #CFB5A6;
          border: 2px solid #483D8B;
          padding: 1em;
          text-align: center;
          font-size: .9em;
          box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
        }

        @media only screen and (max-width: 600px) {
          .header, .footer {
            padding: 0.5em;
          }

          .main {
            padding: 0.5em;
          }
        }

        .footer .footer-nav {
          text-decoration: none;
          color: #ff0000;
        }

        .footer .footer-nav:hover {
          color: #ffff00; /* Change this to the color you want on hover */
        }

/* footer */
        .footer {
            background-color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: 100% auto;
            color: #07525A;
            font-family: 'Raleway', sans-serif;
            box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.5);
        }

        .footer-links {
            color: #07525A;
            font-family: 'Raleway', sans-serif;
            font-size: 1em;
            line-height: 1.25em;
        }

        .footer-links-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-link {
            display: flex;
            align-items: center;
        }
        .footer-img {
            padding: 10px 5px;
            height: 35px;
        }

        /* Media query for wider screens */
        @media (min-width: 768px) {
            .footer-links-container {
                flex-direction: row; /* Change to horizontal layout */
                justify-content: center; /* Center the links horizontally */
            }
            .footer-link {
                margin-right: 20px; /* Add spacing between links */
                margin-bottom: 0; /* Remove bottom margin */
            }
        }

/* back to tpp */
      .back-to-top {
        position: fixed;
        bottom: 80px;
        right: 8%;
        background-color: rgba(7, 82, 90, .7);
        border: 1px solid #CFB5A6;
        color: #CFB5A6;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        opacity: 0; /* Initially invisible */
        transition: opacity 0.3s ease-in-out;
        z-index: 9999;
        }

    .back-to-top:hover {
        background-color: #07525A;
        border: 1px solid #CFB5A6;
        color: #CFB5A6;
        font-family: 'Raleway', sans-serif;
        font-style: normal;
        font-size: .8em;
        font-weight: 600; /* font weight */
        }

/* Show the button when the user scrolls down */
    .back-to-top.show {
        opacity: .8;
        font-family: 'Raleway', sans-serif;
        font-style: normal;
        font-size: .8em;
        font-weight: 600;

/* fader Container */
		.fader {
			-webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
			mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
			height: 560px;
			width: 100%;
			overflow-y: scroll;
			color: rgba(255,255,255,.7);
			align: center;
			font-family: "Arial Narrow";
			font-size: 1.5 em;
			font-weight: bold;
			color: #666666;
			text-decoration: none;
			padding-bottom: 5%;
			}
}