@charset "UTF-8";

/*** 
**** FONTS ****
***/

/* 
@font-face {
  font-family: "Despistaos";
  src: url("../fonts/despistaos/despistaos-black.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Despistaos";
  src: url("../fonts/despistaos/despistaos-book.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Despistaos Titles";
  src: url("../fonts/despistaos/despistaos-titles.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} 
*/

/*** 
**** VARIABLES ****
***/

:root {
  /* Colors */
  --primary-color: var(--black-color);
  --secondary-color: #b70101;
  --hover-secondary-color: #b80101;
  --black-color: #000000;
  --grey-color: #cdcccc;
  --blue-color: #273a59;
  --light-blue-color: #3464b9;
  --white-color: #ffffff;

  --shadow-color: #ffe36c;

  /* Font Sizes */
  --head-size-s: 1.5rem; /*24px*/
  --head-size-m: 2rem; /*32px*/
  --head-size-l: 2.5rem; /*40px*/
  --head-size-xl: 3.5rem; /*56px*/
  --head-size-xxl: 4rem; /*64px*/
  --head-size-xxxl: 4.5rem; /*72px*/

  --body-size-xxxs: 0.5rem; /*8px*/
  --body-size-xxs: 0.62rem; /*10px*/
  --body-size-xs: 0.75rem; /*12px*/
  --body-size-s: 0.875rem; /*14px*/
  --body-size-m: 1rem; /*16px*/
  --body-size-l: 1.125rem; /*18px*/
  --body-size-xl: 2rem; /*32px*/

  /* Font Family */

  --font-family-body: "Montserrat", sans-serif;
  --font-family-title: "Montserrat", sans-serif;

  /* Line Height */
  --line-size-m: 1.125rem; /*18px*/
  --line-size-l: 1.5rem; /*24px*/

  /* Paddings */
  --padding-s: 0.5rem;
  --padding-m: 1rem;
  --padding-l: 1.5rem;

  /* Adaptative height */
  --app-height: 100dvh;
}

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

/*** 
**** GENERAL ****
***/

html {
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  direction: ltr;
  scroll-behavior: smooth;
}

body {
  color: var(--white-color);
  font-family: var(--font-family-body);
  font-optical-sizing: auto;
  background-color: var(--blue-color);
  letter-spacing: -0.25px;
}

body.menu-active,
body.lyric-active {
  overflow: hidden;
}

h1 {
  font-size: var(--head-size-l);
  line-height: calc(var(--head-size-l) + 4px);
  letter-spacing: -0.96px;
}

p {
  font-size: var(--body-size-m);
  letter-spacing: -0.36px;
}

li {
  list-style: none;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  word-break: normal;
}

.no-display {
  display: none;
  visibility: hidden;
}

input[type="text"],
input[type="email"],
select,
textarea {
  padding: 0 0 3px;
  width: 100%;
  border: 0px none;
  border-bottom: 1px solid var(--white-color);
  border-radius: 0px;
  background: none;
  color: var(--white-color);
  font-family: var(--font-family-body);
  font-size: var(--body-size-s);
  font-weight: normal;
  letter-spacing: -0.25px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.dark input[type="text"],
.dark input[type="email"],
.dark select,
.dark textarea {
  border-color: var(--black-color);
  color: var(--black-color);
}

select {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2IiBoZWlnaHQ9IjQiIHZpZXdCb3g9IjAgMCA2IDQiPgogIDxwYXRoIGlkPSJQb2zDrWdvbm9fMSIgZGF0YS1uYW1lPSJQb2zDrWdvbm8gMSIgZD0iTTMsMCw2LDRIMFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDYgNCkgcm90YXRlKDE4MCkiLz4KPC9zdmc+Cg==");
  background-position: calc(100% - 0.5rem) center;
  background-size: 6px 4px;
  background-repeat: no-repeat;
}

textarea {
  height: 20px;
  line-height: 1rem;
}

input[type="checkbox"] {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1px solid white;
  border-radius: 1px;
  color: white;
  appearance: none;
  outline: 0;
  cursor: pointer;
  box-shadow: none;
}

.dark input[type="checkbox"] {
  border-color: var(--black-color);
  color: var(--black-color);
}

input[type="checkbox"]::before {
  position: absolute;
  content: "";
  display: block;
  top: 2px;
  left: 4px;
  width: 3.5px;
  height: 5.5px;
  border-style: solid;
  border-color: white;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
}

.dark input[type="checkbox"]::before {
  border-color: var(--black-color);
}

input[type="checkbox"]:checked::before {
  opacity: 1;
}

button,
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.4375rem 1rem;
  width: max-content;
  min-height: 2rem;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: var(--white-color);
  font-family: var(--font-family-body);
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.button.disable,
.button.no-link {
  margin-top: 2.5rem;
  background-color: transparent;
  color: var(--white-color);
  line-height: normal;
  cursor: initial;
}

/* Close Button */

.close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.close .line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--white-color);
}

