@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* General Scrollbar Styles */
::-webkit-scrollbar {
    width: 5px;
    /* width of the scrollbar */
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
    background: rgb(0, 0, 0);
    ;
    /* color of the scrollbar track */
}

/* Scrollbar Thumb */
::-webkit-scrollbar-thumb {
    background: #888;
    /* color of the scrollbar thumb */
    border-radius: 10px;
    /* roundness of the scrollbar thumb */
}

/* Scrollbar Handle */
::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* color on hover */
}


:root {
    --border-radius: 10px;
    --large-border-radius: 20px;
    --dark-color: rgb(55, 57, 62);
    --slightly-less-dark-color: rgb(67, 69, 75);
    --medium-color: #b6bfd4;
    --light-color: #dbe6fb;
}

/* 2. Remove default margin */
* {
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    /* 4. Add accessible line-height */
    line-height: 1.5;
    /* 5. Improve text rendering */
    -webkit-font-smoothing: antialiased;
    background-color: var(--light-color);
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
    font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

/*
    10. Create a root stacking context
  */
#root,
#__next {
    isolation: isolate;
}

a {
    color: unset;
    text-decoration: unset;
}

#silly {
    line-height: 0px;
    position: absolute;
    top: 150px
}

#below-silly {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 95%;
    align-items: center;
    margin-top: 15px;
}

.footer a {
    padding-inline: 10px;
    padding-block: 5px;
}

.flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.tiny-header-image {
    height: 50px;
    margin-right: 10px;
    transition: transform 1s ease-in-out;
    margin-inline: 16px;
}

.tiny-header-image:hover {
    animation: dance 2s infinite ease-in-out;
}

@keyframes dance {
    0% {
        transform: rotate(0deg);

    }

    25% {
        transform: rotate(15deg) scale(1.5);
    }

    50% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(15deg) scale(1.5);
    }
}


.button-container {
    display: flex;
    width: 90%;
    justify-content: space-evenly;
    margin-block: 15px;
}

.button-container button {
    background-color: unset;
}

.show-container {
    width: 100%;

}

/* MENU CSS BEGINS */
/* MENU CSS BEGINS */

.nav-bar {
    background-color: var(--dark-color);
    color: var(--light-color);
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 21;
    box-shadow: 0px 1px 20px #000000ba;
    align-items: center;
    font-size: 1.2em;
    height: 65px
}

.nav-bar-left-group {
    display: flex;
    align-items: center;
}

.menu-unrolled {
    height: 300px !important;
    padding-block: 10px
}

.menu-parent {
    position: absolute;
    top: 65px;
    width: 100%;
}

#menu-holder {
    height: 0px;
    overflow-y: auto;
    transition: height 0.5s ease-in-out, padding 0.3s ease-in-out;
    background-color: var(--slightly-less-dark-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 100;
    position: sticky;
    width: 100%;
    box-shadow: 8px 4px 6px #0000004a;
}



.nav-bar a {
    padding-inline: 4px;
}

.menu-button {
    background-color: rgba(0, 0, 0, 0);
    border: unset;
    display: flex;
    color: var(--pale-yelow);
    align-items: center;
    justify-content: flex-start;
    margin-inline: 10px;
}

.menu-item {
    width: 100%;
}

.menu-link {
    width: 85%;
    padding-block: 10px;
    margin-inline: 20px;
    display: flex;
    justify-content: space-between;
}

.menu-item:hover {
    color: white;
    font-weight: 700;
    background-color: var(--dark-color);
}

.menu-item-icon {
    margin-left: 10px;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
}

.menu-icon {
    padding-inline: 10px;
}

.icon-small {
    font-size: 2rem;
}

@media screen and (min-width: 800px) {
    .menu-parent {
        width: 30%;
        scrollbar-width: none;
        top: 55px
    }

    .menu-parent::-webkit-scrollbar {
        display: none;
    }

    .menu-link {
        width: 92%;
    }

    .nav-bar {
        height: 55px;
    }
}

/* MENU CSS ENDS */
/* MENU CSS ENDS */

.show {
    background: var(--medium-color);
    padding-block: 20px;
    margin-top: 5px;
    border-radius: var(--large-border-radius);
    /* box-shadow: inset 0 0 9px 3px #dcffc2; */
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-around;
    padding-inline: 13px;

}

