:root {
  --primary-color: #f7f7f7;
  --hover-color: #e0e0e0;
  --accent-color: #608fe1;
  --accent-color2: #fcef5f;
  --text-color: #020202;
  --dark-blue: #3577e9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: Poppins, "Segoe UI", sans-serif;
  color: var(--text-color);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--primary-color);
}

nav {
  background-color: var(--primary-color);
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 15;
  border-bottom: 1px solid var(--text-color);
}

nav ul {
  list-style: none;
  display: flex;
}

nav .contactUs-li {
  margin-right: auto;
}

nav a.socials {
  width: 55px;
  fill: var(--text-color);
}

nav a.socials svg {
  fill: var(--text-color);
  width: 100%;
  height: auto;
}

nav li {
  display: flex;
}

.logo-simple {
  width: 70px;
  padding: 5px;
}

nav a {
  display: flex;
  text-decoration: none;
  color: var(--text-color);
  padding: 1em 1em;
  transition: background-color 150ms ease;
  align-items: center;
}

nav a:hover {
  background-color: var(--hover-color);
}

nav a.active-link {
  border-bottom: 3px solid var(--accent-color);
}

#open-sidebar-button {
  background: none;
  border: none;
  padding: 1em;
  margin-left: auto;
  cursor: pointer;
}

#close-sidebar-button {
  display: none;
  background: none;
  border: none;
  padding: 1em;
  margin-left: auto;
  cursor: pointer;
}

#small-screen-navbar {
  display: none;
  border-bottom: 1px solid var(--text-color);
}

#overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
}

main img {
  max-width: 100%;
  height: auto;
}








.top-banner {
  background-image: url(Assets/psb-nyc.jpg);
  min-height: 80vh;
  background-position: bottom center;
  background-size: cover;
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-image: fill 1 linear-gradient(hsl(0 0% 0% / 0.3), hsl(0 0% 0% / 0.3));
}

.top-banner img {
    width: 400px;
    height: auto;
}

.top-banner a {
  text-decoration: none;
  color: var(--primary-color);
  background-color: var(--accent-color);
  border-radius: 5px;
  padding: 12px 20px;
  font-weight: bold;
  margin-top: 1.5em;
  transition: background-color 150ms ease;
}

.top-banner a:hover {
  background-color: var(--dark-blue);
}

.top-banner h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  max-width: 90%;
  text-align: center;
}

.top-banner p {
  font-size: clamp(1.25rem, 2vw, 3rem);
  max-width: min(550px, 90%);
  text-align: center;
  font-weight: bold;
}

.about-content {
  max-width: 1000px;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.about-content img {
  width: 600px;
  border-radius: 15px;
}

.about-text {
  display: flex;
  flex-direction: column;
  width: 360px;
  gap: 10px;
}

.about-text a {
  padding: 10px 20px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: bold;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  width: fit-content;
  transition: background-color 150ms ease;
}

.about-text a:hover {
  background-color: var(--dark-blue);
}

.grey-background {
  background: var(--hover-color);
}

.reverse-wrap {
  flex-wrap: wrap-reverse;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: min(10%, 60px) 5%;
}

.section h1 {
    font-size: clamp(2rem, 4vw, 4rem);
}

.section hr {
    border: 1px solid var(--accent-color);
    width: 100%;
}

.top-title {
    align-items: baseline;
}

button {
  padding: 10px 20px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: bold;
  border: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--dark-blue);
  cursor: pointer;
}




/* ------------------------- MEMBERS PAGE CSS ------------------------- */
.members-banner {
    background-image: url(Assets/psb-parade.jpg);
    min-height: 60vh;
    background-position: center center;
}

#music-content {
  display: none;
  gap: 20px;
}

#error {
  color: red;
  display: none;
}

#login {
  gap: 20px;
  text-align: center;
}

#password-input {
  padding: 10px;
}

.itinerary-tabs {
  width: min-content;
  background-color: var(--hover-color);
  padding: 15px 20px;
  border-radius: 20px;
}

.itinerary-tabs ul {
  list-style: none;
  display: flex;
  justify-content: left;
  gap: 50px;
}

.tabs a {
  text-decoration: none;
  color: var(--light-purple);
  text-wrap: nowrap;
}

.tabs a:hover {
  border-bottom: 3px solid var(--accent-color);
}

.scroll-wrapper {
  overflow-x: auto;
  padding-bottom: 1rem;
  width: 100%;
}