.close .line:first-child {
  transform: rotate(-45deg);
}

.close .line:last-child {
  transform: rotate(45deg);
}

/* Arrow Button */

.arrow {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjMuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCgkgdmlld0JveD0iMCAwIDE2IDI4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNiAyODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtlbmFibGUtYmFja2dyb3VuZDpuZXcgICAgO30KCS5zdDF7ZmlsbDojRkZGRkZGO30KPC9zdHlsZT4KPGcgY2xhc3M9InN0MCI+Cgk8cGF0aCBjbGFzcz0ic3QxIiBkPSJNMC4xLDI3LjhDMCwyNy43LDAsMjcuNiwwLDI3LjVjMC0wLjEsMC4xLTAuMywwLjItMC40TDE0LjgsMTRMMC4yLDAuOUMwLDAuNy0wLjEsMC40LDAuMSwwLjIKCQljMC4yLTAuMiwwLjUtMC4yLDAuNywwbDE1LDEzLjVjMC4yLDAuMiwwLjIsMC42LDAsMC43bC0xNSwxMy41QzAuNiwyOC4xLDAuMywyOCwwLjEsMjcuOHoiLz4KPC9nPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-size: calc(100% - 4px) calc(100% - 4px);
}

.arrow.disable {
  opacity: 0.25;
}

/*** HEADER ***/

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.top-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 1rem;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--white-color);
  transition: border-color 0.25s;
  z-index: 99;
}

.dark .top-header {
  border-color: var(--black-color);
}

/* Menu button */

.menu-button-container {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 6.5px 0;
  max-width: 1.5rem;
}

.menu-button-container .line {
  margin: 0;
  height: 1px;
  background-color: var(--white-color);
  transition: all 0.25s;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.7);
}

.dark .menu-button-container .line {
  background-color: var(--black-color);
  box-shadow: none;
}

.menu-button-container .line:first-child {
  margin-left: 0.375rem;
  float: right;
  width: 1.125rem;
}

.menu-button-container .line:nth-child(2) {
  margin: 4px 0;
  width: 1.5rem;
}

.menu-button-container .line:last-child {
  width: 0.75rem;
}

.menu-active .menu-button-container .line:first-child {
  width: 1.5rem;
  transform: rotate(-45deg) translateX(-7.5px);
}

.menu-active .menu-button-container .line:nth-child(2) {
  transform: rotate(45deg);
}

.menu-active .menu-button-container .line:last-child {
  width: 0;
  opacity: 0;
}

.menu-button-container.sub-menu-show .line {
  box-shadow: none;
}

.menu-button-container.sub-menu-show .line:first-child {
  transform: rotate(45deg) translate(2px, 13px);
  width: 1rem;
}

.menu-button-container.sub-menu-show .line:nth-child(2) {
  transform: rotate(-45deg) translate(2.75px, -5px);
  width: 1rem;
}

.menu-button-container.sub-menu-show .line:last-child {
  transform: translate(1.5px, -4.95px);
  width: 1.5rem;
  opacity: 1;
}

/* Logo */

#logoDespistaos {
  display: block;
  width: 24px;
  height: 24px;
  filter: drop-shadow(0px 1px 0px rgba(0, 0, 0, 0.7));
}

.logoColor {
  fill: var(--white-color);
  transition: all 0.25s;
}

.dark .logoColor {
  fill: var(--black-color);
}

.dark #logoDespistaos {
  filter: none;
}

/* Next Concert */

.top-header .next-concert {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
}

.top-header .next-concert a {
  color: var(--white-color);
  text-decoration: none;
  transition: color 0.25s;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.7);
}

