:root {
  --main-font: "Expletus Sans", sans-serif;
  --header-font: "Rubik Spray Paint";

  /* Light & Dark backgrounds */
  --background-color-light: #F8F4E3; /* Magnolia white */
  --background-color-dark:  #0A0A0A; /* Near black */

  /* Text colours */
  --text-color-light: #0A0A0A; /* Dark on light */
  --text-color-dark:  #F8F4E3; /* Light on dark */

  /* Border colours */
  --border-color-light: #0A0A0A;
  --border-color-dark:  #F8F4E3;

  /* Dimensions */
  --border-radius:    10px;
  --border-thickness: 4px;

  /* Accent tokens */
  --token-colour-light: #ECD5D5;
  --token-colour-dark:  #AC3931;

  /* other colours (unchanged): #3E78B2 #815355 #AA1155 #7C90A0 */
}

.rubik-spray-paint-regular {
  font-family: "Rubik Spray Paint", system-ui;
  font-weight: 300;
  font-style: normal;
}

.expletus-sans-uniquifier {
  font-family: "Expletus Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}


/* Light mode styles */
body,
html {
  margin: 0;
  padding: 0;
  font-size: 20px; 
  font-family: var(--main-font);
}

.dark-mode body,
.dark-mode html {
  background-color: var(--background-color-dark);
  color: var(--text-color-dark);
}

.container {
  width: 80%;
  max-width: 800px;
  margin: 20px auto;
  background-color: var(--background-color-light);
  text-align: center;
  border-radius: var(--border-radius);
  border-style: solid;
  border-width: 5px;
  padding: 20px;
  position: relative;
  box-shadow: 0px 0px 150px var(--colour-light-col1);
  z-index: 1;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
}

.dark-mode .container {
  background-color: var(--background-color-dark);
}

.background-image {
  padding: 20px;
  background-repeat: no-repeat; /* Ensure the background image doesn't repeat */
  background-size: cover; /* Scale the background image to cover the entire element */
}

header {
  position: relative;
  z-index: 2;
}

/* Base styles for h1 */
h1 {
  font-family: var(--header-font);
  font-size: 3rem;
  color: var(--text-color-light);
  padding: 0; /* Reset padding */
  margin: auto;
  text-emphasis: none;
}

/* Media query for screens less than 390px wide */
@media (max-width: 390px) {
  h1 {
    font-size: 4rem; /* Adjust font size for smaller screens */
  }
}
h2 {
  font-family: var(--header-font);
  font-size: 3rem;
  color: var(--text-color-light);
}

h3 {
  padding: 0; /* Reset padding */
  margin: auto;
  color: var(--token-colour-dark);
}

.dark-mode h3 {
  color: var(--token-colour-light);
}


/* Dark mode styles */
.dark-mode {
  color: var(--text-color-dark) !important;
}

.dark-mode h1 {
  color: inherit !important; /* Inherit text color from parent */
}

.dark-mode h2 {
  color: inherit !important; /* Inherit text color from parent */
}

.dark-mode .band-name {
  text-shadow: 0 0 10px var(--token-colour-dark);
}

/* Specific hover effect for band-name */
.band-name span:hover {
  color: var(--token-colour-dark); /* Change color as needed */
}

.band-name span.hovered {
  color: var(--token-colour-dark); /* Change color as needed */
}

/* Additional styling for band-name */
.band-name {
  display: inline-block;
  position: relative;
  text-align: center;
}

.band-name span {
  position: relative;
  display: inline-block;
  transition: color 0.1s ease;
  -webkit-transition: color 0.1s ease;
  -moz-transition: color 0.1s ease;
  -ms-transition: color 0.1s ease;
  -o-transition: color 0.1s ease;
}

.wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  transform: translateX(-100%);
  transition: transform var(--transition);
  z-index: -1;
}

@media (max-width: 600px) {
  .container {
    width: 90%;
    padding: 10px;
  }
}

#dark-mode-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
}

.banner {
  width: 80%;
  height: auto;
}

