/* i am a generic css page */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");

body {
    background: #ffffff;
    width: 99%;
    
}
#top {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    background: rgb(255, 255, 255);
    width: 100%;
    overflow: hidden;
}
.topLeft {
    width: 50%;
    display: flex;
}
.logo {
    margin-left: 60px;
    width: 190px;
}

.logo > img {
    width: 100%;
    border-radius: 15px;
}

/* ---------------------style for the MENU on top---------------------  */

.topRight {
    background: rgb(255, 255, 255);
    font-family: "Open Sans", sans-serif;
    width: 50%;
    height: 50px;
    display: flex;
    align-self: center;
    /* overflow: hidden; */
}

.rightBox {
    /* margin: 0px; */
    right: -120px;
}
nav {
    position: relative;
    width: 100%;
}
nav a {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    line-height: 50px;
    position: relative;
    display: inline-block;
    text-align: center;
}
.fa-crown {
    position: absolute;
    left: -2px;
    top: -10px;
    transform: rotate(333deg);
    color: rgba(255, 174, 0, 0.85);
    font-size: 29px;
}
nav .animation {
    display: inline-block;
    position: absolute;
    height: 10%;
    bottom: 0;
    background: rgba(237, 40, 40, 0.85);
    border-radius: 8px;
    transition: all 0.5s ease 0s;
}
#responsiveMenu {
    display: none;
}

/* ```````````````style for the cards on event and profile pages```````````````````` */
.insideIconEventCard {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 5px;
    transition: 1s;
}

.insideIconEventCard i {
    font-size: 20px;
    margin-right: 5px;
}

.hostIconText {
    width: 25px;
    position: absolute;
    top: -25px;
    left: 3px;
}

.hostIconText i {
    font-size: 20px;
}

i {
    color: grey;
}
/* ------------------style for buttons ------------------*/

.box {
    position: absolute;
    bottom: 10%;
    right: 0;
    transform: translate(-50%, -50%);
}


.btn:link,
.btn:visited {
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    top: 0;
    left: 0;
    padding: 20px 40px;
    border-radius: 100px;
    display: inline-block;
    transition: all 0.5s;
}

.btn-white {
    background-color: rgba(237, 40, 40, 0.85);
    color: rgb(255, 255, 255);
    font-size: 1.3em;
    font-weight: 630;
}

.btn:hover {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.btn:active {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.btn-bottom-animation-1 {
    animation: comeFromBottom 1s ease-out 0.8s;
}

.btn::after {
    content: "";
    text-decoration: none;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100px;
    display: inline-block;
    z-index: -1;
    transition: all 0.5s;
}

.btn-white::after {
    background: rgba(237, 40, 40, 0.85);
}

.btn-animation-1:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

@keyframes comeFromBottom {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*-------style for signup Button in NavBar---------  */

.signUpBtn {
    background-color: rgba(237, 40, 40, 0.85);
    color: rgb(255, 255, 255);
    border-radius: 25px;
}
.signUpBtn:hover {
    color: rgb(0, 0, 0);
}

/*-------------------style for footer--------------  */
footer {
    margin-top: 100px;
    padding-top: 100PX;
}
.footerContent {
    font-family: "Varela Round", sans-serif;
    background: rgb(255, 255, 255);
    width: 100%;
    height: 150px;    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.footerContent h1 {
    font-size: 25px;
}

.footerContent h1,
p {
    color: rgb(0, 0, 0);
}
.footerContent p {
    font-size: 15px;
}

.contactInfo {
    margin-left: 20px;
}
.address {
    margin-left: 20px;
}
.snsIcons {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}
.snsIcon {
    width: 32px;
    height: 32px;
}
.snsIcon img {
    width: 100%;
}

.openMenu,
.closeMenu {
    display: none;
}

@media screen and (max-width: 1100px) {
    #responsiveMenu {
        display: block;
    }
    .fa-crown {
        position: relative;
        left: 0;
        transform:none;
        top: 0;
    }

    .rightBox {
        position: fixed;
        top: 20px;
        right: 0px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 15;
        width: 55px;
        height: 65vh;
        border: 1px solid #dadce0;
        border-radius: 8px;
        background: white;
    }
    .rightBox i {
        font-size: 30px;
        text-align: center;
    }

    .topRight strong {
        display: none;
    }

    nav .start-home {
        display: none;
    }

    .cards > .card:hover {
        height: 215px;
    }
    .cards .card:hover .cardText {
        visibility: hidden;
    }
    .cards .card .cardText {
        visibility: hidden;
    }
    
    .footerContent {
        font-family: "Varela Round", sans-serif;
        background: rgb(255, 255, 255);
        width: 100%;
        height: 150px;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    .footerContent h1 {
        font-size: 15px;
    }
    
    .footerContent h1,
    p {
        color: rgb(0, 0, 0);
    }
    .footerContent p {
        font-size: 10px;
    }
    
    nav a {
        width: 100%;
    }