.dark .top-header .next-concert a {
  color: var(--black-color);
  text-shadow: none;
}

.slide-black .top-header .next-concert a {
  color: var(--white-color);
  text-shadow: none;
}

/* Main Menu */

#site-navigation {
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 69px;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transition:
    opacity 0.25s ease-in-out,
    visibility 0s ease-in-out 0.25s;
  z-index: 1;
}

#site-navigation.show {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.25s ease-in-out,
    visibility 0s ease-in-out 0s;
}

/* Primary Menu */

.primary-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.primary-menu-container {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  font-family: var(--font-family-body);
  font-size: 5.5vh;
  font-weight: bold;
  text-align: center;
}

.primary-menu-container ul {
  position: relative;
  right: 0;
  transition: right 0.25s ease-in-out;
}

.primary-menu-container ul.is-submenu-active {
  right: 100vw;
}

.primary-menu-container li {
  margin: 0.5rem 0;
}

.primary-menu-container a {
  color: var(--white-color);
  text-decoration: none;
  transition: filter 0.25s ease-in-out;
}

.menu-active .primary-menu-container a {
  filter: blur(1.5px);
}

.home.menu-active .primary-menu-container a {
  filter: none;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.7);
}

.primary-menu-container .page_item a,
.primary-menu-container .current-menu-item a,
.primary-menu-container .current_page_parent a {
  filter: blur(0px);
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.7);
}

.primary-menu-container li .sub-menu {
  position: absolute;
  top: 50%;
  right: -100vw;
  width: 100vw;
  transform: translate(28%, -50%);
  transition: right 0.25s ease-in-out;
}

.primary-menu-container li .sub-menu a {
  filter: none;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.7);
}

.primary-menu-container li .sub-menu .back {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0 0.75rem;
  top: 3rem;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}

.primary-menu-container li .sub-menu .back svg {
  width: 1rem;
  height: auto;
  fill: var(--white-color);
}

/* Social Menu */

.social-navigation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 2;
}

.social-navigation::before {
  content: "";
  width: 90px;
  height: 1px;
  background-color: var(--white-color);
}

.lyric-active .social-navigation::before {
  background-color: var(--black-color);
}

.social-navigation.desktop {
  display: none;
}

.social-navigation ul {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 2rem 0;
}

.social-navigation ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1.5rem;
}

.social-navigation ul li svg {
  fill: var(--white-color);
  width: auto;
  height: 22px;
}

.lyric-active .social-navigation ul li svg {
  fill: var(--black-color);
}

/*** CONTENT ***/

.site-content {
  position: relative;
  z-index: 0;
}

.privacy-policy .site-content {
  padding: 6rem 1.5rem 2.5rem;
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content p a {
  color: var(--white-color);
  text-decoration: underline;
}

.page-header.floating {
  position: absolute;
  top: 6.5rem;
  left: 1.5rem;
  z-index: 9;
}

.page-title {
  color: var(--white-color);
  font-size: 14vw;
}

.dark .page-title {
  color: var(--black-color);
}

/* Social block */

.social {
  display: flex;
}

.social li {
  margin-right: 1rem;
}

.social li .link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid;
  border-radius: 50%;
  color: var(--white-color);
  cursor: pointer;
}

.social li .link svg {
  fill: var(--white-color);
  width: auto;
  height: 18px;
}

/* Blog & Press */

