/* ===== VARIABLES ===== */
/* ===================== */
:root {
    --bh-color-orange-light: #efeadf;
    --bh-color-grey-dark: #404040;
    --bh-color-grey-dark2: #808080;
    --bh-color-grey-light: #f3f3f3;
    --bh-color-white: #ffffff;
    --bh-color-black: #000000;

    /* Colors 2023 */
    --bh-color-2023-black: #040607;
    --bh-color-2023-grey-light: #aeaead;
    --bh-color-2023-grey-dark: #666666;
    --bh-color-2023-grey-dark2: #353534;
    --bh-color-2023-grey-dark3: #5D5D5D;
    --bh-color-2023-brown-dark: #6d563b;
    --bh-color-2023-brown-dark2: #8A7862;
}

/* ===== END OF VARIABLES ===== */
/* ===================== */


/* ===== BASE ===== */
/* ================ */
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

@font-face {
    font-family: 'Kalice-Regular' !important;
    src: url('/fonts/Kalice-Regular.woff'), url('/fonts/Kalice-Regular.woff2');
    src: url('https://rockrms-assets.s3.us-east-2.amazonaws.com/fonts/Kalice-Regular.woff'), url('https://rockrms-assets.s3.us-east-2.amazonaws.com/fonts/Kalice-Regular.woff2');
}    


*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    color: var(--bh-color-grey-dark);
    font-family: 'Open Sans',  sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: .7px;
}

body {
    box-sizing: border-box;
    background-color: var(--bh-color-white);
    
    overflow-x: hidden;
}



h1.bh-h1, h2.bh-h2, h3.bh-h3 {
    font-family: 'Kalice-Regular', serif !important;
}

a.bh-link {
    color: var(--bh-color-grey-dark2);
    text-decoration: none;
    font-weight: 600;
}

a.bh-link:hover,
a.bh-link:focus {
    color: var(--bh-color-2023-grey-dark);
}

ul > li {
    margin-left: 1rem !important;
}

.bh-fixed-top {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.buttonHidden {
    display: none;
}

.bh-section {
    padding: 6rem 0;
}

@media only screen and (max-width: 767px) {
    .bh-section {
        padding: 4rem 0;
    }
}

.bh-background--tan {
    background-color: var(--bh-color-orange-light);
}

.bh-background--lightgrey {
    background-color: var(--bh-color-grey-light);
}

.bh-background--white {
    background-color: #fff;
}

/* ===== END OF BASE ===== */
/* ================ */

/* ===== TYPOGRAPHY ===== */
/* ====================== */
.bh-section__title {
    color: var(--bh-color-2023-grey-dark2);
    font-size: 46px;
    font-weight: 900;
}

.bh-text-darkgrey {
    /* color: var(--bh-color-grey-dark2); */
    color: var(--bh-color-2023-grey-dark2);
}

.bh-text-blue {
    color: var(--bh-color-blue);
}

.bh-text-orange {
    color: var(--bh-color-orange-dark);
}

.bh-text-white {
    color: var(--bh-color-white) !important;
}

.bh-text-brown {
    color: var(--bh-color-2023-brown-dark);
}

/* ===== END OF TYPOGRAPHY ===== */
/* ====================== */


/* ===== Buttons ===== */
/* =================== */
.bh-btn {
    display: inline-block;
    font-weight: 600;
    line-height: 1.6;
    text-align: center !important;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;

    overflow: hidden;
    max-width: 100%;
    white-space: normal;
}

.bh-btn--darkgrey {
    border: 1px solid var(--bh-color-2023-grey-dark2);
    background-color: var(--bh-color-2023-grey-dark2);
    color: var(--bh-color-white);
}

.bh-btn--darkgrey:hover,
.bh-btn--darkgrey:focus {
    border: 1px solid var(--bh-color-2023-grey-dark3);
    background-color: var(--bh-color-2023-grey-dark3);
    color: var(--bh-color-white);
}

.bh-btn--brown {
    border: 1px solid var(--bh-color-2023-brown-dark);
    background-color: var(--bh-color-2023-brown-dark);
    color: var(--bh-color-white);
}

.bh-btn--brown:hover,
.bh-btn--brown:focus {
    border: 1px solid var(--bh-color-2023-brown-dark2);
    background-color: var(--bh-color-2023-brown-dark2);
    color: var(--bh-color-white);
}

.bh-btn--inactive {
    border: 1px solid #ddd;
    background-color: #ddd;
    color: var(--bh-color-black);
}

/* ===== End of Buttons ===== */
/* =================== */


/* ===== NAVIGATION ===== */
/* ====================== */
/* Transparent navbar */
.bh__nav {
    color: var(--color-white);
    z-index: 999; 
    
    background-color: transparent;
    padding: 20px 0;
    border-radius: 0;
    position: absolute;
    width: 100%;

    transition: all 0.4s ease-in-out;
}

.bh__nav-logo {
    height: 60px;
}

.bh__icon-bar {
    background-color: var(--bh-color-white);
}

.navbar-toggle.bh__hamburger {
    margin-right: 0;
}

.navbar-collapse.bh__nav-collapse {
    box-shadow: none;
    border-top: none;
    width: 100%;
}

.bh__navbar-right {
    margin-top: 10px;
}

.bh__nav-link {
    color: var(--bh-color-white);
    font-family: 'Kalice-Regular', serif !important;
    letter-spacing:1.5px;
    font-weight: 600;

    font-size: 1.2rem;
    
}

.nav > li > a {
    padding: 10px 5px;
}

.nav > li > a:hover,
.bh__nav-link:hover,
.nav > li > a:focus,
.bh__nav-link:focus {
    color: var(--bh-color-2023-grey-light);
    background-color: transparent;
    border-bottom: 2px solid var(--bh-color-2023-grey-light);
    margin-bottom: -2px;
    /* width: fit-content; */
}
#hamburger-icon,
#close-icon {
    color: var(--bh-color-white);
}

