:root {
    --text-color: #fdf6f0;
    --header-text-color: var(--text-color);
}

@font-face {
    font-family: 'Konop';
    src: url('fonts/Konop/Konop-12Line.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

*, html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* Add scroll padding to all elements with IDs */
[id] {
    scroll-margin-top: 50vh;
    scroll-margin-bottom: 50vh;
}

body {
    color: var(--text-color);
    background-color: #dfdfdf;
    font-family: 'Spartan', sans-serif;
    font-size: 18px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/aroe.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    background-attachment: fixed;
}

/* iOS Safari fix: override to scroll */
@supports (-webkit-touch-callout: none) {
  .fixed-background {
    background-attachment: scroll;
  }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: brightness(70%);
    z-index: -1;
}

h1 {
    color: var(--header-text-color);
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    font-size: 2.5rem;
}

h2 {
    margin-top: 0;
    margin-bottom: 16px;
    text-align: center;
    font-size: 28px;
    text-decoration: underline;
    font-family: "Konop";
}

h3 {
    margin-bottom: 16px;
}

a {
    color: var(--text-color);
    text-align: center;
}

table {
    border-spacing: 0 20px;
}

  
main {
    min-height: 100vh;
}

header {
    margin-top: 8px;
    margin-bottom: 65vw;
}

section {
    max-width: 75vw;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50vw;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

section img {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin-bottom: 16px;
    border-radius: 4px;
    overflow: hidden;
    object-fit: cover;
    box-shadow: 0 6px 32px 0 rgba(0,0,0,0.35), 0 1.5px 6px 0 rgba(0,0,0,0.18);
}

section iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 16px;
    border-radius: 4px;
    overflow: hidden;
    object-fit: cover;
    box-shadow: 0 6px 32px 0 rgba(0,0,0,0.35), 0 1.5px 6px 0 rgba(0,0,0,0.18);
}


nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: bold;
}

footer {
    height: 50vh;
}

picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.music-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0; 
    margin-left: auto; 
    margin-right: auto;
     margin-bottom: 16px
}

.music-links > * {
    padding-left: 4px;
    padding-right: 4px;
}

.photo-gallery {
    width: 100%;
    display: flex;
    gap: 10px;
}

.photo-gallery .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.photo-gallery .photo {
    position: relative;
}

.photo-gallery .photo img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.photo-gallery .photo .overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    background-repeat: no-repeat;
    color: white;
    font-size: 12px;
}

.rotated-r {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
  transform-origin: center center;
}

.name {
    font-family: 'Konop', sans-serif;
    font-weight: normal;
    letter-spacing: 0;
    padding: 0;
    display: flex;
    gap: 7%;
    justify-content: center;
    align-items: center;
    font-size: 13vw;
}

.poster {
    max-width: 65vw;
    
}

.show-city {
    font-weight: bold;
    display: block;
    margin-bottom: 2px;
    text-decoration: none;
}

.show-venue {
    font-style: italic;
    display: block;
    font-size: 16px;
}

.show-date {
    font-weight: bold;
    display: block;
    margin-bottom: 2px;
    letter-spacing: 1px;
    text-align: right;
}

.show-time {
    display: block;
    text-transform: uppercase;
    text-align: right;
    font-size: 16px;
    font-style: italic;
}

.shows-table {
    width: 100%;
    max-width: 400px;
    border-collapse: separate;
}

.shows-table td {
    vertical-align: top;
    text-align: left;
}

.shows-table a {
    vertical-align: top;
    text-align: left;
    text-decoration: none;
}




/* Tablet and up */
@media (min-width: 600px) {

    section {
        font-size: 28px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        margin-top: 8px;
        margin-bottom: 16px;
        font-size: 18px;
    }

    h2 {
        font-size: 38px;
    }


    .name {
        font-size: 17vw;
    }

    .poster {
        max-width: 55vw;
    }

    .shows-table {
        border-spacing: 0 30px;
        max-width: 500px;
    }
}

/* Desktop and up */
@media (min-width: 1024px) {
    header {
        margin-bottom: 40vw;
    }

    nav {
        margin-top: 16px
    }
}
