@import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');

body {
  background-color: #ffffff;
  color: rgb(67, 67, 67);
  font-family: 'Electrolize', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  }

.octaviaQuote {
  padding: 0px;
  margin: 0px;
}

.footer footer {
  color: white;
  display: none;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
}

nav a:hover {
  color: #666;
}

section {
  margin: 6rem auto;
  max-width: 60%;
}

.mainContent {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(144, 144, 144, 0.1);
}

h1, h2 {
  color: #333;
}

h1 {
  font-size: 3rem;
}

blockquote {
  margin-top: 20px;
  padding-left: 20px;
  border-left: 3px solid #333;
}

footer {
  background-color: #f4f4f4;
  text-align: center;
  padding: 20px 0;
}

.carrotList {
  list-style-type: '> ';
  padding-left: 1.5em;
}

.artistImage {
  max-width: 50%;
}

.artist-list {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Space between artist items */
  padding-top: 50px;
}

.radiobutton {
  background-color: #00dfffe6;
  border: none;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.3s ease 0s;
  font-family: 'Electrolize', sans-serif; /* Use global font */
}

.artist-item {
  display: flex;
  flex-direction: column; /* Row layout for desktop */
  align-items: flex-start; /* Center items vertically */
  /* border: 1px solid #f9f9f9; */
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(144, 144, 144, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* .artist-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
} */

.artistImage {
  max-width: 200px;
  margin-right: 20px;
}

.artist-name {
  align-items: flex-start;
  flex: 1.5;
}

.artist-bio {
  flex: 2;
  max-width: 800px;
}

.artist-details {
  display: flex;
  flex-direction: column; /* Stack name and bio vertically */
  flex-grow: 1; /* Allow details to take available space */
}

.artist-links {
  display: flex; /* Use flexbox for links */
  gap: 5px; /* Space between links */
  margin-top: 5px; /* Space above the links */
  flex: 1;
}

/* Add this rule to make bold text more prominent */
strong, b {
  font-size: calc(1rem + 3px);
  -webkit-text-stroke: .7px black;
  color: black;
  /* text-shadow: 
    -1px -1px 0 rgba(0, 0, 0, .1),  
     1px -1px 0 rgba(0, 0, 0, .1),
    -1px  1px 0 rgba(0, 0, 0, .1),
     1px  1px 0 rgba(0, 0, 0, .1); */
}

a:not(nav a, .eventCal a, .calendar-links a) {
  color: black;
  /* background-color: rgba(0, 223, 255, 0.7); */
  padding: 2px 4px;
  text-decoration: underline;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

a:not(nav a, .eventCal a, .calendar-links a):hover {
  background-color: rgba(0, 223, 255, 0.9);
  text-decoration: none;
  padding: 4px 6px;
}

.eventCal {
  max-width: 100%;
  max-height: 550px;
}

/* visited links the same */
a:visited:not(nav a) {
  color: black;
}

.amateursClubImage {
  width: 100%;
  max-height: 20rem;
  object-fit: cover;
  object-position: 0px 50%;
}

.airtable-embed {
  border: none;
  border-radius: 10px;
}

.lineup {
  max-width: 400px;
  background-color: #d7d7d7; /* Lighter shade of grey */
  border-radius: 10px; /* Rounded corners */
  padding: 10px; /* Padding around the content */
}

.lineup h2 {
  margin-bottom: 0px;
}

#nextMonday {
  padding-top: 0px;
  padding-bottom: 10px; 
  display: block;
  font-size: 1.2rem;
  font-style: italic;
}

.submissionForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

#djFields {
  gap: 10px;
}

#submissionForm button {
  background-color: #333; /* Same background color as amateurs club button */
  color: white; /* White text color */
  border: none; /* Remove default border */
  border-radius: 5px; /* Rounded corners */
  padding: 10px 20px; /* Padding for the button */
  font-family: 'Electrolize', sans-serif; /* Same font family */
  font-size: 1.2rem; /* Font size */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease; /* Smooth transition for background color */
}

#submissionForm button:hover {
  background-color: #666; /* Darker shade on hover */
}


#submissionForm input, select {
  font-family: 'Electrolize', sans-serif;
  font-size: 1.2rem;
}

.calendar-links img {
  width: 40px;
  height: 40px;
  text-decoration: none;
  padding-left: 5px;
}

.calendar-links a {
  text-decoration: none;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

@media only screen and (max-width: 600px) {
  .artist-item {
    flex-direction: column; /* Stack items vertically on mobile */
    align-items: flex-start; /* Align items to the start */
  }

  .lineup, #submissionForm {
    max-width: 100%;
  }

  .artistImage {
    margin-right: 0; /* Remove right margin on mobile */
    margin-bottom: 10px; /* Space below image */
  }

  section {
    margin: 0px;
    padding: 0px;
    max-width: 100%;
  }

  h1 {
    margin-top: 0px;
  }

  .mainContent {
    margin: 0px;
  }

  #calendar {
    font-size: 0.8em;  /* Reduce font size */
  }

  .eventCal {
    height: 500px;
  }

  .fc-list-table .fc-list-event-time {
    font-size: 14px; /* Change this value to your desired size */
  }

  .fc-header-toolbar {
    font-size: 0.75em;  /* Smaller toolbar for mobile */
  }

  .fc-daygrid-day-number {
    font-size: 0.7em;
  }

  @media only screen and (max-width: 600px) {
  .artist-item {
    flex-direction: column; /* Stack items vertically on mobile */
    align-items: flex-start; /* Align items to the start */
  }

  .artistImage {
    margin-right: 0; /* Remove right margin on mobile */
    margin-bottom: 10px; /* Space below image */
  }

  section {
    margin: 0px;
    padding: 0px;
    max-width: 100%;
  }

  .mainContent {
    margin: 0px;
  }

  #calendar {
    font-size: 0.8em;
  }

  .eventCal {
    height: 500;
  }

  .fc-list-table .fc-list-event-time {
    font-size: 14px; /* Change this value to your desired size */
  }

  .fc-header-toolbar {
    font-size: 0.75em;  /* Smaller toolbar for mobile */
  }

  .fc-daygrid-day-number {
    font-size: 0.7em;
  }

  .amateursClubImage {
    width: 100%;
    max-height: 30rem;
    object-fit: cover;
    display: block;
  }

}

}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 15px;
    z-index: 100;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
}

/* Mobile Styles */
@media only screen and (max-width: 600px) {
    .hamburger-menu {
        display: block;
        position: relative;
        margin: 15px 0;
        text-align: left;
        z-index: 1000;
    }

    nav {
        display: flex;
        justify-content: flex-start;
        position: relative;
        padding: 0 20px;
        margin: 0;
        text-align: left;
    }

    nav ul.nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        transform: none;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        text-align: left;
    }

    nav ul.nav-links.active {
        display: block;
    }

    nav ul li {
        display: block;
        margin: 15px 0;
        text-align: left;
    }

    /* Hamburger Animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}