html {
    height: 100%;
    width: 100%;
    margin: 0;
  }

  .secular-one-regular {
    font-family: "Secular One", serif;
    font-weight: 400;
    font-style: normal;
  }

  .saira-condensed-light {
    font-family: "Saira Condensed", serif;
    font-weight: 300;
    font-style: normal;
  }  

  .roboto-maintext {
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
  }

  h1 {
    font-family: "Secular One", serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(4em, 9vw, 9em);
    margin-top: 0%;
    margin-bottom: 0%;

  }

  h2 {
    font-family: "Secular One", serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(3em, 4vw, 5em);
    margin-top: 0%;
    margin-bottom: 0%;

  }

  h3 {
    font-family: "Secular One", serif;
    font-weight: 400;
    font-style: italic;
    margin-top: 0%;
    margin-bottom: 0%;

  }

  h4 {
    font-family: "Secular One", serif;
    font-weight: 400;
    font-style: italic;
    margin-top: 0%;
    margin-bottom: 0%;

  }

  h5 {
    font-family: "Saira Condensed", serif;
    font-weight: 300;
    font-style: normal;
    font-size: clamp(0em, 3vw, 1.3em);
    letter-spacing: 0.2em;
    text-align: center;

  }

  p, li, label, input, textarea, button  {
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
  }

  .bodyText p, h3, li  {
    font-size: clamp(0.65em, 2vw, 1em);

  }

  a {
    text-decoration: none;
    color: whitesmoke;  }


  
  body {
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    /* overflow-x: hidden;
    overflow-y: hidden; */
    height: 100%;
    width: 100%;
    background-color: #000509;
    margin-left: 0px;
    margin-top: 0px;
  }

  .bodyText {
    display: flex;
    flex-direction: column;
    width: 60vw;
    justify-content: center;
    margin-top: 50px;
    padding-bottom: 150px;
  }





  .banner {
    background: #000509;
    width: 100vw;
    height: 7vh;
    display: flex;
    flex-direction: row;
    position: sticky;
    justify-content: space-between;
    z-index: 300;
    top: 0;
    align-content: center;
    align-items: center;
  }

  .listenToTinPalace {
    border-color: whitesmoke;
    border-width: 1px;
    border-style: solid;
    padding: 5px;
    margin: 5px;
    transition: opacity 0.3s ease; 
  


  }



  .bannerLeft {
    display: flex;
    justify-content: flex-start;
    align-items: center; 
    gap: 1rem; 
    margin-left: 5vw;
    width: 50vw;


  }
  .bannerRight {
    display: flex;
    justify-content: flex-end;
    align-items: center; 
    gap: 1rem; 
    margin-right: 5vw;
    width: 50vw;


  }

  .textContainer {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    display: flex;
    position: absolute;
    z-index: 200;
    width: 100%;
    top: 25vh;
  }

  .footer {
    width: 100vw;
    height: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    bottom: 0;
    max-width: 100vw;
    z-index: 300;

  }

  .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/twistedbackground.jpg);
    background-position: center -100px;
    background-size: cover;
    z-index: 100;
    background-repeat: no-repeat;
    animation: pulseGlow 2s infinite alternate;
}
  @keyframes pulseGlow {
    0% {
      filter: brightness(0.1); 
    }
    100% {
      filter: brightness(0.5);
    }
  }

  .pageHeaderText {
  z-index: 1100;
  color: whitesmoke; 
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;

  }

  .contactContainer {
    width: 90%; /* Use percentage for responsiveness */
    max-width: 600px; /* Set a maximum width */
    margin-left: auto; /* Center the container */
    margin-right: auto;
    padding: 30px; /* Adjust as needed */
    border-radius: 16px;
    background-color: whitesmoke;
    box-sizing: border-box; /* Include padding and border in width */
    z-index: 1000;
}

/* Media query for smaller screens (e.g., mobile) */
@media (max-width: 768px) { /* Adjust breakpoint as needed */
    .pageHeaderText {
        width: 95%; /* Take up more of the screen */
        padding: 20px; /* Reduce padding */
        margin-top: 40px; /* Adjust top margin */
    }
}
  form {
    border-radius: 16px;

  }

  label {
    display: block;
    margin-bottom: 5px;

  }

  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Prevents padding from affecting width */
  }

  button {
    background-color: #000509;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;

  }

  button:hover {
    background-color: #00203a; /* Darker green on hover */
  }


  #footer-grad {
    background: linear-gradient(transparent, #000509);
    width: 100vw;
    height: 50vh;
  }

  #footer-main {
    background: #000509;
    width: 100vw;
    height: 20vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .footerIcon {
    width: clamp(1.5rem, 2.5vw, 2rem); 
    height: auto;
    display: block; 
    transition: opacity 0.3s ease; 
}

.bannerIcon {
  width: clamp(2rem, 3vw, 3rem); 
  height: auto;
  display: block; 
  transition: opacity 0.3s ease; 

}

@media (max-width: 768px) {
  #footerRight {
      gap: 0.5rem;
  }

  .footerIcon {
      width: clamp(1rem, 2vw, 1.6rem);
  }
}

.footerIcon:hover, .bannerIcon:hover, .listenNow:hover {
  opacity: 0.5;
}


  .footerText {
    color: whitesmoke;
    white-space: nowrap;
    margin: 0;
    font-size: clamp(0.5rem, 1.2vw, 1rem);
    transition: opacity 0.3s ease; }

    .footerText:hover {
      opacity: 0.5;
  }

  #footerLeft {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: clamp(0.5rem, 1vw, 1rem);
    margin-left: 5vw;
  }

#footerRight {
  display: flex;
  justify-content: center;
  align-items: center; 
  gap: 1rem; 
  margin-right: 5vw;

}


#submitButton {
  /* Normal button styles */
  transition: background-color 0.3s ease; /* Smooth transition for background color */
}

#submitButton:disabled {
  background-color: #cccccc; /* Grayed out color when disabled */
  cursor: default; /* Change cursor to default */
  color: #888; /* Slightly darker text */
}

#submitButton:disabled::after {
  content: "";
  display: inline-block;
  margin-left: 5px; /* Adjust spacing as needed */
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff; /* White border */
  border-top-color: #888; /* Gray color for the top part of the spinner */
  animation: spin 1s linear infinite; /* Animate the spinner */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}