@import url('https://fonts.googleapis.com/css2?family=Concert+One&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap');

h1,h2,h3,h4,h5,h6{
    /* font-family: "Concert One", sans-serif; */
    font-family: "Merienda", cursive;
}

@import url('https://fonts.googleapis.com/css2?family=National+Park:wght@200..800&display=swap');

p{
    font-family: "National Park", sans-serif;
    text-align:justify ;
}

.nav-link {
    color: #232122 !important;
    font-weight: bold !important;
    font-size: 17px !important;
    font-family: "Merienda", cursive;
}

.nav-link:hover {
    color: #fd8623 !important;
}

.nav-item .nav-link {
    font-size: 25px;
}

.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 0;
    height: 3px;
    background-color: #232122;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}


.navbar-nav .nav-link:hover::before {
    width: 100%;
    visibility: visible;
    color: #FF7D6D !important; 
}

.navbar-nav .nav-link.active::before {
    width: 100%;
    visibility: visible;
    color: orangered !important;
}

.navbar-nav .nav-link.active {
    color: #fd8623 !important;
}

.nav-icon-style{
    background-color: #232122;
    height: 50px;
    width: 50px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.4s;
}

.nav-icon-style .nav-icon-style-one{
    color: #fd8623;
    text-decoration: none;
    font-size: 24px;
}

.nav-icon-style:hover{
    border: 2px solid #fd8623;
    background-color: #fff;
    transform: scale(1.02);
}

.navbar-collapse {
    transition: background-color 0.3s ease-in-out;
}  

.navbar>.container-fluid{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom: 4px solid #fd8623;
}