/* Custom X close button toggle using JS */
.navbar-toggle.close-icon.buttonHidden {
    display: none;
}

/* Toggle to hamburger icon on small device */
@media only screen and (max-width: 992px) {
    .navbar-header {
        float: none;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin: 7.5px -15px;
        text-align: center;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .navbar-text {
        float: none;
        margin: 15px 0;
    }
    /* since 3.1.0 */
    .navbar-collapse.collapse.in { 
        display: block!important;
    }
    .collapsing {
        overflow: hidden!important;
    }

    /* Dropdown */
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }

    /* BH Custom classes */
    /* Custom X close button toggle using JS */
    .navbar-toggle.buttonHidden {
        display: none;
    }

    .bh__nav-logo {
        margin-top: 8px;
    }

    .nav > li > a,
    .bh__nav-link {
        text-align: center;
        
    }

    .nav > li > a:hover,
    .bh__nav-link:hover,
    .nav > li > a:focus,
    .bh__nav-link:focus {
        width: fit-content;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        border-bottom: 2px solid transparent;
    }

    #bh-navbar-collapse {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 767px) {
    .container > .navbar-header.bh__navbar-header {
        margin-left: 0;
    }

    .navbar-toggle.bh__hamburger {
        margin-right: 15px;
    }

    .bh__nav-logo {
        margin-left: 15px;
        margin-top: 8.2px;
    }
}
/* ===== END OF NAVIGATION ===== */
/* ====================== */


/* ===== FOOTER ===== */
/* ================== */
.bh-footer {
    background-color: var(--bh-color-2023-black);
    color: var(--bh-color-white);
    padding: 1.7rem 0;
    text-align: center;
}

.bh-footer__text {
    font-weight: 600;
    letter-spacing: 2px;
}
/* ===== END OF FOOTER ===== */
/* ========================= */


/* ===== HERO ===== */
/* ================ */
.bh-hero-background--650h-leftalign {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-attachment: scroll;
    background-position: center top;
    height: 650px;

    color: var(--color-white);
    text-align: left;
}

@media only screen and (max-width: 575px) {
    .bh-hero-background--650h-leftalign {
        height: 450px;
    }
}

#bh-home__hero {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, .298)), url("https://rockrms-assets.s3.us-east-2.amazonaws.com/images/bristolhouse/bh-hero-no-text.jpeg");
    background-repeat: no-repeat;
    -webkit-background-size: auto, cover;
    -moz-background-size: auto, cover;
    background-size: auto, cover;
    background-attachment: scroll;
    background-position: center center;
    text-align: center;
    height: 80vh;
}

@media only screen and (max-width: 576px) {
    #bh-home__hero {
        height: 500px;
    }
}

