*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --gold: #C2A74E;
}

.text-gold{
    color: var(--gold);
}

.bg-gold{
    background-color: var(--gold);
}

.rounded-brand{
    border-radius: 20px;
}

.hero-section{
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container{
    backdrop-filter: blur(5px);
    min-height: 65vh;
    align-content: center;
}

.hero-content{
    background-color: rgba(0, 0, 0, 0.515);
    width: 100%;
    min-height: 65vh;
}

.bg-brand-light{
    background-color: #EFEAE6 !important;
}

.text-brand-light{
    color: #EFEAE6 !important;
}

.bars-para{
    display: none
}

.nav-bar-wrap{
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: black;
    transition: all 0.3s ease;
}

.nav-bar-wrap div{
    display: flex;
    justify-content: center;
    text-align: center;
}

.nav-bar-wrap p:nth-child(1){
    text-align: center !important;
    width: 100% !important;
}


@media screen and (width < 700px) {
    .bars-para{
        display: block
    }
    .nav-bar-wrap div{
        display: flex;
        justify-content: space-between;
        text-align: start;
    }
    .nav-bar-wrap p:nth-child(1){
        text-align: start !important;
        width: auto;
    }
    .hero-section{
        min-height: 40vh;
        background-image: url("images/img5.JPG");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero-container{
        backdrop-filter: blur(5px);
        min-height: 40vh;
        align-content: center;
    }
    
    .hero-content{
        background-color: rgba(0, 0, 0, 0.515);
        width: 100%;
        min-height: 40vh;
    }
}