.card {
    background: var(--medium-color);
    padding-block: 13px;
    margin-top: 5px;
    border-radius: var(--border-radius);
    /* box-shadow: inset 0 0 9px 3px #dcffc2; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding-inline: 13px;
}


.card-heading {
    font-weight: 500;
    font-size: 1.2rem;
}

#header-show {
    width: 100%;
    text-align: center;
}

.show-venue {
    font-weight: 500;
    font-size: 1.1rem;
    font-style: italic;

    width: 100%;

}

.show-band {
    font-weight: 700;
    font-size: 1.7rem;

    width: 100%;
}

.show-links a {
    text-decoration: underline;
    padding-inline: 5px;
}

.show-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.show-info p {
    text-align: right;
}

.show-info-parent {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between
}

.show-info-left {
    align-items: flex-start;
    margin-left: 10px;
    flex-basis: 70%;
}

.show-info-right {
    align-items: flex-end;
}

.show-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.small-top-margin {
    margin-top: 15px;
}

.shows-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 5px;
}

.bandcamp-embeds {
    border-radius: var(--border-radius);
    width: 85% !important;
}

#header-show-title {
    font-weight: 300;
    position: relative;
    top: 9px;
    color: #2d2d2d;
    font-style: italic;
    text-align: left;
    font-size: 1.3rem;
    margin-left: 10px;
}

.inset-background {
    background: var(--medium-color);
    /* box-shadow: inset 0 0 9px 3px #dcffc2; */
}

.heading {
    padding-inline: 15%;
    padding-block: 10px;
    font-weight: 600;
    font-size: 1.5rem;
    border-radius: var(--border-radius);
    border-top-left-radius: var(--large-border-radius);
    border-top-right-radius: var(--large-border-radius);
    background-color: var(--dark-color);
    color: var(--light-color);
}

.heading-parent {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-top: 40px;
}

.justify-content-flex-start {
    justify-content: flex-start;
}

#main-img {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    width: 98%;
    border-radius: var(--border-radius);
}

.front-page-main-img {
    /* margin-top: 50px; */
}

.trippy {
    position: absolute;
    top: 123px;
}

#itsame {
    font-variant-caps: small-caps;
    font-size: 4rem;
    transition: transform 5s ease-in-out;
    text-align: center;
    line-height: 75px;
}

.caret-down-group {
    display: flex;
    font-size: 2rem;
    padding-top: 10px;
    justify-content: center;
    width: 100%;
}

.caret-down-group i {
    padding-inline: 10%
}

#booking-header {
    font-variant-caps: small-caps;
    font-weight: 600;
    text-decoration: underline;
}

#more-shows-link,
.more-shows-link-holder a {
    font-weight: 500;
    text-decoration: underline;
    font-variant-caps: small-caps;
    margin-right: 14px;
    text-align: right;
    width: 100%;
    display: block;
    font-size: 1.4rem;
}

.more-shows-link-holder {
    display: flex;
    justify-self: flex-end;
    width: 100%;
}

.smohs {
    transform: rotate(180deg);
}

li {
    list-style: none;
}

.intro-text a {
    text-decoration: underline;
    font-weight: 500;
}

.intro-text span {
    width: 100%;
}

#future-shows-container {
    margin-bottom: 20px;
}

.header-title-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
}

#listen-page {
    background-color: #212121;
    color: rgb(235, 235, 235);
}

.listen-page-artist-heading {
    scroll-margin-top: 80px;
}

.music-groups {
    margin-block: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.music-groups a {
    text-decoration: underline;
}

.more-info-link {
    font-variant-caps: small-caps;
    width: 100%;
    text-align: center;
}

.youtube-embeds {
    max-width: 85% !important;
    border-radius: var(--border-radius);
}

#envelope-holder {
    display: flex;
    align-items: center;

}

.envelopes {
    font-size: 2em;
}

#contact-form {
    display: flex;
    flex-direction: column;
    width: 95%;
    padding-block: 5px;
}

input,
textarea {
    border-radius: 5px;
    border-style: inset;
    border: 2px solid black;
}

#contact-form-button {
    margin-top: 10px;
    border-radius: 5px;
}

.form-helper-text {
    font-size: 0.85rem;
}

.lessons-img {
    border-radius: var(--large-border-radius);
    margin-top: 20px;
}

#performer-heading,
#community-organizer-heading,
#music-educator-heading {
    scroll-margin-top: 80px;
}

.contact-form-heading {
    text-align: center;
}

.lesson-contact-form-intro-text {
    margin-block: 5px;
}

.envelope-arrow {
    font-size: 1.3em;
    padding-inline: 10px;
}

.music-coaching-holder {
    width: 75%;
    justify-content: space-evenly;
}