.bh-hero__text {
    height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.bh-hero__text > h1 {
    font-family: 'Kalice-Regular', serif !important;
    font-size: 70px;
    line-height: 1;
}

.bh-hero__text > h3 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

@media only screen and (max-width: 768px) {
    .bh-hero__text > h1 {
        font-size: 60px;
    }

    .bh-hero__text > h3 {
        font-size: 18px;
        line-height: 1.4;
    }
}

@media only screen and (max-width: 576px) {
    #bh-home__hero {
        height: 450px;
    }

    .bh-hero__text {
        height: 450px;
    }

    .bh-hero__text > h1 {
        font-size: 45px;
    }

    .bh-hero__text > h3 {
        margin-top: 5px;
    }
}

@media only screen and (max-width: 400px) {
    .bh-hero__text > h1 {
        font-size: 35px;
    }

    .bh-hero__text > h3 {
        font-size: 14px;
    }
}

@media only screen and (max-width: 300px) {
    .bh-hero__text > h1 {
        font-size: 30px;
    }

    .bh-hero__text > h3 {
        font-size: 12px;
    }
}

/* ===== Carousel Hero ===== */
.carousel-inner.bh-carousel-inner,
.carousel-inner.bh-carousel-inner > .item,
.carousel-caption.bh-carousel-caption {
    height: 650px;
}

.carousel-inner > .item > img.bh-home--carousel-img {
    height: 650px;
    width: 100%;
    object-fit: cover;
    
}

@media only screen and (max-width: 576px) {
    .carousel-inner.bh-carousel-inner,
    .carousel-inner.bh-carousel-inner > .item,
    .carousel-caption.bh-carousel-caption,
    .carousel-inner > .item > img.bh-home--carousel-img {
        height: 450px;
    }
}

/* ===== END OF HERO ===== */
/* ================ */

/* ===== SINGLES ===== */
/* =================== */
.bh-section__2col-img {
    padding: 0 1rem;
}

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

    .bh-single__info {
        margin-top: 2rem;
    }
}

@media only screen and (max-width: 576px) {
    .bh-section__2col-img {
        padding: 0;
    }
}

.bh-icon {
    color: var(--bh-color-2023-brown-dark);
    margin-right: 7px;
}

.bh-icon-small {
    color: var(--bh-color-2023-brown-dark);
    margin-right: 7px;
    font-size: 24px;
}

a > i.bh-icon,
a > .bh-icon-small {
    transition: all .3s ease-in;
}

a > i.bh-icon:hover,
a > i.bh-icon-small:hover {
    transform: scale(1.04);
    color: var(--bh-color-2023-brown-dark2);
   
}
/* ===== END OF SINGLES ===== */
/* =================== */

/* ===== MERCHANDISE ===== */
/* ======================= */
.bh--flex-container__3col {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 3.5%;
}

.bh--flex-item__3col {
    flex-basis: 31%;
    margin-bottom: 1.5rem;
    overflow: visible;
}

@media only screen and (max-width: 991px) {
    .bh--flex-container__3col {
        flex-direction: row;
        gap: 4%;
    }

    .bh--flex-item__3col {
        flex-basis: 48%;
    }
}

@media only screen and (max-width: 576px) {
    .bh--flex-container__3col {
        flex-direction: row;
        gap: 0;
    }

    .bh--flex-item__3col {
        flex-basis: 100%;
    }
}

.bh-card__img {
    width: 100%;
    object-fit: cover;
    height: 300px;
}
/* ===== END OF MERCHANDISE ===== */
/* ======================= */

/* ===== THE TEAM ===== */
/* ==================== */
.bh-card {
    background-color: #fff;
    z-index: 10;
    position: relative;
    margin-bottom: 50px;
}

.bh-team__name {
    background-color: var(--bh-color-orange-dark);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    width: max-content;
    z-index: 11;
    position: absolute;
    top: -20px;
    left: -20px;
}

