:root{
    --deep-blue:#ac5433;
    --light-blue: #572b2f;
    --beige-bg: #f5eedb;
    --golden-yellow: #FFBB39;
    --font-color: #3a1a0f;
    --main-font: "Inter", sans-serif;
    --heading-font: "Oswald", serif;
    --spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
}

*, a{
  font-family: var(--main-font);
  color: var(--font-color);
  margin: 0;
  padding: 0;
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--heading-font);
    margin: 0;
}
body{
    background-color: var(--beige-bg);
}

video.video-background {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -9;
    filter: brightness(0.52);
}

section, .boxed{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}
.wide{
    max-width: unset;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gradient-text {
  background: linear-gradient(145deg, var(--deep-blue), var(--light-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
header {
    padding: 10px 30px;
}

.brand h1 {
    font-family: 'Oswald';
    font-size: 30px;
    color: #6b502f;
    font-weight: bold;
}
.homepage .brand h1 {
    color: #f5eedb!important;
}

.brand h4 {
    font-size: 15px;
    font-style: italic;
    color: #d2d2d2;
}

.navbar-nav {
    align-items: center;
}

a.nav-link {
    color: #3a1a0f !important;
    font-size: 15px;
    font-weight: bold;
    font-family: var(--main-font);
}
.homepage a.nav-link {
    color: #fff !important;
}
.homepage a.nav-link:hover {
    color: var(--golden-yellow)!important;
}

.banner {
    text-align: center;
    padding: 30px;
    height: 45vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.banner h2 {
    font-size: 4em;
    margin: 0 0 30px 0;
    font-weight: bold;
    color: #d7cb9b;
}
section.intro {
    margin: 8% auto;
}
.intro h4, .intro p {
    color: #5f0b09;
}
.intro>p, .Biography>p {
    font-size: 0.983rem;
}
.intro>.flex {
    justify-content: center;
}

//
.banner h4, .banner p {
    color: #F2E598;
}

section>p {
    width: 50%;
    margin: 0 auto;
    font-size: 14px;
    color: #3a1a0f;
}

.blue-button, .transparent-button {
    padding: 10px 15px;
    width: max-content;
    margin: 20px 5px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
}

.blue-button i, .transparent-button i {
    color: #fff;
}
.blue-button {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--light-blue) 100%);
}
.transparent-button {
    background-color: #dacfa4;
    color: var(--light-blue);
}
.blue-button:hover {
    background: linear-gradient(235deg, var(--deep-blue) 0%, var(--light-blue) 100%);
    color: var(--beige-bg);
}
.transparent-button:hover {
    background-color: var(--golden-yellow);
    color: var(--font-color);
}

section h3 {
    font-size: 40px;
    margin-bottom: 20px;
    padding: 10px 30px;
    color: var(--light-blue);
}

.block-group, .image-block-group {
    width: auto;
    margin: 40px auto;
    padding: 10px 30px;
}
.block {
    background-color: #dacfa4;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 5px;
}

.block>h3 {
    font-size: 28px;
    margin: 0;
    font-weight: bold;
}

.event-details h3, .event-details p, .Profiles h3, .social a i {
    color: var(--beige-bg);
}
.social a:hover i {
    color: #fff;
}

.block>p {
    font-size: 14px;
    margin: 20px;
    color: #3a1a0f;
}
.block>i.bi {
    font-size: 32px;
    margin-bottom: 20px;
}
.block>a {
    text-decoration: none;
    font-size: 14px;
    color: #3a1a0f;
}
.block>a>i {
    color: #572b2f;
}
.block>a:hover, .block>a:hover>i {
    color: var(--light-blue);
}

.topic-note {
    padding: 30px;
}

.topic-note h3 {
    text-align: left;
    font-size: 32px;
    margin: 0;
    width: 40%;
    color: #3a1a0f;
}
.topic-note p {
    text-align: left;
    padding: 5px 20px;
    border-left: 5px solid var(--light-blue);
    width: 60%;
    margin-left: 10%;
}

p cite {
    color:var(--light-blue);
    display: block;
    font-style: normal;
}

.image-block-group .block {
    position: relative;
    background-size: 100%;
    padding: 60% 20px 40px;
    text-align: left;
    min-height: 300px;
    overflow: hidden;
}
.image-block-group .block>div.gradient {
    background: linear-gradient(0deg, #3d2714, #e3c79a42);
    width: 100%;
    background-blend-mode: overlay;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
.image-block-group .block>h3 {
    z-index: 9;
    padding: 0;
}
.image-block-group .block>p {
    z-index: 8;
    color: #fff;
    margin: 12px 0 30px;
    line-height: 18px;
    width: 80%;
}
.image-block-group .block>a{
    color: #fff;
    z-index: 7;
    padding: 5px 12px;
    border: 1px solid #fff;
    width: max-content;
}
.image-block-group .block>a:hover{
    background-color: #fff;
    color: var(--deep-blue);
}

.events {
    /*background-image: url(assets/event-bg.jpg);*/
    background-image: url(../../images/page-pics/event-bg.jpg);
    background-size: cover;
    padding: 8% 10% 18%;
    overflow: hidden;
    text-align: center;
    margin: 40px auto;
    position: relative;
}
.events::before {
    background-color: #00000029;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.events .event-details {
    position: absolute;
    width: 40%;
    left: 30%;
    top: 25%;
}

   .updates {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 98%;
    }
    .updates .card {
        width: 31% !important;
	margin: 1%;
    }
    .updates .card-body {
        flex: 1 1 auto;
        padding: 1rem 1rem;
        background-color: #dacfa4;
    }
    
    .updates .card h5 {
        color: var(--font-color);
        font-weight: bold;
        font-size: 25px;
    }
    .updates .card h6 {
        background-color: var(--deep-blue);
        width: fit-content;
        margin: 3px auto;
        padding: 4px 20px;
        color: #fff !important;
        border-radius: 32px;
    }

.parallax {
    background-attachment: fixed;  
}

section.discography {
    background-color: #d7cb9b;
    padding: 40px;
    margin: 40px auto;
}
.discography-pic>img {
    width: 100%;
    border-radius: 12px;
}
.discography-desc {
    padding: 20px 40px;
    text-align: left;
}
.discography-desc>h3 {
    padding: 20px 0;
}
.spectrum-separator{
    background: var(--spectrum);
    padding: 3px;
    width: 100%;
}
footer{
    background-color: #000;
    margin-top: 80px;
}

footer .bottom-left, footer .bottom-right {
    padding: 40px;
    text-align: left;
}
footer h4{color: var(--beige-bg);}
footer a{color: #fff;}
footer a:hover;{color: var(--beige-bg);}

footer .bottom-right{
    display: flex;
    justify-content: space-between;
}

footer .bottom-left h4 {
    font-family: var(--main-font);
}


form.search {
    display: inline-flex;
    align-items: center;
}
form.search input[type='text'] {
    background-color: #555;
    border: none;
    padding: 10px;
    border-radius: 5px;
    width: 78%;
    min-width: 150px;
    font-weight: normal;
}
form.search>button {
    border: none;
    padding: 14px 18px;
}
.social {
    display: inline-flex;
    width: 100%;
}
.social>a {
    font-size: 25px;
    margin: 0 5px;
}
.social>a:hover i {
    color: var(--light-blue)!important;
}
footer .menu-col {
    display: inline-flex;
    flex-direction: column;
    padding: 20px;
    min-width: 180px;
}
footer .menu-col>a {
    text-decoration: none;
    margin: 5px 0;
}
footer .menu-col>a:hover {
    color: var(--light-blue);
}
footer .credit-info {
    background-color: #333;
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
}
footer .credit-info>a, footer .credit-info>address {
    color: #999;
    text-decoration: none;
}
footer .credit-info>a:hover {
    color: #ddd;
}

section.page-content {
    padding: 40px 0;
}
section.page-content>h2 {
    font-size: 72px;
    margin-bottom: 40px;
}
section.page-content>p {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    line-height: 28px;
    text-align: justify;
    color: var(--font-color);
    font-weight: normal;
}
.inside-banner {
    aspect-ratio: 10/3;
    overflow: hidden;
}
.inside-banner>img {
    width: 100%;
}
.photo-album {
    overflow: hidden;
    background-color: #6d2208;
    padding: 12px;
    border-radius: 12px;
}
.photo-album>img {
    width: 100%;
}

.photo-album>h4 {
    width: 70%;
    display: inline-block;
    text-align: left;
    margin-top: 15px;
    color:#f5eedb;
}

.photo-album>a {
    background-color: #d7cb9b;
    padding: 3px 18px;
    border-radius: 30px;
    text-decoration: none;
}
.photo-album>a:hover {
    background-color:#dc3545;
    color:#f5eedb;
}

.merigold {
    color: #dc3545;
}
.discobox {
    border: 1px solid #333;
    padding: 20px;
    margin: 18px auto;
    border-radius: 12px;
    text-align: justify;
}
.discobox h4 {
    border-bottom: 1px dashed #888;
    margin-bottom: 12px;
    font-size: 26px;
    padding-bottom: 5px;
    color: var(--font-color);
    font-weight: bold;
    text-align: left;
}

/*-------------- For Mobile View ---------------*/
@media only screen and (max-width: 768px) {

    .navbar>.container {
        justify-content: flex-end;
    }
    .navbar-toggler {
        color: #fff;
        border: none;
        background-color: #ffffff;
    }
    .navbar-light .navbar-toggler-icon {
        backdrop-filter: brightness(2);
    }
    .navbar-nav {
        align-items: flex-end;
        background-color: #603304;
    }
    /*video.video-background {
        width: max-content;
        left: -50%;
        filter: brightness(0.3);
    }*/
    video.video-background {
        width: 100%;
        left: 0;
        filter: brightness(0.6);
        margin: 70px auto;
    }
    .brand h1, .homepage .brand h1 {
        color: #bd6506 !important;
    }
    .banner h2 {
    	color: #86773b;
    }
    section h3 {
        font-size: 30px;
    }
    section>p {
        width: 90%;
        margin: 0 auto;
    }
    .banner {
        padding: 60% 10px 30px 10px;
        height: auto;
    }
    section.intro {
        margin: 0 auto 8% auto;
    }
    .block {
        height: auto;
        border-radius: 5px;
        margin: 15px auto;
    }
    .events {
        background-position: center;
    }
    .events .event-details {
        position: relative;
        width: auto;
        left: unset;
        top: 0;
    }
    
    .topic-note {
        flex-direction: column;
    }
    .topic-note h3, .topic-note p {
        width: auto;
    }
    .discography-desc {
        padding: 10px;
    }

    footer .bottom-right {
        flex-direction: column;
    }
    footer .credit-info {
        flex-direction: column;
        align-items: center;
    }

}