@font-face {
  font-family: Roboto;
  src: url("fonts/roboto-regular.woff2") format("woff2");
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: #414141;
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-family: Arial, sans-serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: 35px;
  font-weight: 700;
}

h2 {
  font-size: 29px;
}

h3 {
  font-size: 24px;
}

p {
  margin: 0 0 16px;
}

.site-header,
.site-footer,
.section {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.logo img {
  width: 160px;
}

.menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu-button {
  display: none;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.nav a {
  padding-bottom: 4px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.nav .active {
  font-weight: 700;
  border-bottom-color: currentColor;
}

.language-switcher {
  display: flex;
  gap: 6px;
}

.language-switcher img {
  width: 24px;
  height: 24px;
}

.language-switcher .active img {
  opacity: 1;
  outline: 1px solid currentColor;
  outline-offset: 2px;
}

#google_translate_element,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.section {
  padding: 32px 0;
}

.hero {
  text-align: center;
}

.hero img {
  margin: 0 auto 24px;
  object-fit: contain;
}

.content.center {
  margin-inline: auto;
  text-align: center;
}

.image-row,
.artist-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.image-row img {
  flex: 1 1 280px;
}

.artist-card {
  flex: 1 1 280px;
}

.artist-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 10px;
}

.artist-card h3 {
  font-size: 20px;
  text-align: center;
}

.site-footer {
  padding: 32px 0;
  text-align: center;
}

@media (max-width: 700px) {
  .site-header {
    position: relative;
    align-items: center;
    padding: 18px 0;
  }

  .logo img {
    width: 130px;
  }

  .menu-button {
    display: grid;
    gap: 5px;
    width: 34px;
    padding: 6px;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .header-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    display: none;
    padding: 18px 0 22px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
  }

  .menu-toggle:checked ~ .header-links {
    display: block;
  }

  .menu-toggle:checked + .menu-button span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle:checked + .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .menu-button span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    display: grid;
    gap: 14px;
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  .nav a {
    display: block;
    padding: 4px 0;
    font-size: 18px;
    text-align: center;
  }

  .language-switcher {
    justify-content: center;
    margin-top: 18px;
  }

  .section {
    padding: 24px 0;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 21px;
  }
}