.bh-team__name > p {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

.bh-team__desc {
    padding: 20px 20px 10px;
}

.bh--flex-container__3col.bh-card-wrapper {
    justify-content: center;
    margin-top: 20px;
}

@media only screen and (max-width: 991px) {
    .bh--flex-container__3col.bh-card-wrapper {
        padding: 20px;
        margin-top: 0;
    }
}

.bh-team__grid-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.bh-team__grid-img2 {
    height: 450px;
    width: 100%;
    object-fit: cover;
}

.bh-team__grid {
    display: grid;
    gap: 1rem;
    grid-template-rows: repeat(4, max-content);
    grid-template-columns: repeat(6, 1fr);
}

.bh-team__grid-img1-1 {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
}

.bh-team__grid-img1-2 {
    grid-row: 1 / 2;
    grid-column: 3 / 5;
}

.bh-team__grid-img1-3 {
    grid-row: 1 / 2;
    grid-column: 5 / 7;
}

.bh-team__grid-img2-1 {
    grid-row: 2 / 3;
    grid-column: 1 / 5;
}

.bh-team__grid-img2-2 {
    grid-row: 2 / 3;
    grid-column: 5 / 7;
}

.bh-team__grid-img3-1 {
    grid-row: 3 / 4;
    grid-column: 1 / 4;
}

.bh-team__grid-img3-2 {
    grid-row: 3 / 4;
    grid-column: 4 / 7;
}

.bh-team__grid-img4-1 {
    grid-row: 4 / 5;
    grid-column: 1 / 3;
}

.bh-team__grid-img4-2 {
    grid-row: 4 / 5;
    grid-column: 3 / 5;
}

.bh-team__grid-img4-3 {
    grid-row: 4 / 5;
    grid-column: 5 / 7;
}

@media only screen and (max-width: 991px) {
    .bh-team__grid-img {
        height: 200px;
    }

    .bh-team__grid-img2 {
        height: 350px;
    }
}

@media only screen and (max-width: 768px) {
    .bh-team__grid-img {
        height: 180px;
    }

    .bh-team__grid-img2 {
        height: 300px;
    }
}

@media only screen and (max-width: 576px) {
    .bh-team__grid {
        grid-template-rows: repeat(10, max-content);
    }

    .bh-team__grid-img,
    .bh-team__grid-img2 {
        height: 280px;
    }

    .bh-team__grid-img1-1 {
        grid-row: 1 / 2;
        grid-column: 1 / -1;
    }

    .bh-team__grid-img1-2 {
        grid-row: 2 / 3;
        grid-column: 1 / -1;
    }

    .bh-team__grid-img1-3 {
        grid-row: 3 / 4;
        grid-column: 1 / -1;
    }

    .bh-team__grid-img2-1 {
        grid-row: 4 / 5;
        grid-column: 1 / -1;
    }

    .bh-team__grid-img2-2 {
        grid-row: 5 / 6;
        grid-column: 1 / -1;
    }

    .bh-team__grid-img3-1 {
        grid-row: 6 / 7;
        grid-column: 1 / -1;
    }

    .bh-team__grid-img3-2 {
        grid-row: 7 / 8;
        grid-column: 1 / -1;
    }

    .bh-team__grid-img4-1 {
        grid-row: 8 / 9;
        grid-column: 1 / -1;
    }

    .bh-team__grid-img4-2 {
        grid-row: 9 / 10;
        grid-column: 1 / -1;
    }

    .bh-team__grid-img4-3 {
        grid-row: 10 / 11;
        grid-column: 1 / -1;
    }
}

/* ===== END OF THE TEAM ===== */
/* ==================== */




/* ===== MUSIC ===== */
/* ===================== */
.top-stripe {
    height: 102px;
    background-color: var(--bh-color-2023-black);
}

/* ===== Back to Resources ===== */
.bh-backtoresources {
    background-color: var(--bh-color-2023-brown-dark);
    color: #fff;
    padding: 1rem 0 .9rem;
}

a.bh-backtoresources--link {
    color: #fff;
    transition: all 0.4s ease-in-out;
}

a.bh-backtoresources--link:hover,
a.bh-backtoresources--link:focus {
    opacity: .7;
    color: #fff;
    text-decoration: none;
}

/* ==== Music hero video ===== */
#bh-resources__hero {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, .298)), url("https://rockrms-assets.s3.us-east-2.amazonaws.com/images/bristolhouse/bh-hero-no-text.jpeg");
}

.bh-music-hero-video {
    padding-top: 30px;
    color: #fff;
}

.bh-vid__title,
.bh-intro__title {
    margin-top: 0;
    text-transform: uppercase;
}

@media only screen and (min-width: 1200px) {
    .bh-music-hero-video {
        height: max-content;
    }
}

@media only screen and (max-width: 992px) {
    .bh-vid__title {
        margin-top: 2rem;
    }

}

@media only screen and (max-width: 768px) {
    .bh-intro__title {
        margin-top: 2rem;
    }
}

@media only screen and (max-width: 576px) {
    .bh-music-hero-video {
        padding-top: 50px;
    } 
}

