/* FONTS
   ============================================================ */

@font-face {
    font-family: Geist;
    src: url('fonts/Geist-Light.ttf') format("opentype");
}
@font-face {
    font-family: GeistSemiBold;
    src: url('fonts/Geist-SemiBold.ttf') format("opentype");
}
@font-face {
    font-family: GeistBlack;
    src: url('fonts/Geist-Black.ttf') format("opentype");
}


/* ANIMATIONS
   ============================================================ */

@keyframes fadeIn {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}
@-webkit-keyframes fadeIn {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}
@-moz-keyframes fadeIn {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}


/* BASE – alle Bildschirmgrößen
   ============================================================ */

html, body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Geist', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
}


h1 {
    font-family: 'GeistSemiBold';
    font-size: 1.5rem;
    line-height: 2.8rem;
    color:rgb(242, 242, 242);
}

h2 {
    font-family: 'GeistSemiBold';
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    padding-top: 5%;
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

h3 {
    font-family: 'GeistSemiBold';
}

p {
    font-size: 0.9rem;
    white-space: wrap;
    margin-bottom:0;
}

.slogan {
    text-align: center;
    margin-bottom: 5%;
}

a {
    font-family: 'GeistSemiBold';
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    color: #000000;
    transition: 0.3s;
}
a:hover          { font-family: 'GeistBlack'; 
                   text-transform: uppercase;}
a:link,
a:active,
a:visited        { color: black; }

.logoanimation {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: -8%;
}

/* Menu (fixed top-right) */

.logo {
    margin-bottom: 30px;
}

.menu {
    position: fixed;
    top: 20px;
    right: 20px;
    text-align: right;
    z-index: 10;
    text-transform: uppercase;
    animation: fadeIn 6s ease-in;
    -webkit-animation: fadeIn 6s ease-in;
    text-shadow: -0.5px 0 #ffffff, 0 0.5px #ffffff, 0.5px 0 #ffffff, 0 -0.5px #ffffff;
    mix-blend-mode: difference;
}

.menu-item {
    cursor: pointer;
    margin-bottom: 5px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    line-height: 0.9rem;
}
.menu-item:hover    { font-family: 'GeistBlack'; }
.menu-item a:active { font-family: 'GeistBlack'; }

/* Overlay Navigation */

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: #ffffff;
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 15%;
    width: 100%;
    margin-top: 15px;
}

.overlay a {
    padding-left: 10px;
    font-size: 6rem;
    line-height: 5rem;
    text-transform: uppercase;
    color: #000000;
    display: block;
    transition: 0.3s;
}
.overlay a:hover,
.overlay a:focus  { font-family: 'GeistBlack'; }

.overlay .closebtn {
    position: absolute;
    top: -5px;
    right: 10px;
    font-size: 26px;
}

/* Content & Sections */

.content {
    animation: fadeIn 3s ease-in;
    -webkit-animation: fadeIn 3s ease-in;
}

.section {
    width: 100vw;
    display: flex;
    justify-content: left;
    font-size: 2rem;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
}

#section1 {
    width: 100vw;
}

.text-container {
    width: 100vw;
    color: black;
    padding-bottom: 50px;
}

.iframe_ {
    width:97%; 
    height:166px;
    margin: 30px;
    display: flex;
    justify-content: space-between;
}

.booking {
  margin-top: 5%;
  margin-bottom: 5%;
  text-align: center;
  font-size: 1.5rem;
  border: solid;
  border-width: 1px;
  margin-left: 40%;
  margin-right: 40%;
  padding: 10px;
  border-radius: 20px;  
}

.gigs {
    background-image:url(img/J95WTF_bg.jpg);
    display: flex;
    justify-content: center;
}

.insidegigs {
    padding:20px;
    margin:20px;
    width: 100%;
}

.event {
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.624);
  font-size: 0.9rem;
  width: 30%;
  float: inline-start;
  margin: 10px;
  padding: 20px;
}

/* Sticky Up Arrow */

#daynight {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    position: sticky;
    bottom: 22px;
    padding-right: 20px;
    text-shadow: -0.5px 0 #ffffff, 0 0.5px #ffffff, 0.5px 0 #ffffff, 0 -0.5px #ffffff;
    mix-blend-mode: difference;
}

/* Reveal (scroll-in) */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
    transition: all 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Footer */

footer {
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 45px;
    padding-bottom:150px;
}




/* PHONE – max-width: 680px
   ============================================================ */

@media screen and (max-width: 1024px) {

    body {
        font-size: 0.7rem;
    }

    h1 {
        font-size: 2.5rem;
        line-height: 2.4rem;
        padding-top: 15%;
        margin-left: 30px;
    }

    h2 {
        font-size: 1.2rem;
    }

    .logoanimation {
        margin: 0 auto;
    }

    .section {
        width: 100vw;
    }

    #section1 {
        width: 100vw;
    }

    .iframe_ {
    width: 30%;
    margin: 13%;
    height: 500px;
    display: block;
}

.booking {
    margin-left: 12%;
    margin-right: 12%;
    margin-bottom: 20%;
}

.gigs {
    background-image: url(img/J95WTF_bg_mobil.jpg);
    background-color: black;
    background-repeat: no-repeat;
    background-size:cover;
    display: block;
    justify-content: center;
    height:1530px;
}

.insidegigs{
    margin:0;
    padding:0px;
    width: 100%;
}
 #1 {
    height:330px;
 }

.insidegigs {
    margin:0;
    padding:0px;
    width: 100%;

}

 #2 {
    height:100%;
 }

.event {
    margin-left:24px;
    float:none;
    width:77%;
}


    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    footer a {
        margin: 5px 0;
    }
}


/* LANDSCAPE PHONE – max-height: 450px
   ============================================================ */

@media screen and (max-height: 450px) {

    .overlay a {
        font-size: 20px;
    }

    .overlay .closebtn {
        font-size: 26px;
        top: -5px;
        right: 10px;
    }
}