:root {
  font-family: 'Inter', sans-serif;
  --color-smoke: #F4F4F4;
  --color-ash: #0E0E0E;
}

@supports (font-variation-settings: normal) {
  :root {
    font-family: 'Inter var', sans-serif;
  }
}

body,
html {
  margin: 0;
  padding: 0;
  background-color: var(--color-ash);
  color: var(--color-smoke);
  overflow-x: hidden;
}

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

.header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 50px;
  margin: 0;
  background-color: var(--color-smoke);
  color: var(--color-ash);
}

.header nav {
  margin-left: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
}

.nav-links li a {
  font-weight: 600;
  cursor: pointer;
}

.nav-links li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 5px;
}

.logo {
  width: 60px;
  height: 60px;
}

.main-title {
  font-size: 5rem;
  font-weight: 700;
  margin: 0;
}

.introduction {
  max-width: 85rem;
  margin: 60px 0;
  padding: 0 40px;
  font-size: 1rem;
  line-height: 1.5;
}

.members-photo {
  width: 100%;
  height: auto;
  max-height: 500px;
}

.members-caption {
  font-size: 0.9rem;
  color: gray;
  margin: 10px 20px 20px 40px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 40px 0;
}

.section-tab {
  width: 48px;
  height: 25px;
  background-color: var(--color-smoke);
  padding: 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.members {
  border-top: 5px solid var(--color-smoke);
}

.members-list {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 40px;
  margin: 0 0 100px 0;
  list-style: none;
}

.member-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

.concerts {
  width: 100%;
  background-color: var(--color-smoke);
  color: var(--color-ash);
  padding-bottom: 40px;
}

.concerts .section-tab {
  background-color: var(--color-ash);
}

.concerts-list {
  padding: 0 50px;
}

.tour-title {
  font-family: 'Koulen', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

#table-container {
  overflow-x: auto;
}

.concerts-table {
  width: 100%;
  border: solid 5px var(--color-ash);
  border-collapse: collapse;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.concerts-table th,
.concerts-table td {
  border-left: solid 5px var(--color-ash);
  border-right: solid 5px var(--color-ash);
  border-top: none;
  border-bottom: none;
  padding: 10px;
  text-align: left;
  text-wrap: nowrap;
}

.concerts-table th {
  font-size: larger;
  font-weight: 700;
}

.concerts-table a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.buttons-spacer {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}

.add-to-calendar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 50px;
  background-color: #D9D9D9;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
}

.copy-url {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 50px;
  background-color: #D9D9D9;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  width: 100%;
}

.album-cover-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  flex: 0 0 auto;
}

.albums button {
  background: var(--color-smoke);
  color: var(--color-ash);
  border: none;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  cursor: pointer;
  opacity: 0.5;
}

.albums button:hover {
  opacity: 0.8;
}

.carousel-track {
  scrollbar-width: none;
}

.contact {
  width: 100%;
  background-color: var(--color-smoke);
  color: var(--color-ash);
  margin: 40px 0;
}

.contact .section-tab {
  background-color: var(--color-ash);
}

.contact p {
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0 40px 40px 40px;
  margin: 0;
}

.contact a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.contact a:hover {
  text-decoration-thickness: 4px;
}

.social-media {
  padding: 0 40px 40px 40px;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

footer {
  text-align: left;
  padding: 40px 150px 40px 20px;
  font-size: 0.9rem;
  color: gray;
}

footer a {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
}

/* Responsive for mobile */
@media (max-width: 850px) {
  .header {
    flex-direction: column;
    padding: 40px;
    gap: 2px;
  }

  .nav-links {
    padding: 0;
  }

  .header nav {
    margin-left: 0;
  }

  .main-title {
    font-size: 3rem;
    padding: 10px;
  }

  .logo {
    width: 45px;
    height: 45px;
  }

  .concerts-list {
  padding: 0 0 0 50px;
  }

  .tour-title {
    font-size: 2rem;
  }
}
