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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: antiquewhite;
}


/******************* HEADER TITLE *******************/

#main-title {
    opacity: 0;
    height: 0;
}

#header-title {
    background-color: #000;
    height: 20rem;
    color: antiquewhite;
    font-size: 3rem;
    font-weight: 800;
    display: flex;
    align-items: end;
}
#header-title h2 {
    line-height: 2.4rem;
    padding: 0.5rem;
    padding-left: 5rem;
}




/******************* HEADER IMAGE *******************/

#header-img {
    background-image: url('/img/band_studio.jpg');
    background-size: cover;
    background-position: center;
    height: 30rem;
    color:#000;
    font-size: 3rem;
    font-weight: 800;
}
#header-img h2 {
    line-height: 2.4rem;
    padding: 0.5rem;
    padding-left: 5rem;
    text-shadow: 0 0 1.5rem rgba(255, 255, 255, 1.0); 
}
@media (max-width: 1200px) {
    #header-img {
      height: 30rem;
    }
}
@media (max-width: 900px) {
    #header-img {
      height: 25rem;
    }
}
@media (max-width: 500px) {
    #header-img {
      height: 20rem;
    }
}




/******************* BLOCK QUOTE *******************/

#about-band {
    background-color: #000;
    color:antiquewhite;
    text-align: end;
    display: grid;
    grid-template-columns: 2fr 1fr;
    font-size: large;
}
#about-band blockquote {
    padding: 7rem 3rem 5rem 3rem;
    justify-self: center;
}
#about-band blockquote footer {
    padding-top: 1rem;
}
@media (max-width: 1200px) {
    #about-band {
      grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 900px) {
    #about-band {
      grid-template-columns: 1fr 2fr;
    }
}
@media (max-width: 500px) {
    #about-band {
      grid-template-columns: 1fr 4fr;
    }
}


/******************* MEMBERS *******************/

/* #members {
    background-color: #000;
    color: antiquewhite;
    text-align:start;
    font-weight: 800;
    padding: 0 0 3rem 3rem;
    font-size: 2.5rem;
    line-height : 2.8rem;
}
#members cite {
    font-size: large;
    font-weight: 400;

}
 */



/******************* LATEST ALBUM *******************/

#latest-album {    
    margin: 5rem 0;  
    background-color: #000;      
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: antiquewhite;
}

#latest-album img {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding-left: 0;
}
#album-info {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: right;
    padding: 3rem;
}
#album-info h2 {
    display: inline-block;
    line-height: 2.8rem;
}

@media (max-width: 900px) {
    #latest-album {
        font-size: 1.8rem;
    }
}
@media (max-width: 500px) {
    #latest-album {
        grid-template-columns: 1fr;
        font-size: 1.5rem;
    }
}



/******************* LS_FEST *******************/

#ls_fest-img {
    background-image: url('/img/LS25-2.jpg');
    background-size: cover;
    background-position: center;
    height: 25rem;
    background-color:aquamarine;
}

@media (max-width: 500px) {
    #ls_fest-img {
    height: 20em;
    }
}
/******************* JAZZFEST *******************/

#jazzfest-img {
    background-image: url('/img/jazzfest2024.jpg');
    background-size: cover;
    background-position: center;
    height: 25rem;
    background-color:aquamarine;
}

@media (max-width: 500px) {
    #jazzfest-img {
    height: 20em;
    }
}

/******************* REHEARSAL IMG *******************/

#rehearsal_29_03_2025-img {
    background-image: url('/img/rehearsal_290325.jpg');
    background-size: cover;
    background-position: center;
    height: 25rem;
    background-color:aquamarine;
}

@media (max-width: 500px) {
    #jazzfest-img {
    height: 20em;
    }
}

/******************* LISTEN *******************/

#listen-now {
    background-color: #000;      
    padding: 5rem 3rem;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
#listen-text {
    font-size: 2.5rem;
    line-height : 2.8rem;
    padding: 3rem 0;
    font-weight: 800;
    color: antiquewhite;
    }
#listen-icons { 
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: end;
}

#listen-now img {
    width: 100%;
    padding: 3rem;
}
@media (max-width: 900px) {
    #listen-now {
        grid-template-columns: 1fr;
    }
    #listen-icons {
        padding: 0;
    }
}
@media (max-width: 500px) {
    #listen-now {
        grid-template-columns: 1fr;
    }
    #listen-icons img{
        padding: 1rem;;
    }
}

/******************* LATEST GIGS *******************/

#latest-gigs {
    background-color: #000;
    color: antiquewhite;
}
#latest-gigs-text {
    font-size: 3.5rem;
    line-height : 2.8rem;
    padding: 5rem 3rem;
    font-weight: 800;
    justify-self: end;
}
#gigs img {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding: 0;
    padding-bottom: 3rem;
}

.gig {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 5rem;
}
.gig h2 {
    font-size: 3.0rem;
    line-height: 2.5rem;
    font-weight: 800;
    text-align: right;
    padding: 0 3rem 3rem 3rem;
}
.gig p {
    font-size: large;    
    padding: 0 3rem 3rem 3rem;
}
.gig p cite {
    font-size: medium;
    font-weight: 200;
}
#gigs h2:nth-child(1) {
    text-align: left;
}
#gigs h2:nth-child(2) {
    text-align: right;
}

@media (max-width: 900px) {
    #gigs {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 500px) {
    .gig {
        grid-template-columns: 1fr;
    }
}

#contact {
    background-color: #000;
    color: antiquewhite;

}
#contact .link a {
    text-decoration: none;
    color: inherit;

}
#contact .link a:hover {
    color: grey !important;
}
#contact a h2 {
    font-size: 3.0rem;
    line-height: 2.5rem;
    font-weight: 800;  
    text-align: center;
    padding: 5rem 3rem;

}

#socials {
    position: absolute;
    top: 3rem;
    right: 3rem;
    background-color: #000;
    color: antiquewhite;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    z-index: 1000; /* Add a high z-index to ensure it's on top */
}

#socials img {
    height: 3rem;
    width: 3rem;
    cursor: pointer;
}


/******************* GENERAL MEDIA *******************/

@media (max-width: 1200px) {
    html {
      font-size: 14px;
    }
}
@media (max-width: 900px) {
    html {
      font-size: 12px;
    }
}
@media (max-width: 500px) {
    html {    
      font-size: 10px;
    }
}
