/* General Reset */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%; /* Ensure the body and html take full height */
}

body {
  background-color: #E1EFF7;
  font-family: 'Montserrat', sans-serif;
  color: #0D2633;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
}

/* Main content area */
main {
  flex-grow: 1; /* This ensures the main content takes up all available space, pushing the footer down */
}

/* Index Page Styles */
.index-body {
  justify-content: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
}

p {
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Genre Drop-down styling */
.genre-dropdown {
  margin-top: 20px;
}

#genreSelect {
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 5px;
  border: 1px solid #0D2633;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#genreSelect:hover {
  background-color: #ffcc00;
  color: #0D2633;
}

/* Center the logo horizontally */
.logo-container {
  margin-top: 20px;
  text-align: center;
}

/* Style the logo image */
.logo {
  max-width: 150px;
  margin-bottom: 10px;
}

/* Spacing between text and player button */
.text-container {
  margin-bottom: 20px;
}

.button-container {
  position: relative;
  margin-top: 10px;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto; /* Ensure centering on index */
}

.play-btn {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 75px 0 75px 150px;
  border-color: transparent transparent transparent #0D2633;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.1);
}

/* Volume Slider */
.volume-container {
  margin-top: 40px;
}

#volumeControl {
  width: 150px;
}

/* Footer for Index Page */
.index-footer {
  font-size: 1.2rem;
  padding: 20px;
  background-color: transparent; /* Match background color of index page */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto; /* Push footer to the bottom */
}

.index-footer a {
  color: #0D2633 !important;  /* Force override link color */
  text-decoration: none !important;  /* Remove underline */
  font-weight: 600 !important;  /* Semi-bold for professional look */
  text-transform: uppercase !important;  /* Uppercase text for clean design */
  letter-spacing: 1px !important;  /* Space between letters for clarity */
  padding: 5px 10px !important;  /* Padding around the links */
  transition: color 0.3s ease, background-color 0.3s ease !important;  /* Smooth hover effect */
}

.index-footer a:hover {
  color: #ffcc00 !important;
  background-color: rgba(0, 0, 0, 0.1) !important; /* Subtle background color change on hover */
  border-radius: 5px !important; /* Rounded corners for hover effect */
}

/* Media Queries for smaller screens */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .logo {
    max-width: 120px;
  }

  .play-btn {
    width: 100px;
    height: 100px;
    border-width: 50px 0 50px 100px;
  }

  #volumeControl {
    width: 100px;
  }
}

/* About Us Page Styles (Scoped) */
.about-body {
  background-color: #E1EFF7;
}

header {
  margin-top: 30px;
}

.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 40px 20px;
}

.about-section .content-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
}

.about-section h2 {
  font-size: 2rem;
  margin-top: 30px;
  color: #0D2633;
}

.about-section ul {
  list-style-type: disc;
  text-align: left;
  margin: 20px auto;
  max-width: 600px;
  padding-left: 20px;
}

.about-section ul li {
  margin-bottom: 10px;
}

/* Footer for About Us Page */
.about-footer {
  margin-top: 30px;
  padding: 20px;
  background-color: #0D2633;
  color: white;
  display: flex;
  justify-content: center;
}

.about-footer a {
  color: white !important; /* Force override link color */
  text-decoration: none !important; /* Remove underline */
  font-weight: 600 !important; /* Semi-bold for professional look */
  text-transform: uppercase !important; /* Uppercase text for clean design */
  letter-spacing: 1px !important; /* Space between letters for clarity */
  padding: 5px 10px !important; /* Padding around the links */
  transition: color 0.3s ease, background-color 0.3s ease !important; /* Smooth hover effect */
}

.about-footer a:hover {
  color: #ffcc00 !important;
  background-color: rgba(255, 255, 255, 0.1) !important; /* Subtle background color change on hover */
  border-radius: 5px !important; /* Rounded corners for hover effect */
}

/* Footer for Contact Us Page */
.contact-footer {
  background-color: transparent;
  padding: 20px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
}

.contact-footer a {
  color: #0D2633 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 5px 10px !important;
  transition: color 0.3s ease, background-color 0.3s ease !important;
}

.contact-footer a:hover {
  color: #ffcc00 !important;
  background-color: rgba(0, 0, 0, 0.1) !important;
  border-radius: 5px !important;
}


/* Media Queries for About Us Page */
@media (max-width: 768px) {
  .about-section .content-container {
    max-width: 90%;
  }

  h1 {
    font-size: 2rem;
  }

  .about-section h2 {
    font-size: 1.8rem;
  }

  .about-footer {
    font-size: 1rem;
  }
}
/* Contact Us Page Styles */
.contact-body {
  background-color: #E1EFF7;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.content-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

label {
  font-weight: 600;
  margin-bottom: 5px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #0D2633;
  border-radius: 5px;
}

.submit-btn {
  padding: 10px 20px;
  font-size: 1.2rem;
  background-color: #0D2633;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #ffcc00;
  color: #0D2633;
}

/* Other Contact Info */
.other-info {
  margin-top: 30px;
}

.other-info a {
  color: #0D2633;
  text-decoration: none;
  font-weight: 600;
}

.other-info a:hover {
  color: #ffcc00;
}