body {
    max-height: 100vh;
    background-color: #4caf50;
    background: url("assets/background.jpg") no-repeat center center;
    background-size: cover;
}

header {
    background-color: #4caf50; /* Dark Green */
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
}

#about {
    position: relative;
    padding: 60px 20px;
    color: #FFC107; /* White text for contrast */
    font-size: 30px;
    background: rgba(0, 0, 0, 0.5); /* Add a dark semi-transparent overlay */
    text-align: center; /* Optional: Give the section some breathing room */
}

/* PIANO SECTION */
#piano {
    margin: auto;
    margin-top: 30vh;
    width: 70%;
    max-width: 800px;
    height: 300px;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
}

#keys {
    width: 90%;
    position: absolute;
    bottom: 5px;
    height: 60%;
    margin: 5%;
}

.whiteKeys {
    width: 7%;
    height: 100%;
    background-color: white;
    position: absolute;
    border: 2px solid black;
    cursor: pointer;
}

.whiteKeys:active {
    background: linear-gradient(to bottom, rgb(248, 248, 248), rgb(238, 238, 238), grey);
    box-shadow: 2px -2px black inset, -4px -2px black inset;
}

.whiteKeys:hover {
    background-color: rgb(228, 228, 228);
}

.blackKeys {
    width: 3.5%;
    height: 50%;
    background-color: rgb(71, 71, 71);
    position: absolute;
    cursor: pointer;
}

.blackKeys:hover {
    background-color: rgb(36, 36, 36);
}

.blackKeys:active {
    background-color: black;
}

#volumeBar {
    position: absolute;
    right: 50px;
    top: 50px;
}

.fa-volume-up {
    color: yellow;
    font-size: 36px;
}

.fa-plus {
    color: red;
    cursor: pointer;
}

.fa-minus {
    color: red;
    cursor: pointer;
}

#volume {
    font-weight: 800;
    font-size: 1.5rem;
    user-select: none;
    color: white;
}

/* 10 SOUND EFFECTS FOR YOU! SECTION */
#soundEffectsSection {
    background-image: url("assets/garage.jpg"); 
    padding: 40px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  #soundEffectsSection h2 {
    font-size: 36px;
    transform: translateX(0%);
    font-size: 3rem;  /* Make the h2 bigger */
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);  /* Optional: Add shadow for better visibility */
  }
  
  .sound-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .sound-buttons button {
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    background-color: #444;
    color: #fff;
    border-radius: 10px;
    transition: background 0.3s ease;
    cursor: pointer;
  }
  
  .sound-buttons button:hover {
    background-color: #666;
  }

/* PODCAST SECTION */

  #podcastSection {
    background-image: url('assets/podcast.jpg'); /* Replace this with your actual image path */
    background-size: cover;
    background-position: center;
    padding: 30px;
    color: white;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

#podcastSection h2 {
    font-size: 2rem;
    transform: translateX(0%);
    font-size: 3rem;  /* Make the h2 bigger */
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

#podcastSection h3 {
    background-color: #4caf50;
}

#playPodcast {
    background-color: #4caf50;
    border-radius: 10px;
}

#pausePodcast {
    background-color: #4caf50;
    border-radius: 10px;
}

#podcastPlayer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#podcastProgress {
    width: 100%;
}

#podcastVolumeControl {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

/* SOUNDSCAPE SECTION */
#walkSection {
    margin-top: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-align: center;
    color: white;
    backdrop-filter: blur(4px);
    background-image: url('assets/city-park.jpeg'); /* Add background image here */
    background-size: cover;
    background-position: center center;
    position: relative;
}

#walkSection h2 {
    position: absolute;
    top: -40px;  /* Move the h2 outside of the box */
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;  /* Make the h2 bigger */
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);  /* Optional: Add shadow for better visibility */
}

#playWalkSound, #pauseWalkSound {
    padding: 10px 20px;
    font-size: 1.2rem;
    margin-top: 20px;  /* Add margin-top to create space from the h2 */
    margin-bottom: 20px;
    cursor: pointer;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 8px;
}

#pauseWalkSound {
    display: none; /* Hide the pause button initially */
}

#walkPlayer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#progressBar {
    width: 300px;
    appearance: none;
    height: 5px;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

#currentTime, #totalDuration {
    color: white;
    font-size: 1rem;
    font-weight: bold;
}

/* ANIMATION VIDEO SECTION*/
#animationSection {
    text-align: center;
    margin: 50px auto;
}

#animationVideo {
    width: 80%;
    max-width: 720px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

#videoControls button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

#videoControls button:hover {
    background-color: #45a049;
}

#animationImageWrapper {
    text-align: center;
    margin-bottom: 20px;
}

#animationImage {
    width: 50%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}