.content-container {
    display: flex;
    flex-direction: column;
    width: 97%;
}

.sub-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.font-page-main-img-holder {
    display: flex;
    justify-content: center;
}

.name-silly-holder {
    display: flex;
    flex-direction: column;
    align-items: center;

}


.show-sub-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.intro-group {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* position: sticky; */
    top: 73px;
    z-index: 20;
    flex-direction: column;
    margin-block: 10px;
}

.album-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.listen-page-artist-heading {
    text-align: center;
    width: 100%;
    margin-block: 10px;
}

.front-page-youtube {
    width: 100%;
    border-radius: 15px;
}

.learn-page-sub-main-container {
    width: 98%;
}

.loading {
    position: sticky;
    top: 0;
    z-index: 40;
    max-height: 140vh;
    height: 100vh;
    background-color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 3s ease-in-out;
    animation-fill-mode: forwards;

}

@keyframes scaleUp {
    0% {
      transform: scale(0.5);

    }
    100% {
      transform: scale(1);

    }
  }

  @keyframes fadeOut {
    0%{
        opacity: 1;
    }
    50%{
        opacity: 1;
    }
    99%{
        opacity: 0;
    }
    100% {
        display: none;
        opacity: 0;

    }
  }

#loading-image {
    width: 40%;
    animation: scaleUp 3s ease-in-out;
}

.hide {
    display: none;
}

@media screen and (min-width: 800px) {
    .content-container {
        margin-right: 5px;
        max-width: 700px;
    }

    .content-group {
        flex-basis: 100%;
    }

    .front-page-main-img {
        /* max-width: 50%; */
        position: sticky;
        top: 0px;
    }

    .sub-main-container {
        flex-direction: column;
        align-items: flex-start;
        width: 70%;
    }

    .name-silly-holder {
        width: 100%;
        position: sticky;
        top: 70px;
    }

    #itsame {
        line-height: 53px;
        ;
    }

    #below-silly {}

    #silly {
        top: 54px;
        width: 100%;
        text-align: center;
        /* position: unset; */
    }

    #main-img {
        object-fit: cover;
        height: 380px;
        width: 95%;
        border-radius: var(--large-border-radius);
        width: 99%;
    }

    .font-page-main-img-holder {
        flex-basis: 100%;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
    }

    .main-container {
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
    }

    .front-page-main-img {
        /* margin-top: 52px; */
    }

    .show-band {
        font-size: 2.5rem;
    }

    #header-show {}

    .show-info {
        flex-direction: row;
        height: 100%;
        align-items: center;
        width: 100%;
        justify-content: space-around;
    }

    .show-sub-info {
        /* font-size: 1.2em; */
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        height: 100%;
    }

    .card {
        padding-block: 25px;
        padding-inline: 30px;
        margin-top: 13px;
        width: 99%;
        border-radius: var(--large-border-radius);
        font-size: 1.1rem;
    }

    #booking-header {
        font-size: 1.5em;
        letter-spacing: 1.1px;
        margin-right: 40px;
    }

    .caret-down-group {
        display: none;
    }

    #welcome-heading {
        margin-top: 0px;
    }

    .show-sub-info-left {
        align-items: flex-start;
    }

    .intro-group-links {
        display: flex;
        width: 38%;
        justify-content: space-evenly;
        font-size: 1.2rem;
        line-height: 25px;
    }

    .show-page-sub-main-container {
        width: 80%;
    }

    .listen-page-sub-main-container {
        width: 100%;
    }

    .contact-main-container {
        height: 84vh
    }

    .contact-name-silly-holder {
        justify-content: space-around;
        height: 100%
    }

    .show {
        margin-block: 15px;
        padding-block: 10px;
    }

    .show-info-right {
        /* font-size: 1.3rem; */
    }

    .listen-page-silly-holder {
        width: 25%;
    }

    .album-group {
        display: flex;
        justify-content: space-around;
        width: 100%;
        flex-direction: row;
    }

    .bandcamp-embeds {
        margin-inline: 15px;
        width: 33% !important;
    }

    .listen-page-artist-heading {
        margin-block: 20px;
    }

    .learn-page-main-container {
        /* flex-direction: column !important;
        align-items: center !important; */
    }

    .learn-page-name-silly-holder {
        /* position: unset;
        margin-top: 25px; */
    }

    .lessons-img {
        max-width: 75%;
    }

    .learn-page-sub-main-container {
        max-width: 800px;
    }

    .music-coaching-holder {
        margin-top: 15px;
    }

    .margin-top-40 {
        margin-top: 40px;
    }

}