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



/*HERO PAGE*/


.no-scroll {
    overflow: hidden;
    height: 100vh;  /* Prevents scrolling */
}

.heropage-container {
    height: 100vh;
}

.background-image {
    height: 100vh; /* Full height of the viewport */
    background-image: url('Pictures/Background main.JPG'); /* Background image */
    background-size: cover; /* Ensure it covers the whole area */
    background-position: center; /* Center the image */
    z-index: -1;
    padding: 30px 100px;
    min-width: 100%;
    position: absolute;
    transition: 0.5s ease-in-out;
}

.background-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: black;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}


.background-image::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10%; /* Adjust as needed to control the gradient height */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 2; /* Ensure the gradient is on top of the background image but behind content */
}

.background-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 1;
    opacity: var(--scroll-opacity, 0); /* Use custom property */
}

.background-image.active::after {
    opacity: 1; /* Fades in the black background */
}

header {
    display: flex;
    justify-content: space-between;
    height: 35vh;
    align-items: center;
    padding: 20vh 15vh 20vh 15vh;
}

.hovedlogo {
    height: max(20vw, 300px);
    transition: 0.3s ease-in-out;
    margin-top: min(100px);
}

.hovedlogo:hover {
    transform: scale(1.1);
}

.ham-menu {
    height: 50px;
    width: 50px;
    position: relative;
    display: none;
}

.ham-menu:hover {
cursor: pointer;
}

.ham-menu span {
position: absolute;
/* Ensures spans respect height and width */
height: 6px;
width: 100%;
background-color: black;
border-radius: 5px;
transition: .4s ease;
top: 50%;
left: 50%;
}

.ham-menu span:nth-child(1) {
top: 25%;
transition: 0.2s ease-in;
}

.ham-menu span:nth-child(3) {
top: 75%;
transition: 0.2s ease-in;
}

.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
    background-color: white;
    z-index: 5;
}

.ham-menu.active span:nth-child(2) {
    opacity: 0;
}

.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
    background-color: white;
    z-index: 4;
}

.some-logoer {
    display: flex;
    gap: 1vw;
    justify-content: center;
    align-items: center;
}

.some-logoer li img {
    height: 5vh;
    transition: 0.3s ease-in-out;
}

.some-logoer li img:hover {
    filter: invert(100%);
    cursor: pointer;
    transform: scale(1.1);
}

header button {
    border-style: none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease-in-out;
}

.kontakt-knapp {
    text-decoration: none;
    color: white;
    font-family: "Futura";
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    background-color: black;
    padding: 0.5rem;
}

header button:hover {
    transform: scale(1.1)
}

.black-screen {
    display: flex;
    padding-top: 20vh;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 20vh;
}

.black-screen-some {
    opacity: 0;
    scale: 0;
    transition: 0.3s ease-in-out;
}

.black-screen .kontakt-knapp {
    background: none;
}

.black-screen-some.active {
    filter: invert(100%);
    opacity: 1;
    scale: 1;
}


.black-screen button {
    opacity: 0;
    padding-top: 5vh;
    scale: 0;
    transform: 0.3s ease-in-out;
}

.black-screen button.active {
    opacity: 1;
    scale: 1;
}

.liveshow {
    position: absolute; /* Positioned relative to the header */
    left: 50%; /* Center horizontally */
    bottom: 20%; /* Positioned in the lower third */
    transform: translateX(-50%); /* Adjust for centering */
    background-color: #333; /* Button background color */
    color: white; /* Text color */
    border: none; /* Remove border */
    border-radius: 20px; /* Rounded corners */
    padding: 10px 20px; /* Button size */
    font-size: min(1.5rem, 5vw); /* Text size */
    font-family: 'Futura', sans-serif; /* Font style */
    text-transform: uppercase; /* Uppercase text */
    font-weight: bold; /* Bold text */
    cursor: pointer; /* Pointer cursor on hover */
    transition: all 0.3s ease-in-out; /* Smooth transition */
}