.press .page-header {
  padding: 6.5rem 1.5rem 0;
  min-height: 100dvh;
  min-height: var(--app-height);
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.news article:nth-child(2) {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  min-height: 75dvh;
}

.news article:nth-child(2) .article-content {
  position: absolute;
  bottom: var(--padding-m);
  margin: 0;
  padding: var(--padding-m);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.blog article header {
  position: relative;
}

.news article:nth-child(2) figure {
  position: absolute;
  height: 100%;
}

.blog article figure img {
  display: flex;
  width: 100%;
  height: 37dvh;
  object-fit: cover;
  object-position: center;
}

.news article:nth-child(2) figure img {
  height: 100%;
}

.blog article .entry-content {
  padding: 1rem var(--padding-m) 3rem;
}

.blog article:last-child .entry-content {
  padding-bottom: 0;
}

.news article:nth-child(2) .entry-content {
  padding: 1rem 0 0;
  color: var(--white-color);
}

.blog article .entry-title {
  margin: 0 var(--padding-s);
  padding: 2rem 0.5rem 0;
  font-family: var(--font-family-body);
  font-size: var(--head-size-m);
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.press article .entry-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.news article:nth-child(2) .entry-title {
  position: relative;
  margin: 0;
  padding: 0;
  backdrop-filter: initial;
  -webkit-backdrop-filter: none;
}

.blog article .entry-title a {
  color: var(--white-color);
  text-decoration: none;
}

.blog article .entry-content .posted-on {
  display: flex;
  margin-bottom: 0.625rem;
  font-size: var(--body-size-xs);
  font-weight: bold;
}

.blog article .entry-content p {
  margin-top: 0;
  font-size: 1rem;
  line-height: 20px;
}

.blog article .entry-content p:last-child {
  margin-bottom: 0;
}

/*** 
**** FOOTER ****
***/

.site-footer {
  margin-top: 5rem;
}

.site-footer::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 7.5rem;
  height: 1px;
  background-color: var(--white-color);
}

.site-footer .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0 2rem;
}

.site-footer .logo svg .logoColor {
  fill: var(--white-color);
}

/* Footer Menu */

.footer-navigation {
  margin: 0 0 1.5rem;
}

.footer-navigation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 0 40px;
}

.footer-navigation ul li a {
  font-family: var(--font-family-body);
  font-size: 10px;
  font-weight: bold;
  color: var(--white-color);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0;
}

/* Sponsors */

.sponsors {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0 70px;
}

.sponsors svg {
  fill: var(--white-color);
}

/* Copyright */

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0 0.5rem;
  font-family: var(--font-family-body);
  font-size: 10px;
  font-weight: bold;
  color: var(--white-color);
  text-transform: uppercase;
  letter-spacing: 0;
}

/* Kit digital */

.kit-digital {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-gap: 2rem 0;
  padding: 2rem 0;
  text-align: center;
}

.kit-digital .logos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-gap: 2rem 0;
  width: 100%;
}

.kit-digital p {
  padding: 0 15%;
  font-size: 6px;
  line-height: 8px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.kit-digital .row {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.kit-digital svg {
  fill: var(--white-color);
}

.kit-digital #lines rect {
  stroke: var(--white-color);
}

.edit-link {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
}

.edit-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 0px;
}

.edit-link a::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjMuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCgkgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojRkZGRkZGO30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTQyMS43LDIyMC4zTDE4OC41LDQ1My40bC0zMy45LTMzLjlsMy41LTMuNUgxMTJjLTguOCwwLTE2LTcuMi0xNi0xNnYtNDYuMWwtMy41LDMuNQoJYy00LjcsNC44LTguMiwxMC42LTEwLjEsMTdsLTIzLDc4LjJsNzguMi0yM2M1LjUtMS45LDEyLjItNS40LDE3LTEwLjFsMzMuOSwzMy45Yy0xMC40LDEwLjQtMjMuMywxOC4xLTM3LjQsMjIuMkwzMC44LDUxMQoJYy04LjQsMi41LTE3LjUsMC4yLTIzLjctNi45Yy02LjItNS4zLTguNS0xNC40LTYuMS0yMi45bDM1LjQtMTIwLjNjNC4yLTE0LjEsMTEuOC0yNywyMi4yLTM3LjRMMjkxLjcsOTAuM0w0MjEuNywyMjAuM3oKCSBNNDkyLjcsNTguOGMyNSwyNSwyNSw2NS42LDAsOTAuNmwtNDguNCw0OC40bC0xMzAtMTMwbDQ4LjQtNDguNGMyNS0yNSw2NS42LTI1LDkwLjYsMEw0OTIuNyw1OC44eiIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-size: 100% auto;
}

/*** 
**** 404 ****
***/

.error404 .site-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  width: 100%;
  height: calc(100% - 58px);
  text-align: center;
}

.error404 .page-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  font-size: 10rem;
  line-height: 9.5rem;
}

.error404 .page-title small {
  font-size: 1.9rem;
  line-height: 1.8rem;
}

/*** 
**** MEDIA SCREEN ****
***/

/* 414px */

