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

body {
    background: #000;
    color: #777;
    font-family: 'IM Fell English SC', serif;
}


.page {
    max-width: 900px;
    margin: 0 auto;
}



/* HERO Supergod Logo*/
.hero img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
     height: auto;
    display: block;
    background: #000;
}



/* TEXT */
.container {
    background: #000;   /* <-- DETTA är din “ändringsbara bakgrund” */
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

h2 {
    font-size: 36px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.band-info {
    font-size: 30px;
    letter-spacing: 1.2px;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

/* MOBILE */
@media (max-width: 600px) {
    .container {
        padding: 20px 14px;
    }

    h2 {
        font-size: 26px;
    }

    .band-info {
        font-size: 20px;
    }
}

/* DESKTOP */
@media (min-width: 900px) {
    .hero img {
        max-height: 70vh;
    }
}


/* del två medlemmar */

.section-image img {
    width: 100%;
    display: block;
    margin-top: 30px;
}

.members {
    text-align: center;
    margin-top: 0px;
}

.members h3 {
    font-size: 30px;
    margin-bottom: 0px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.members p {
    font-size: 24px;
    line-height: 1.6;
}


@media (max-width: 600px) {
    .members h3 {
        font-size: 20px;
    }

    .members p {
        font-size: 18px;
        line-height: 1.5;
    }
}






/* avslutande linje */
.divider {
    border-bottom: 1px solid #333;
    margin: 40px auto 0 auto;
    width: 90%;
}









.player {
    margin: 40px auto;

    max-width: 600px;
    text-align: center;
}

.track-title {
    display: block;
}








.cover img {
    width: 50%;
    max-width: 300px;
    display: block;
    margin: 60px auto 30px auto;
    border: 1px solid #222;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cover img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.7);
  
}








.track {
    position: relative;
    padding: 2px;
    cursor: pointer;
    color: #999;
    font-size: 18px; /* mobil-standard */
}

@media (min-width: 900px) {
    .track {
        font-size: 24px; /* för dator */
    }
}







.track.active .track-title {
  color: #b08cff !important;
  text-shadow:
        0 0 8px rgba(139, 92, 246, 0.9),
        0 0 18px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(139, 92, 246, 0.5);
}



/* paus */
.track.paused {
  color: #777!important;
  text-shadow:
        0 0 8px rgba(139, 92, 246, 0.9),
        0 0 18px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(139, 92, 246, 0.5);
}



.track.paused .progress-bar {
    opacity: 1;            /* visas bara när låten spelas */
  
}

/* progress (gömd från början) */
.progress-bar {
    position: relative;
    top: 0;
    left: 0;
    height: 5px;
    cursor: pointer;
    width: 60%;        /* 👈 styr hur bred den är */
    margin: 0 auto 4px auto;  /* 👈 CENTRERAR */
    cursor: pointer;
  
    background: #2a2a2a;   /* OSPALAD DEL (grå) */
    border-radius: 999px;

    opacity: 0;            /* osynlig när inte aktiv */
}



.track.active .progress-bar {
    opacity: 1;            /* visas bara när låten spelas */
  
}



.track.paused .progress-fill {
   background: #777;

   
     box-shadow:
        0 0 8px rgba(139, 92, 246, 0.9),
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 45px rgba(139, 92, 246, 0.5);
  
}




.progress-fill {
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
    position: absolute;
    top: 50%;
    left: 0;
    height: 5px;          /* samma som bakgrund */
    background: #8b5cf6;
    transform: translateY(-50%);
    border-radius: 999px;
     box-shadow:
        0 0 8px rgba(139, 92, 246, 0.9),
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 45px rgba(139, 92, 246, 0.5);
}






/* sabbath omslag */


.gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin: 50px auto;
    max-width: 900px;
}

.gallery img {
    width: 100%;
    cursor: pointer;
    display: block;
    border: 1px solid #222;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.7);
    
}

/* MOBILE: 3 per rad */
@media (max-width: 600px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}



/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
  
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
}







.video-wrapper {
  position: relative;
  width: 70%;
  max-width: 900px;
  margin: 30px auto 0;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}













.footer {
    text-align: center;
    padding: 40px 20px;
    color: #777;
}

.footer-text {
    font-size: 14px;
    letter-spacing: 1px;
}

/* matchar din divider-stil */
.footer .divider {
    border-bottom: 1px solid #999;
    width: 60%;
    margin: 0 auto 30px auto;
    opacity: 0.4;
}