.header-container {
  text-align: center;
  border: var(--border-color-light);
  border-style: hidden;
  max-width: 800px;
  border-radius: var(--border-radius);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  margin: 20px auto;
}

.social-media {
  text-align: center;
  padding: 5px;
}

.social-media img {
  width: 48px;
  height: 48px;
  margin: 20px 2%;
  transition: filter 0.3s ease;
  border-radius: var(--border-radius);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  -webkit-transition: filter 0.1s ease;
  -moz-transition: filter 0.1s ease;
  -ms-transition: filter 0.1s ease;
  -o-transition: filter 0.1s ease;
}

.social-media img:hover {
  filter: invert(100%);
}

.dark-mode .social-media img {
  filter: invert(100%);
}

.dark-mode .social-media img:hover {
  /* box-shadow: 0PX 0PX 20px var(--token-colour-dark); */
  filter: none;
  -webkit-filter: none;
}

.gallery {
  padding: 0px;
  max-width: 800px;
  margin: 0 auto;
}

.slides-display-container {
  position: relative;
  color: transparent;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
}

.mySlides {
  width: 100%;
  border-radius: var(--border-radius);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
}

.left-button,
.right-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 30px;
  z-index: 2;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.left-button {
  left: 0;
}

.right-button {
  right: 0;
}

.left-button:hover,
.right-button:hover {
  background-color: var(--token-colour-dark); /* Light mode button hover color */
  color: #fff; /* Light mode button text color on hover */
}

.dark-mode .left-button:hover,
.dark-mode .right-button:hover {
  background-color: var(--token-colour-light); /* Dark mode button hover color */
  color: #fff; /* Dark mode button text color on hover */
}

.dark-mode .left-button,
.dark-mode .right-button {
  background-color: rgba(
    255,
    255,
    255,
    0.5
  ); /* Adjust button background color in dark mode */
  color: #000000; /* Adjust button text color in dark mode */
}


.main-section {
  padding-top: 25px;
}

.soundcloud-player {
  font-family: var(--main-font);
  font-weight: 120%;
  width: 80%;
  max-width: 800px;
  margin: 20px auto;
  box-shadow: 0px 0px 8px var(--colour-light-col1);
  border-radius: var(--border-radius);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  background-color: var(--background-color-light);
  border-style: solid;
  border-width: 5px;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.soundcloud-links {
  font-size: 10px;
  color: var(--text-color-light);
  line-break: anywhere;
  word-break: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: var(--main-font);
  font-weight: 100;
}

.latest-video-container {
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
}

.latest-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.latest-video iframe {
  position: absolute;
  border-radius: var(--border-radius);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-frame {
  display: none;
}

.toggle-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
}

.toggle-checkbox {
  display: none;
}


.dark-mode .container {
  background-color: var(--background-color-dark);
}

.dark-mode .soundcloud-player {
  background-color: var(--background-color-dark); /* Adjust background color for dark mode */
}

.dark-mode .soundcloud-links {
  color: var(--text-color-dark); /* Adjust font color for dark mode */
}
.dark-mode .soundcloud-player-frame{
  box-shadow: 0PX 0PX 20px var(--token-colour-light);
}


.dark-mode .social-media img:hover {
  filter: invert(0%); /* Revert filter to default in dark mode */
}

.dark-mode .soundcloud-player {
  background-color: var(--background-color-dark); /* Adjust background color of Soundcloud player in dark mode */
}

.dark-mode .soundcloud-links {
  color: var(--background-color-light); /* Adjust font color of Soundcloud links in dark mode */
}

.dark-mode .latest-video-container {
  background-color: var(--background-color-dark);
}

@media (max-width: 600px) {
  .soundcloud-player {
    font-family: var(--main-font);
    font-weight: 120%;
    width: 85%; /* This width rule may be causing the issue */
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0px 0px 8px var(--colour-light-col1);
    border-radius: var(--border-radius);
    padding: 20px;
    position: relative;
    z-index: 1;
  }
}

.toggle-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
}

.toggle-checkbox {
  display: none; /* Hide the actual checkbox */
}

