body {
    background-color: #C6BEAC;
}

.logo {
    height: auto;
    width: 150px;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

.b-example-divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
}

.bi {
    vertical-align: -.125em;
    fill: currentColor;
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.btn-bd-primary {
    --bd-violet-bg: #712cf9;
    --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-violet-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: #6528e0;
    --bs-btn-hover-border-color: #6528e0;
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #5a23c8;
    --bs-btn-active-border-color: #5a23c8;
}

.bd-mode-toggle {
    z-index: 1500;
}

.bd-mode-toggle .dropdown-menu .active .bi {
    display: block !important;
}

/* NAVBAR */
#nav {
    background-color: #2a1914;
    font-size: 14px;
}

#member-btn {
    /* padding: 1rem 2rem; */
    border-radius: 100px;
    background-color: #a69d87;
    border: 2px solid black;
    color: black;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

#member-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #AFA58F;
    color: black;
    border-radius: 50px;
    z-index: -2;
}

#member-btn:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #d0c9b8;
    color: black;
    text-decoration: underline;
    transition: all .5s;
    border-radius: 0px;
    z-index: -1;
}

#member-btn:hover:before {
    width: 100%;
}

#btn-arrow {
    margin-left: 3px;
}

/* HOME PAGE */
h1 {
    font-size: 64px;
}

#haven-description {
    font-size: 24px;
    /* font-size: 18px; */
}

#subheadings {
    margin-top: 20px;
}

#music h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 48px;
}
#card {
    padding: 20px;
    background-color: #e2e2e2;
}

.home-img {
    border: 3px solid #2a1914;
    border-radius: 15px;
}

#img-shadow {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.playlist {
    width: 30%;
}

.playlist-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

#hero-img {
    filter: sepia(50%) saturate(175%) brightness(70%) hue-rotate(340deg);
}

#btn {
    background-color: #37241E;
    color: white;
    border: none;
}

#btn:hover {
    opacity: 0.8;
}

#btn-hero {
    background-color: #3D8DBB;
    transition: width 2s linear 1s;
    border: none;
}

#btn-hero:hover {
    background-image: linear-gradient(rgb(0 0 0/30%) 0 0);
}

.lead {
    margin-top: 20px;
}

#schedule {
    margin-top: 30px;
}

/* FOOTER */
#footer-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

#footer-icon a {
    color: #37241E;
    text-decoration: none;
}

#back-to-top {
    height: 50px;
    margin-bottom: 20px;
}

#footer-text a {
    color: #2a1914;
}

/* APPOINTMENTS PAGE */
#appointments {
    margin-top: 50px;
}



/* PHONE */
@media only screen and (max-width: 576px) {
    #hero-img {
        height: 500px;
        width: auto;
        object-fit: cover;
    }

    h1 {
        font-size: 36px;
    }

    #haven-description {
        font-size: 18px;
    }

    .section-img {
        width: 360px;
        height: 360px;

    } 

    .playlist-container {
        flex-wrap: wrap;
    }

    .playlist {
        width: 325px;
    }

    footer {
        font-size: 12px;
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
}

/* TABLET */
@media only screen and (min-width: 576px) and (max-width: 769px) {
    #hero-img {
        height: 600px;
        width: auto;
        object-fit: cover;
    }

    #classes {
        margin: 45px 10px 0px 10px;
    }

    .classes-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #classes-content {
        width: 90%;
    }

    #classes {
        width: 90%;
    }
}

/* LAPTOP */
@media only screen and (min-width: 769px) and (max-width: 1025px) {
    #hero-img {
        height: 700px;
        width: auto;
        object-fit: cover;
    }
}