.liveshow-tekst {
    text-decoration: none;
    color: white;
    font-family: "Futura";
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.liveshow.active {
    opacity: 0;
}

.liveshow:hover {
    background-color: #555; /* Darker background on hover */
    transform: translate(-50%, -20%); /* Slight movement on hover */
}



.second-page-container {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-color: black;
    flex-direction: column;
}

.text-second-page {
    display: flex;
    flex-direction: column;
}

h1 {
    margin-top: 5vw;
    text-align: center;
    padding-left: 20px;
}
h1 span{
    font-family: 'Futura', sans-serif; /* Font style */
    text-transform: uppercase; /* Uppercase text */
    text-align: center;
    font-size: 5rem;
    color: white;
    text-wrap: wrap;
    line-height: 3.2rem;

}

h2 {
    padding-left: 20px;
    margin-top: 0;
}

h2 li {
    font-size:  min(5vw, 2rem);
    font-family: 'Futura', sans-serif; /* Font style */
    color: white;
    padding: 5px 10px 5px 10px;
    text-align: left;
    display: inline-block;
}

h2 li::before {
    content: "\2013"; /* Horizontal bar */
    font-size: min(5vw, 2.5rem);
    font-weight: bold;
    margin-right: 10px;
}

.spotify__embed {
     /* Rounded corners */
    border: 2px solid #000; /* Optional: add a border around the iframe */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: add shadow effect */
    width: min(70vw, 400px); /* Make sure it scales responsively */
    height: min(70vw, 400px); /* Maintain aspect ratio */
    display: block; /* Ensure it behaves as a block element */
    margin-top: 50px;
    z-index: 4;
}

.innsendelser a {
    color: #FAF9F6;
    text-decoration: none;
    font-size: 20px;
    font-family: "Futura";
    font-weight: bolder;
}

.innsendelser__bilde {
    width: min(640px, 80vw);
    margin-top: 20px;
    cursor: pointer;
    z-index: 4;
    transition: 0.3s ease-in-out;
    filter: invert(100%);
    display: none;
}

.innsendelser__bilde:hover {
    transform: scale(1.1);
}

.follow-spotify {
    background-color: #333;
    color: #1ED760;
    margin-top: 30px;
    font-size: min(6vw, 2.5rem);
    font-family: 'Futura', 'bold';
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 15px 10px 15px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    transition: .3s ease-in-out;
}

.second-page-container a {
    text-decoration: none;
}

.follow-spotify:hover {
    transform: scale(1.1);
    cursor: pointer;
    color: 	#ffde00;
}

.third-page-container {
    height: 100vh; /* Full height of the viewport */
    background-image: url('Pictures/Spektrum.webp'); /* Background image */
    background-size: cover; /* Ensure it covers the whole area */
    background-position: center; /* Center the image */
    padding: 30px 100px;
    min-width: 100%;
    position: relative;
    transition: 0.5s ease-in-out;
}

.third-page-container::before,
.third-page-container::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 20%; /* Adjust as needed to control the gradient height */
    z-index: 2; /* Ensure the gradient is on top of the background image but behind content */
}

.third-page-container::before {
    top: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.third-page-container::after {
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, black 100%);
}



.spektrum {
    text-decoration: none;
    font-family: "Futura";
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    background-color: red;
    color: white;
    padding: 0.5rem;
    bottom: 20%;
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    z-index: 3;
    transition: 0.3s ease-in-out;
    border-radius: 0.3rem;
}



.third-page-container a button:hover {
    cursor: pointer;
    transform: translateX(-50%) scale(1.1);
}


.fourth-page-container {
    height: 120vh;
    background-color: black;
    padding-top: 5vh;
}

.fourth-page-container ul {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: column;
    margin-top: min(5vh, 100px);
    padding: 0 10vw 0 10vw;
}

.fourth-page-container li {
    color: black;
    font-size:  min(4.5vw, 2rem);
    font-family: 'Futura', sans-serif;
    padding: 10px;
    margin: 20px;
    font-weight: bold;
    text-align: center;
    background-color: #ffde00;
    text-transform: uppercase;
    border-radius: 5px;
    display: flex;
}

.fourth-page-container li:hover {
    cursor: pointer;
}

.spalter {
    color: white;
    font-size:  min(10vw, 4rem);
    font-family: 'Futura', sans-serif;
    font-weight: bold;
    text-align: center;
    padding: 0 20px 0 20px;
}

.fourth-page-container p {
    color: white;
    font-size:  min(4vw, 2rem);
    font-family: 'Futura', sans-serif;
    font-weight: bold;
    text-align: center;
    padding-top: 5px;
}

footer {
    height: 20vh;
    background-color: #333;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

footer .hovedlogo {
    height: 12vh;
    margin-top: 0;
}

.right-side-footer-container {
    display: flex;
    flex-direction: column;
}

footer.active {
    background-color: white;
}

.footer-kontakt {
    text-decoration: none;
    background-color: black;
    font-family: "Futura";
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    color: white;
    padding: 0.3rem;
}

footer button {
    border-style: none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

footer .some-logoer {
    filter: invert(100%);
}

footer .some-logoer li img {
    padding: 5px;
}
.endrebakgrunn {
    display: none;
}



@media only screen and (max-width: 1000px) {
    header {
        justify-content: center;
    }
    header .some-logoer, header button {
        display: none;
    }
    .hovedlogo {
        height: 40vw;
        margin-top: 0;
    }
    .ham-menu {
        display: flex;
        margin-right: 5vw;
    }
    .black-screen-some {
        gap: 1vw;
        justify-content: center;
        align-items: center;
    }
    
    .black-screen ul {
        display: flex;
        gap: 15px;
    }
    .black-screen-some li img {
        height: 5vh;
        transition: 0.3s ease-in-out;
    }
    
    .black-screen-some li img:hover {
        cursor: pointer;
        transform: scale(1.2);
    }
    
    .black-screen button {
        border-style: none;
        background: none;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.2s ease-in-out;
    }
    
    .black-screen button:hover {
        transform: scale(1.1)
    }
}