@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');

.nav-head {
    background-color: #151515;
}

.nav-head h3 {
    color: #efefef;
}
.nav-head h3:hover {
    color: #FFFFFF;
}

.nav-head .nav .nav-link {
    color: #efefef;
}

.nav-head .nav .nav-link:hover {
    color: #FFFFFF;
}

footer {
    background-color: #151515;
}

.nav-head .btn-white, .nav-head  .btn-white:hover{
    background-color: transparent;
    border-color: #efefef;
    color: #efefef;
}

.hero {
    height: calc(100vh - 80px);
    background-color: #151515;
    position: relative;
    background-image: url('../images/candle_bg.jpg');
    background-size: cover;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

.hero::before {
    content: '';
    position: absolute;
    height: calc(100vh - 80px);
    width: 100%;
    background-color: #1515159d;
    top: 0;
    left: 0;
    z-index: 1;
}


.hero .content{
    position: relative;
    text-align: center;
    z-index: 5;
    display: flex;
    align-items: center;
}

.hero .content blockquote {
    font-family: 'Satisfy', cursive;
    vertical-align: middle;
    text-align: center;
    display: inline-block;
    width: 100%;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.5em;
}

@media (max-width: 920px){
    .hero {
        height: calc(100vh - 120px);
    }
    .hero::before {
        height: calc(100vh - 128px);
    }
    .hero .content blockquote {
        font-size: 25px;
    }

}

@media (max-width: 567px){
    .hero {
        height: calc(100vh - 128px);
        background-position: top center;
        background-attachment: fixed;
    }
    .hero::before {
        height: calc(100vh - 128px);
    }

    .hero .content img{
        height: 350px;
        border-radius: 10px;
        border: solid 2px #FFFFFF;
        width: auto;
    }

    .hero .content blockquote {
        font-size: 25px;
    }
}

/* Biography */

.biography{
    padding: 4.5rem 0;
    position: relative;
}

.biography .title {
    text-align: center;
}

.biography .title span {
    text-transform: uppercase;
    font-weight: 500;
}

.biography .bio {
    text-align: justify;
}


/* Program */

.program {
    padding: 4.5rem 0;
    background-color: #151515;
    color: #FFFFFF;
}

.program .details {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.program .details li span {
    font-weight: 500;
}

.program .featured-img {
    height: auto;
    width: 100%;
}

/* Tributes */
.tributes {
    padding: 4.5rem 0;
}

.tributes .tribute {
    padding: 1rem;
    border: solid 1px #151515;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.tributes .tribute img{
    border-radius: 50%;
    height: 40px;
    margin-right: 10px;
}


/* Gallery */
.gallery {
    padding: 4.5rem 0;
    background-color: #151515;
    color: white;
}

.gallery .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.gallery .btn-white, .gallery  .btn-white:hover{
    background-color: transparent;
    border-color: #efefef;
    color: #efefef;
}

.gallery .single img {
    width: 100%;
    height: 400px;
    object-position: top center;
    object-fit: cover;
    margin-bottom: 10px;
}

.breadcrumb-section{
    padding: 3rem 0;
    background-image: url('../images/candle_bg.jpg');
    position: relative;
    color: #efefef;
    text-align: center;
    z-index: 1;
}

.breadcrumb-section::before {
    content: '';
    background-color: #1515157d;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.breadcrumb-section .container {
    position: relative;
    z-index: 3;
}

.breadcrumb {
    justify-content: center;
}

.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a{
    color: #efefef !important;
    font-weight: 400;
    text-decoration: none !important;
}

.breadcrumb .breadcrumb-item.active{
    font-weight: 500;
}
