@import url('https://fonts.googleapis.com/css?family=Poppins:wgth@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    border: none;
    scroll-behavior: smooth;
    outline: none;
    box-sizing: border-box;
    text-decoration: none;

}
:root{
    --bg-color:  #FFFFFF;
    --second-bg-color:#FF00FF;
    --third-bg-color: #FFD700;
    --text-color : #444;
    --main-color : #FF00FF;
    --gold: #ffd700;
}

html{
    font-size: 62%;
    overflow-x: hidden;
}

body{
    background: linear-gradient(10deg, #91b96c, #474684);
    color: var(--text-color);
}

.header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 2.0rem 5%;
    background: linear-gradient(60deg, #c7eaaf36, #b9b8ef5d);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    font-size: 2rem;
    color: gold;
    transition: color .2s ease;
    transition: 0.6s;
    filter: brightness(120%);
    filter: contrast(150%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Brush script m7', cursive;
}
.logo span{
    color: #fcb71d;
    /* color: #a09120; */
    font-family: 'lucida handwriting', cursive;
    font-size: 1.2rem;
}
.logo img{
    border-radius: 50%;
    opacity: 1.2;
}
.logo:hover{
    color: var(--bg-color);
    transform: scale(1.1);
    opacity: 1;
}
.navbar{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a:first-child{
    color: #fff700;
}
.navbar a{
    position: relative;
    font-size: 2rem;
    margin-left: 4.5rem;
    font-weight: 400;
    color: #FFFFFF;
    transition: 0.6s;
}
.navbar a::before{
    content: '';
    position: absolute;
    top: 100%;
    height: 3px;
    width: 0%;
    left: 0;
    background: linear-gradient(60deg, #43bdf2, #ff5e5e);
    transition: 0.6s;
}
.navbar a:hover::before{
    width: 100%;
}
.navbar a:hover,
.navbar a.active{
    color: gold;
    transform: scale(1.3);
}
.navbar a i{
    position: relative;
    font-size: 3rem;
    color: #fff;
    font-weight: 400;
    margin-left: 4.5rem;
}
.navbar a i:hover{
    transform: scale(2);
}

/* New styles for the hamburger button */
.hamburger-btn {
    display: none;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 6px 0;
}
.mobile-navbar{
    display: none;
}

.readMoreBtn .btn{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 2.3rem;
    letter-spacing: 0.4rem;
    font-weight: 600;
    color: var(--bg-color);
    z-index: 1;
    overflow: hidden;
}

.readMoreBtn .btn:hover{
    color: #ffeb77;
    transform: scale(1.1);
}
.readMoreBtn .btn::before{
    content: '';
    position: absolute;
    top: 90%;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #e5a95b, #e17b7b);
    z-index: -1;
    transition: 0.6s;
}

.readMoreBtn .btn:hover::before{
    width: 100%;
}

.footer{
    width: 100%;
    background: linear-gradient(60deg, #8a99d087, #9391e55d);
    display: flex;
    z-index: 100;
    border-top: 5px solid #c0e2a987;
    padding: 15px 15px 15px 15px;
    justify-content: center;
}

.footer .outerContainer{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 75%;
}

.outerContainer .copyrightContainer{
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
}

.outerContainer .footerContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.footerContainer .containerBlock{
    top: 0;
    margin: 10px 10px 10px 10px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
}

.containerBlock .blockBtns{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.blockBtns .btn{
    color: #fff;
    position: relative;
    width: 20rem;
    height: 100%;
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
    font-weight: 600;
    z-index: 1;
    overflow: hidden;
}

.blockBtns .btn:hover{
    transform: scale(1.2);
}
.containerBlock .smFooterBtns{
    display: flex;
    justify-content: center;
    align-items: center;

}
.containerBlock .smFooterBtns .btn{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 2.3rem;
    letter-spacing: 0.4rem;
    font-weight: 600;
    color: var(--bg-color);
    z-index: 1;
    overflow: hidden;
}
.smFooterBtns .btn i{
    font-size: 50px;
    font-weight: 200;
    color: #FFFFFF;
    transition: 0.6s;
    margin: 5px 5px 5px 5px;
    padding: 1px 1px 1px 1px;
}

.smFooterBtns .btn i:hover{
    transform: scale(1.6);
    color: #c078c0;
}

.smFooterBtns .btn:nth-child(2) i:hover{
    transform: scale(1.6);
    color: #be6363;
}


.btnTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    font-size: 2rem;
    color: var(--highlight-color);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 10px;
    backdrop-filter: blur(5px);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btnTop:hover {
    transform: scale(1.2);
    background: var(--gold);
    color: #000;
}

.scrolling .btnTop {
    display: block;
}
.btnTop i{
    font-size: 45px;
    font-weight: 500;
}


@media screen and (max-width: 1120px) {
    .navbar {
        display: none;
        overflow: hidden;
    }

    .hamburger-btn {
        display: block; 
        cursor: pointer;
    }
    .logo{
        font-size: 1rem;
        font-weight: 700;
        color: gold;
        transition: color .2s ease;
        transition: 0.6s;
        filter: brightness(160%);
        filter: contrast(180%);
        display: flex;
        flex-direction: column;
    }
    .logo span{
        /*color: #94936a;*/
        color: #ae9922;
    }
    .logo img{
        width: auto;
        height: 30px;
    }
    
    .hamburger-btn.active + .mobile-navbar {
        display: flex;
    }
    .footer {
        align-items: center;
        padding: 15px 5px;
        border-top: 7px solid transparent;
    }
    .outerContainer .footerContainer{
        margin-top: -22px;
        align-items: center;
        margin-left: -20px;
    }

    .containerBlock {
        margin: 5px 0;
        width: 100%;
    }

    .containerBlock .blockBtns {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .containerBlock .blockBtns .btn {
        width: auto;
        margin: 5px;
        font-size: 0.8rem;
        letter-spacing: 0.1rem;
    }

    .containerBlock .smFooterBtns {
        margin: 5px 0;
    }

    .containerBlock .smFooterBtns .btn {
        font-size: 1rem;
    }

    .smFooterBtns .btn i {
        font-size: 15px;
        margin-left: 5px;
    }
    .btnTop{
        bottom: 15px;
        right: 15px;
    }
    .btnTop i{
        font-size: 30px;
        font-weight: 500;
    }
    .outerContainer .copyrightContainer p{
        font-size: 8px;
    }
}

@media screen and (max-width: 475px){
    .navbar {
        display: none;
        overflow: hidden;
    }

    .hamburger-btn {
        display: block; 
        cursor: pointer;
    }
    .logo{
        font-size: 1rem;
        font-weight: 700;
        color: gold;
        transition: color .2s ease;
        transition: 0.6s;
        filter: brightness(160%);
        filter: contrast(180%);
        display: flex;
        flex-direction: column;
    }
    .logo span{
        /*color: #94936a;*/
        color: #ae9922;
    }
    .logo img{
        width: auto;
        height: 30px;
    }
    
    .hamburger-btn.active + .mobile-navbar {
        display: flex;
    }
    .footer {
        align-items: center;
        padding: 15px 5px;
        border-top: 7px solid transparent;
    }
    .outerContainer .footerContainer{
        margin-top: -22px;
        align-items: center;
        margin-left: -25px;
    }

    .containerBlock {
        margin: 5px 0;
        width: 100%;
    }

    .containerBlock .blockBtns {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .containerBlock .blockBtns .btn {
        width: auto;
        margin: 5px;
        font-size: 0.6rem;
        letter-spacing: 0.1rem;
    }

    .containerBlock .smFooterBtns {
        margin: 5px 0;
    }

    .containerBlock .smFooterBtns .btn {
        font-size: 1rem;
    }

    .smFooterBtns .btn i {
        font-size: 15px;
        margin-left: 5px;
    }
    .btnTop{
        bottom: 15px;
        right: 15px;
    }
    .btnTop i{
        font-size: 30px;
        font-weight: 500;
    }
    .outerContainer .copyrightContainer p{
        font-size: 8px;
    }
}