/* Hero - flex */
.bh-hero-video {
    background-color: #000000;
    padding: 6.5rem 0 7rem;
    background-repeat: no-repeat;
    -webkit-background-size: auto, cover;
    -moz-background-size: auto, cover;
    background-size: auto, cover;
    background-attachment: scroll;
    background-position: center center;
    text-align: center;
    height: auto;
}

@media only screen and (max-width: 575px) {
    .bh-hero-video{
        padding: 4.2rem 0 4.5rem;
    }
}

.bh-hero-video__description {
    text-align: left;
}

.twmc-flex-container--2-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4%;
}

.twmc-flex-item--2-col {
    flex-basis: 47%;
    overflow: visible;
}

.twmc-intro__2col {
    gap: 1rem;
}

@media only screen and (max-width: 991px) {
    .twmc-flex-item--2-col {
        flex-basis: 100%;
    }
}



/* ===== Music page Info ====== */
.bh-img-square {
    width: 100%;
}    

a.bh-resources--singles > img.bh-img-square {
    transition: all .3s ease-in-out;
}

a.bh-resources--singles > img.bh-img-square:hover,
a.bh-resources--singles > img.bh-img-square:focus {
    transform: scale(1.01);
    opacity: .8;
}

.height-90vh {
    min-height: 90vh;
}

.music-card {
    background-color: #fff;
    padding: 1rem;
}

.music-btn {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media only screen and (max-width: 1165px) {
    .music-btn {
        margin-top: .5rem;
        margin-bottom: 0;
    }

    .music-card {
        padding-bottom: 2rem;
    }
}

/* ===== Resources single/album  ===== */
.bh-single--flex-container {
    display: flex;
    flex-direction: row;
    /* gap: 2%; */
    margin: 3.5rem 0;
}

.bh-single--flex-item-left {
    flex-basis: 35%;
    background-color: var(--bh-color-orange-light);
}

.bh-single--flex-item-right {
    flex-basis: 65%;
}

.bh-single--img {
    width: 100%;
}

.bh-single--left-content {
    padding: 1.5rem 1.5rem 2.5rem;
}

.bh-single--right-content {
    padding: 2.5rem;
}

.bh-single--left-content > h3,
.bh-single--right-content > h2 {
    font-family: 'Kalice-Regular', serif !important;
}

@media only screen and (max-width: 992px) {
    .bh-single--flex-container {
        flex-direction: column;
        gap: 0;
    }

    .bh-single--flex-item-left,
    .bh-single--flex-item-right {
        padding: 2.5rem 2rem;
    }


    .bh-single--flex-item-left {
        flex-basis: 100%;
        /* order: 2; */
    }
    
    .bh-single--flex-item-right {
        flex-basis: 100%;
        /* order: 1; */
    }

   .bh-single--img {
        margin: 1rem 1.5rem;
        width: 300px;
    }

    .bh-single--left-content,
    .bh-single--right-content {
        padding: 0 1rem 1rem;
    }
    
}

@media only screen and (max-width: 768px) {
    .bh-single--flex-item-left,
    .bh-single--flex-item-right {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .bh-single--left-content,
    .bh-single--right-content {
        padding: 1rem 0;
    }

    .bh-single--img {
        margin: 2rem 0 1rem;
        max-width: 100%;
    }
}

@media only screen and (max-width: 576px) {
    .bh-single--img {
        max-width: 100%;
    }
}

@media only screen and (max-width: 450px) {
    .bh-single--flex-item-left,
    .bh-single--flex-item-right {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .bh-single--img {
        width: 100%;
    }
}

/* ===== Tab pills ===== */
ul.nav.nav-pills > li {
    margin-left: 0 !important;
}

.nav-pills > li.active > a {
    background-color: var(--bh-color-2023-brown-dark);
    color: #fff;
    padding: 10px 15px;
}

.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
    background-color: var(--bh-color-2023-brown-dark2);
    padding: 10px 15px;
    border-bottom: none;
}

.nav-pills > li > a {
    color: var(--bh-color-2023-brown-dark);
    padding: 10px 15px;

    transition: all ease-in-out .4s;
}

.nav-pills > li > a:hover {
    color: var(--bh-color-2023-brown-dark2);
    padding: 10px 15px;
    background-color: var(--bh-color-grey-light);
    border-bottom: none;
}

/* ===== Single - Chord ===== */
.bh-single--chord > img {
    max-width: 100%;
}



/* ===== END OF MUSIC ===== */
/* ======================== */