@media screen and (min-width: 25.875rem) {
  :root {
    --padding-s: 1rem;
    --padding-m: 1.5rem;
  }

  /* HEADER */

  .top-header {
    width: calc(100% - 2rem);
  }

  #site-navigation {
    overflow-y: hidden;
  }

  .primary-menu-container {
    font-size: 40px;
  }

  /* CONTENT */

  .page-title {
    font-size: var(--head-size-l);
  }
}

/* 768px */

@media screen and (min-width: 48rem) {
  :root {
    --head-size-xl: 5rem; /*80px*/
    --head-size-xxxl: 6rem; /*96px*/

    --padding-m: 3rem;
  }

  p {
    font-size: var(--body-size-l);
    line-height: 1.5rem;
  }

  /* HEADER */

  .top-header {
    padding: 1.5rem 1rem;
    width: calc(100% - 4rem);
  }

  .top-header .site-branding {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  #site-navigation {
    padding-top: 74px;
  }

  .primary-menu-container {
    font-size: 3.5rem;
  }

  .primary-menu-container li {
    margin: 1.5rem 0;
  }

  .primary-menu-container li .sub-menu {
    transform: translate(35%, -50%);
  }

  .site-footer {
    margin-top: 6rem;
  }

  .grid-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    padding: 1.5rem 3rem;
  }

  .site-footer .logo {
    margin-bottom: 0;
  }

  .footer-navigation {
    grid-column-start: 1;
    grid-row-start: 1;
    margin: 0;
  }

  .footer-navigation ul {
    justify-content: flex-start;
  }

  .footer-navigation ul li:first-child {
    margin-left: 0;
  }

  .sponsors {
    grid-column-start: 2;
    grid-row: 1 / span 2;
    justify-content: flex-end;
    grid-gap: 0 4rem;
  }

  .sponsors li:last-child {
    margin-right: 0;
  }

  .footer-copyright {
    grid-column-start: 1;
    grid-row-start: 2;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    font-size: 10px;
  }

  .footer-copyright::before {
    content: "";
    margin: 12px 0 10px;
    width: 7.5rem;
    height: 1px;
    background-color: var(--white-color);
  }

  .kit-digital {
    padding: 2.5rem 0 1rem;
    grid-column: 1 / span 2;
    grid-gap: 1.5rem 0;
  }

  .kit-digital .logos {
    display: flex;
    flex-direction: row;
    grid-gap: 2rem 8.75dvw;
  }

  .kit-digital .row {
    grid-gap: 2rem 8.75dvw;
  }

  /* CONTENT */

  .privacy-policy .site-content {
    padding: 8rem 3rem 2.5rem;
  }

  .privacy-policy .site-content h2 {
    margin-top: 3.5rem;
  }

  .page-header.floating {
    top: 9rem;
    left: 3rem;
  }

  /* Blog & Press */

  .blog article {
    display: flex;
    flex-direction: row;
    height: 28vh;
  }

  .press .page-header {
    padding: 9rem 3rem 0;
  }

  .press .page-header,
  .news article:nth-child(2) {
    min-height: auto;
    height: 56vh;
  }

  .blog article:nth-child(odd) {
    flex-direction: row-reverse;
  }

  .blog article figure {
    width: 50%;
  }

  .news article:nth-child(2) figure {
    grid-row: 1 / sapn 2;
    overflow: hidden;
    width: 100%;
  }

  .blog article figure img {
    height: 100%;
  }

  .news article:nth-child(2) figure img {
    width: 100%;
    height: 100%;
  }

  .blog article .article-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.5rem;
    width: 50%;
    transition: background-color 0.25s ease-in-out;
  }

  .press article .article-content {
    padding: 2rem 1.5rem;
  }

  .news article:nth-child(2) .article-content {
    margin-left: 1.5rem;
    padding: 1.5rem;
    max-width: 490px;
    width: 100%;
  }

  .blog article .entry-title {
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 37px;
  }

  .news article:nth-child(2) .entry-title a {
    color: var(--white-color);
  }

  .blog article .entry-content {
    padding: 1.5rem 0 0;
  }
}

/* 1024px (Landscape) & 1200px */

