@font-face {
    font-family: 'Berlin Grotesk';
    src: url('./fonts/Berlin-Grotesk/BerlinGrotesk-Regular.otf') format('woff2'),
         url('./fonts/Berlin-Grotesk/BerlinGrotesk-Regular.otf') format('woff');
    font-weight: normal;
    font-style: normal;
  }
  
  body {
    font-family: 'Berlin Grotesk', sans-serif;
  }

:root{
  --bg:#000;
  --text:#fff;

  /* --bg:#b7b7b7;
  --text:#020203; */

}

html,body{
  height:100%;
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: 'Berlin Grotesk', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.page{
  min-height:100vh;
  display:grid;
  grid-template-columns: 1fr 420px;
  grid-template-rows: auto 1fr auto;
  position:relative;
  padding:28px;
  box-sizing:border-box;
}

.logo {
  position:fixed;
  top:30px;
  left:40px;
  width:80px;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  transform-origin:center;
  animation:spin 6s linear infinite;
  z-index:10;
}

.logo img {
  width:80px;
  height:80px;
  object-fit:cover;
  border-radius:0;
}

.nav {
  position: fixed;
  left: 150px;
  top: 60px;

}

@keyframes spin{
  from{ transform: rotate(0deg); }
  to  { transform: rotate(360deg); }
}

.center {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 40px;
}

.tour {
  position: fixed;
  width:min(720px, 92%);
  padding:28px 34px;
  border-radius:10px;
  text-align:left;
  font-weight: 100;
}

.tour h2{
  margin:0 0 12px 0;
  font-weight:600;
  letter-spacing:0.02em;
  font-size:18px;
}

.dates{
  transform: translateY(-200px); 
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:8px;
  font-size:16px;
  line-height:1.1;
  font-weight: 300;
}

.dates s{
  opacity:0.5;
  text-decoration-thickness:2px;
}

.dates u {
    text-decoration: none; /* Remove underline */
    opacity: 1; /* Set full opacity */

}

.highlight-badge {
  font-size: 10px;
  background: #b7b7b7;
  color: #000;
  padding: 3px 5px 3px 7px;
  border-radius: 10px;
  margin-left: 5px;
  position: fixed;
  width: 55px;
}

.covers {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:center;
  justify-content:center;
  padding-left:20px;
  box-sizing:border-box;
}

.cover {
  width:100%;
  /* height:420px; */
  background:#111;
  overflow:hidden;
  display:block;
  position:relative;
  text-decoration:none;
}

.cover .player {
  width:100%;
  height:100%;
  width: 400px;
  height: 400px;
  object-fit:cover;
  display:block;
  border-radius:0; /* eckig */
}

.cover .label{
  position:absolute;
  left:60px;
  bottom:30px;
  font-size:20px;
  text-transform:uppercase;
}

.footer {
  position: fixed;
  grid-column: 1 / 3;
  grid-row: 3 / 4;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 28px 8px 28px;
  bottom: 20px;
  right: 20px
}

.socials a{
    display: inline-block;
  color:var(--text);
  text-decoration:none;
  font-size:18px;
  margin-right:18px;
  opacity:0.95;
}

.impressum{
  font-size:12px;
  opacity:0.8;
}

  /* Modal styles */
.modal {
display: none; /* Hidden by default */
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
}

.modal-content {
background-color: #000000;
margin: 8% auto;
padding: 20px;
border-radius: 8px;
width: 80%;
max-width: 500px;
}

.imprint a {
font-size: 14px;
color: #fff;
text-decoration: none;
}

.modal-close {
color: #aaa;
float: right;
font-size: 24px;
font-weight: bold;
cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
color: #000;
text-decoration: none;
}

/* Mobile Styles */
@media (max-width: 768px) {

  .page{
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
    padding-left: 10px;
  }
  .covers{
    grid-column:1 / 2;
    grid-row:3/4;
    flex-direction:row;
    gap:12px;
    overflow:auto;
    padding-left:0;
    padding-right:6px;
  }
  .cover{
    width:240px;
    height:240px;
    flex:0 0 auto;
  }
  .cover .player {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:0; /* eckig */
  }

  .center{ padding:28px 16px; }

    .logo {
      width: 50px;
      height: 50px;
      position: absolute;
      top: 50px;
      left: 50px;
    }
    .covers {
       padding-left: 370px;
       margin-top: 100px;
       margin-left: -30px;
    }
    
    .book {
        padding-top: 10px;
    }
    .nav {
    left: 145px;
    top: 50px;
    }
  
    .dates {
      transform: translateY(-200px);
      margin-top: 280px;
      font-size: 14px;
    }
    .highlight-badge {
      font-size: 10px;
      background: #b7b7b7;
      color: #000;
      padding: 3px 5px 1px 7px;
      border-radius: 10px;
      margin-left: 5px;
      position: fixed;
      width: 55px;
      }

    .tour {
        position: revert;
        width: 100%;
        padding-left: 0px;
        max-height: 140px;
    }

    s {
        font-size: 14px;
    }
  
    .releases {
      transform: scale(1.1);
    }
  }