.scroll-wrapper::-webkit-scrollbar {
  height: 5px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

.wrapper-tab-content {
  position: relative;
}

.wrapper-tab-content a {
  color: var(--text-color);
}

.tab-content {
  position: absolute;
  visibility: hidden;
  padding: 10px 0 0 0;
  height: 0;
}

.tab-content h2 {
  padding-bottom: 10px;
}

.tab-content h3 {
  padding-top: 10px;
}

.content-visible {
  position: static;
  visibility: visible;
  height: auto;
  display: flex;
  flex-direction: column;
}

.active-tab {
  color: var(--text-color) !important;
  border-bottom: 3px solid var(--accent-color);
}

.download-all-btn {
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.download-all-btn:hover:not(:disabled) {
    background-color: var(--dark-blue);
}

.download-all-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}







/* ------------------------- CONTACT US PAGE CSS ------------------------- */

.contact-us {
    display: flex;
    flex-direction: unset;
    gap: 40px;
    justify-content: space-evenly;
    padding-top: 0;
    flex-wrap: wrap;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.contact-us a {
    color: var(--text-color);
    transition: transform 150ms ease;
}

.contact-us a:hover {
  transform: translateY(-3px);
}

.contact-method {
    display: flex;
    flex-direction: unset;
    padding: 20px 0 0 20px;
}

.contact-method svg {
    stroke: var(--text-color);
    fill: var(--text-color);
}

#email-svg {
    stroke-width: 20;
}

#address-svg {
    stroke-width: 0.4;
}

.contact-method-text {
    padding-left: 20px;
}

#email {
  display: flex;
}

#address {
    display: flex;
    max-width: 242px;
}

#follow-socials-text {
  padding-top: 40px;
}

.follow-socials {
  padding-top: 20px;
  display: flex;
  gap: 50px;
  justify-content: center;
}

.follow-socials a {
  width: 40px;
  transition: transform 150ms ease;
}

.follow-socials a:hover {
  transform: scale(1.2);
}

.contact-us-right {
    display: flex;
    flex-direction: column;
    background-color: var(--accent-color);
    padding: 40px;
    border-radius: 50px;
    color: var(--primary-color);
    max-width: 470px;
}

.contact-us-right hr {
    border-color: var(--text-color);
}

.contact-us-right a {
    color: var(--primary-color);
}

.contact-joe-text {
    padding: 20px 0 0 20px;
    display: flex;
    flex-direction: column;
}

.joe {
    font-weight: bold;
}

.contact-joe-text a {
    padding-left: 20px;
}







/* ------------------------- FOOTER CSS ------------------------- */

.footer {
  background: var(--accent-color);
  color: var(--primary-color);
}

.footer svg {
  fill: var(--primary-color);
  stroke: var(--primary-color);
  width: 40px;
}

.footer a {
  color: var(--primary-color);
  transition: transform 150ms ease;
}

.footer a:hover {
  transform: translateY(-3px);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-socials {
  display: flex;
  justify-content: space-evenly;
}

.footer-socials a {
  transition: transform 150ms ease;
}

.footer-socials a:hover {
  transform: scale(1.2);
}

.footer-socials svg {
  stroke: none;
}

.footer-content {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}

.footer-contact-method {
  display: flex;
  align-items: center;
}

.joes {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer .contact-joe-text {
  padding: unset;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-weight: bold;
}







@media screen and (max-width: 550px) {
  #small-screen-navbar,
  #close-sidebar-button {
    display: flex;
  }
  #small-screen-navbar {
    position: sticky;
    top: 0;
    background-color: var(--primary-color);
    z-index: 15;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(15em, 100%);
    z-index: 16;
    border-left: 1px solid var(--hover-color);
    transition: right 300ms ease-out;
  }
  nav.show {
    right: 0;
  }
  nav.show ~ #overlay {
    display: block;
  }
  nav ul {
    width: 100%;
    flex-direction: column;
  }
  nav a {
    width: 100%;
  }
  nav a.active-link {
    border-bottom: none;
  }
  nav .contactUs-li {
    margin-right: unset;
  }
  nav a.socials {
    width: 60px;
  }
}

@media screen and (max-width: 700px) {
    .contact-us-right {
        padding: 20px;
        border-radius: 30px;
    }
}

@media screen and (max-width: 860px) {
  .itinerary-tabs {
    width: 100%;
  }
  .itinerary-tabs ul {
    gap: 30px;
  }
}

@media screen and (max-width: 1112px) {
  .about-text {
    width: fit-content;
    max-width: 600px;
  }

  .about-content {
    gap: 10px;
  }
}

@media screen and (max-width: 730px) {
  .footer-content {
    flex-direction: column;
    gap: 15px;
  }

  .footer-socials {
    width: 300px;
  }
}