* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
} 

body {
    background: linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)), url(background.jpg);
    background-size: cover;
    color: #b0b0b0;
    font-family: 'Manrope', sans-serif;
    font-size: 5.5vw;
    cursor: auto;
    position: relative;
    overscroll-behavior-y: none;
    overscroll-behavior-x: none;
    overscroll-behavior-block: none;
    overflow-y: scroll;
    overflow-x: hidden;
    display: block;
}

::selection {
    background: linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)), url(background.jpg);
}


/***navbar styling***/
.navbar {
display: inline-block;
width: 100%;
height: 0px;
margin: 0px;
}

@media (max-width: 600px) {
    .navbar {
        width: 100%;
        height: 50px;
    }
    .logo img {
        width: 85px;
        margin: 0px;
    }
}

nav {
    display: flex;
    padding: 0% 1%;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: auto;
}

.logo {
    display:inline-block;
    position: relative;
    top: 33px;
    margin: 10px;
    padding: 0;
}

.nav-links ul li {
    list-style-type: none;
    display: inline-block;
    padding: 2px 16px;
    position: relative;  
    margin: 0px;
    line-height: 0px;
    top: 0;
}

.nav-links ul li::after {
    content: ' '; /*content is blank space*/
    width: 0%;
    height: 2.5px;
    background-color:rgb(114, 189, 144);
    margin: auto;
    margin-top: 2vh;
    display: block; 
    transition: 0.5s;
}
    
.nav-links ul li:hover::after {
    width: 100%;
}

nav .nav-links ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    list-style-type: none;
}

.nav-links .fa-solid, #menuicon {
    display: none;
}

@media (max-width: 1100px) {
        .nav-links ul li {
            display: block;
        }
        .nav-links {
            position: absolute;
            background: #cc00cc;
            height: 100vh;
            width: 200px;
            top: 0;
            right: -230px;
            text-align: left;
            z-index: 2;
            margin: 0;
            transition: 1s;
            padding: 15px;
        }
        nav .nav-links ul li a {
            color: #1f1f2d;
            text-decoration: none;
            font-size: 16px;
            font-family: 'Manrope', sans-serif;
            font-weight: 500;
            list-style-type: none;
            line-height: 20px;
    }
        .nav-links .fa-solid {
            display: block;
            color: #1f1f2d;
            margin: 10px;
            font-size: 22px;
            cursor: pointer;
        }

        #menuicon {
            display: block;
            color: white;
            margin: 10px;
            font-size: 22px;
            cursor: pointer;
        }

}

/***banner styling***/
.main__content {
    width: 100%;
    padding-top: 7vh;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
    margin-bottom: 20vh;
}

@media (max-width: 1100px) {
    .main__content {
        height: 77vh;
    }

    .main__content {
        width: 100%;
    }
}

.colmc {
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
    box-sizing: border-box;
    justify-content: space-between;
    width: 50%;
}

.header-home__heading1 .header-home__row {
    line-height: 1.10;
}

.header-home__row {
    display: block;
    line-height: 1.10;
}

.header-home__row .align-left {
    text-align: left;
}

.header-home__row--1_2 {
    padding-left: 55%;
}

.header-home__row--1_3 {
    padding-left: 35%;
}

.header-home__row--2_1 {
    padding-left: 33%;
}

.header-home__row--2_2 {
    padding-left: 42%;
}

/*** About page banner (no slide animation) ***/
.main__content--about .heading span {
    display: inline-block;
    animation: none;
}

.main__content--about .header-home__row {
    overflow: initial;
}

.about-prose {
    width: 87%;
    margin: 5vh auto 0;
    margin-bottom: 15vh;
}

.about-prose p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 1.5em;
}

.about-prose p:last-child {
    margin-bottom: 0;
}

.about-prose + .container .bcontent_row_footer {
    margin-top: 5vh;
}

@media (max-width: 1100px) {
    .main__content--about .heading {
        display: block;
    }

    .main__content--about #secMainText {
        display: none;
    }
}

/*** UOA page banner ***/
.main__content--uoa {
    flex-direction: column;
    padding-top: 7vh;
    margin-bottom: 20vh;
}

.main__content--about {
    margin-bottom: 10vh;
}

.main__content--blank {
    margin-bottom: 0;
    padding-top: 7vh;
}

.banner-uoa--blank {
    min-height: 0;
}

.recommendation-box {
    justify-content: center;
}

.recommendation-box .artist-text {
    flex: 1 1 100%;
    max-width: 1000px;
}