@media screen and (min-width: calc(64rem - 1px)) and (orientation: landscape),
  (min-width: 75rem) {
  :root {
    --body-size-m: 0.75rem;
    --head-size-l: 2.5rem; /*40px*/
  }

  input[type="checkbox"] {
    border-width: 1px;
    height: 12px;
  }

  h1 {
    line-height: var(--head-size-l);
  }

  /*** HEADER ***/

  .site-header {
    position: fixed;
    width: auto;
    height: 100%;
  }

  .top-header {
    top: 2rem;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    padding: 1rem 2rem;
    width: auto;
    height: calc(100% - 4rem);
    border-right: 1px solid var(--white-color);
    border-bottom: 0px;
  }

  .top-header .next-concert {
    position: fixed;
    top: 2.5rem;
    right: 2rem;
    transition: top 0.35s ease-in-out;
  }

  .lyric-active .top-header .next-concert a {
    color: var(--white-color);
  }

  .top-header .site-branding {
    position: relative;
    left: 0;
    transform: translateX(0);
  }

  /* Main Menu */

  #site-navigation {
    padding: 2rem 2rem 2rem calc(89px + 4.5rem);
  }

  /* Primary Menu */

  .primary-navigation {
    justify-content: flex-start;
    align-items: center;
  }

  .primary-menu-container {
    width: auto;
    font-size: 2.5rem;
    text-align: left;
  }

  .primary-menu-container ul.is-submenu-active {
    right: 0;
  }

  .primary-menu-container li {
    margin: 1rem 0;
  }

  .primary-menu-container li:hover a,
  .primary-menu-container li.active a {
    filter: blur(0px);
  }

  .primary-menu-container ul.is-submenu-active li.active a {
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.7);
  }

  .primary-menu-container li .sub-menu {
    right: 0;
    left: 100%;
    padding-left: 6rem;
    width: 100%;
    white-space: nowrap;
    transform: translate(0, -50%);
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
  }

  .primary-menu-container ul li:hover .sub-menu {
    opacity: 1;
  }

  .primary-menu-container ul.is-submenu-active .sub-menu {
    opacity: 1;
  }

  /* Social Menu */

  .social-navigation.mobile {
    display: none;
  }

  .social-navigation.desktop {
    flex: none;
    display: flex;
  }

  .social-navigation::before {
    content: none;
  }

  .social-navigation ul {
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  .social-navigation ul li {
    margin: 0.75rem 0;
  }

  .social-navigation ul li:first-child {
    margin-top: 0;
  }

  .social-navigation ul li:last-child {
    margin-bottom: 0;
  }

  .social-navigation ul li svg {
    width: auto;
    height: 16px;
  }

  .dark .social-navigation ul li svg {
    fill: var(--black-color);
  }

  /*** CONTENT ***/

  .privacy-policy .site-content {
    padding: 6rem 3rem 2.5rem 8.5rem;
  }

  .page-header.floating {
    top: 10rem;
    left: calc(89px + 3rem);
  }

  /* Blog & Press */

  .blog .top-header .next-concert {
    display: none;
  }

  .blog .site-main {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .blog article {
    height: 50vh;
    grid-column: 6 / span 7;
    grid-row: span 1;
  }

  .blog article .entry-content {
    padding: 1rem 0 0;
  }

  .press .page-header {
    padding-top: 10rem;
    padding-left: 8.5rem;
  }

  .press .page-header,
  .news article:nth-child(2) {
    grid-column: 1 / span 5;
    grid-row: span 2;
    position: sticky;
    top: 0;
    min-height: max-content;
    height: auto;
  }

  .blog article .entry-title {
    font-size: 28px;
    line-height: 32px;
  }

  .news article:nth-child(2) .article-content {
    margin-right: 1.5rem;
    margin-left: calc(89px + 1.5rem);
    padding: 1.5rem;
    width: auto;
    max-width: auto;
    min-height: 39%;
  }

  .blog article .article-content h2:hover a {
    text-decoration: underline;
  }

  .news article:nth-child(2):hover .article-content {
    background-color: transparent;
  }

  .blog article .entry-title a,
  .blog article .article-content p {
    transition: color 0.25s ease-in-out;
  }

  .blog article:hover .entry-title a,
  .blog article:hover .article-content p {
    color: var(--white-color);
  }

  .error404 .site-content {
    height: 100%;
  }

  /*** 
  **** FOOTER ****
  ***/

  .site-footer {
    margin-left: 89px;
    padding: 0 4.5rem 1.5rem;
    width: calc(100% - 89px);
  }

  .grid-content {
    margin-top: 2rem;
    padding: 0;
  }
}