.toggle-label {
  display: block;
  width: 60px; /* Adjust width as needed */
  height: 30px; /* Adjust height as needed */
  background-color: var(--background-color-dark); /* Background color of the toggle in light mode */
  border-radius: 15px; /* Make it round */
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease; /* Add transition effect */
}

.toggle-label::after {
  content: "";
  display: block;
  width: 28px; /* Width of the toggle button */
  height: 28px; /* Height of the toggle button */
  background-color: #fff; /* Color of the toggle button in light mode */
  border-radius: 50%; /* Make it round */
  position: absolute;
  top: 1px;
  left: 1px;
  transition: left 0.3s ease; /* Add transition effect */
}

.toggle-checkbox:checked + .toggle-label {
  background-color: #FAD693; /* Background color of the toggle in dark mode */
}

.toggle-checkbox:checked + .toggle-label::after {
  left: calc(
    100% - 30px
  ); /* Move the toggle button to the right when checked */
}

.toggle-label .fas {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff; /* Color of the icons */
}

.toggle-label .fa-sun {
  left: 10px; /* Adjust position of the sun icon */
  box-shadow: 0 0 10px orange;
}

.toggle-label .fa-moon {
  right: 10px; /* Adjust position of the moon icon */
}
.show-table {
  width: auto;
  margin: 0 auto;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.show-table th,
.show-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color-light);
  border-top: 1px solid var(--border-color-light);
}

.show-table th {
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}

.show-table th {
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}

.show-table a {
  display: inline-block;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text-color-light);
  border: 3px solid darkorange; /* Change border color */
  background-color: orange; /* Change background color */
  border-radius: 0; /* Squared border */
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s; /* Smooth transition */
}

.show-table a:hover {
  color: white; /* Change text color on hover */
  background-color: darkorange; /* Change background color on hover */
  border-color: orange; /* Change border color on hover */
}

.show-table td {
  color: var(--text-color-light);
}

.show-table td:nth-child(4) {
  text-align: center;
}

.show-table .tba-message {
  text-align: center;
}

/* Dark mode styles */
.dark-mode .show-table {
  background-color: var(--background-color-dark); /* Adjust background color for dark mode */
  color: var(--text-color-dark); /* Adjust text color for dark mode */
}

.dark-mode .show-table th {
  background-color: var(--background-color-dark); /* Adjust background color for dark mode */
  color: var(--text-color-dark); /* Adjust text color for dark mode */
}

.dark-mode .show-table td {
  border-bottom-color: var(--border-color-dark); /* Adjust border color for dark mode */
  border-top-color: var(--border-color-dark); /* Adjust top border color for dark mode */
  color: var(--text-color-dark); /* Adjust text color for dark mode */
}


.contact-button {
  display: inline-block;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text-color-light);
  border: 3px solid var(--text-color-light);
  background-color: transparent;
  border-radius: var(--border-radius);
  font-weight: bold;
  margin-top: 20px;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  cursor: pointer; /* Add cursor pointer for consistency */
}

.contact-button:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  background-color: var(--token-colour-dark);
}


.dark-mode .contact-button {
  color: var(--text-color-dark); /* Text color in dark mode */
  border: 2px solid var(--border-color-dark); /* Border color in dark mode */
}

.dark-mode .contact-button:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  background-color: var(--token-colour-dark) /* Underline on hover in dark mode */
}

.biography {
  max-width: 700px;
  margin-bottom: 20px;
  color: var(--text-color-light);
  width: 70%;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 5px 40px;
  border: var(--border-thickness) solid var(--border-color-light);
  border-radius: var(--border-radius);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
}

.indented {
  text-indent: 20px; /* Adjust the value as needed */
}

.bio-content {
  text-align: left;
  color: var(--text-color-light);
  line-height: 1.6;
}

.dark-mode .biography {
  background-color: var(--background-color-dark);
  border-color: var(--border-color-dark);
  color: var(--text-color-dark);
}

.dark-mode .bio-container p {
  color: var(--text-color-dark);
}