.recommendation-images {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 24px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.recommendation-box .recommendation-image {
    display: block;
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: 320px;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.banner-uoa {
    width: 100%;
}

.banner-uoa__heading {
    width: 100%;
}

.banner-uoa__heading .header-home__row {
    display: block;
    line-height: 1.10;
    overflow: initial;
}

.banner-uoa__heading .header-uoa__row--0 { padding-left: 0; }
.banner-uoa__heading .header-uoa__row--1 { padding-left: 20%; }
.banner-uoa__heading .header-uoa__row--2 { padding-left: 26%; }
.banner-uoa__heading .header-uoa__row--3 { padding-left: 50%; }
.banner-uoa__heading .header-uoa__row--4 { padding-left: 62%; }
.banner-uoa__heading .header-uoa__row--5 { padding-left: 69%; }

.animated-line1, .animated-line2, .animated-line3, .animated-line4, 
.animated-line5, .animated-line6, .animated-line7 {
    display: inline-block;
    animation-name: main-text-load-left;
    animation-duration: 1050ms;
    animation-timing-function: ease-out;
}
@keyframes main-text-load-left {
    0%{
        transform: translateX(-100%);
    }

    100%{
        transform: translateX(0%);
    }
}

#secMainText{
    display: none;
}

@media (max-width: 1100px) {
    .heading {
        display: none;
    }
    #secMainText {
        margin-top: 10%;
        width: 100%;
        display: inline;
        font-size: 50px;
        height: 300px;
       }
       .colmc {
        display: none;
       }

       .banner-uoa {
        display: none;
       }
}

.container {
    position: relative;
    width: 87%;
    margin: auto;
    box-sizing: border-box;
    
}

/***horizontal rule***/
.horizontal-rule {
    width: 100%;
    border-bottom: 1px solid #b0b0b0;
    margin: auto;
}

.bcontent_row,
.bcontent_row_footer {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 7%;
}

.bcontent_row_footer {
    margin-top: 15vh;
    margin-bottom: 5%;
}

.horizontal-rule {
    grid-column: 1 / -1;
}

.bcrf {
    margin-top: 1.3%;
    display: block;
    animation-name: bottom-text-load;
    animation-duration: 1050ms;
    animation-timing-function: ease-out;
}

@keyframes bottom-text-load {
    0%{
        transform: translateY(400%);
    }

    100%{
        transform: translateY(0%);
    }
}

.bcrf p {
    font-size: 0.9vw;
    color: #b0b0b0;
    text-align: left;
}

.marLeft {
    padding-left: 40%;
}

/*** flex two-column section ***/
.artist-section {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background-color: #111116;
    box-sizing: border-box;
}

.artist-section.recommendation-box {
    margin-top: 3vh;
    margin-bottom: 80px;
}

.artist-image {
    flex: 1 1 50%;
    min-width: 0;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.artist-text {
    flex: 1 1 50%;
    min-width: 0;
    padding: 60px;
    color: #c9c9c9;
    background-color: #111116;
    box-sizing: border-box;
}

.artist-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.artist-text p {
    font-size: 18px;
    line-height: 1.8;
}

@media (max-width: 1100px) {
    .horizontal-rule {
        margin-bottom: 6vh;
    }
    .bcontent_row .bcrf {
        display: none;
    }

    .bcontent_row_footer {
        grid-template-columns: 1fr;
    }

    .bcontent_row_footer .bcrf {
        margin: 7px 0;
    }
}

@media (max-width: 900px) {
    .artist-section {
        flex-direction: column;
    }

    .artist-image,
    .artist-text {
        flex: 1 1 100%;
    }

    .artist-text {
        padding: 35px;
    }
}

/*** genres accordion ***/
.genresf {
    display: flex;
    flex-direction: column;
    width: 80%;
    float: right;
    margin-bottom: 5vh;
    clear: both;
}

.genre-item {
    width: 100%;
    border-top: 1px solid #b0b0b0;
}

.genre-item:last-child {
    border-bottom: 1px solid #b0b0b0;
}

.genresf .genresName {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-height: 15vh;
    height: auto;
}

.genresNameCol1 {
    width: 50%;
    display: flex;
    align-items: center;
    font-size: 5vw;
}

.genresNameCol1 p {
    font-size: 2.4rem;
}

.genresNameCol2 {
    width: 40%;
    text-align: center;
}

.genresNameCol2 p {
    padding-top: 0;
    font-size: 1.1vw;
}

.genresNameCol3 {
    width: 10%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.genre-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    margin-right: 3%;
    color: #b0b0b0;
    line-height: 1;
}

.arrD {
    font-size: 0.8rem;
    transform: rotate(315deg);
    transition: transform 0.35s ease;
    pointer-events: none;
}

.genre-item.is-open .arrD {
    transform: rotate(135deg);
}

.genre-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.genre-item.is-open .genre-panel {
    max-height: 1200px;
    overflow: visible;
}

.genre-panel__inner {
    padding: 0 0 2rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
}

.genre-panel__inner img {
    display: block;
    width: 300px;
    height: auto;
    max-width: 100%;
    flex-shrink: 0;
    border-radius: 2px;
}

#panel-pop img {
    width: 450px;
}

.spot-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.spot-map iframe {
    width: 500px;
    height: 350px;
    max-width: 100%;
    border: 0;
    border-radius: 2px;
}

.spot-map__link {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #1f1f2d;
    background-color: rgb(114, 189, 144);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.spot-map__link:hover {
    background-color: #fff;
}

@media (max-width: 950px) {
    .genre-panel__inner {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 850px) {
    .genresNameCol1 p {
        font-size: 1.25rem;
    }

    .genresf .genresName {
        min-height: 10vh;
    }
}
