@charset "utf-8";
/* CSS Document */

/* header */
.home_menu {
    display: flex;
    color: white;
    position: relative;
    margin-top: 10px;
    margin-bottom: 75px;
}

.menu_left {
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
	position: relative;
    cursor: pointer;
}

.menu_right {
    position: relative;
    z-index: 999; /* Added to ensure it's above overlapping elements */
    cursor: pointer;
}

    .menu_right span {
        font-size: 1.5em;
        font-family: "holidayfreeregular";
        line-height: 1.375em;
    }

    .menu_left:hover,
    .menu_right:hover {
        color: #eb2985;
    }

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    list-style: none;
    margin: 0;
    z-index: 9999; /* Raised to ensure dropdown stays above */
    text-align: center;
}

.menu_left span {
    font-size: 2em;
    font-family: "Montserrat", serif;
    font-weight: 900;
    line-height: 1em;
}

.menu_left .dropdown {
    line-height: 1.125em;
    font-size: 1.125em;
    font-family: "Montserrat", serif;
    font-weight: 900;
    text-align: center;
    background: url("images/underline_white.png") no-repeat top center;
    background-size: contain;
    width: 150px;
    padding-top: 15px;
}

.menu_right .dropdown {
    line-height: 1.75em;
    font-size: 1.125em;
    font-family: 'holidayfreeregular';
    width: 100px;
	transform: translate(0, 0);
	left: auto;
	right: 5px;
	padding-top: 0;
	text-align: right;
    z-index: 9999; /* Re-added here outside media query */
}
.menu_right .dropdown::before
{
	content: " ";
	background: url("images/underline_white_right.png") no-repeat top right;
    background-size: contain;
    width: 100px;
    display: block;
    height: 10px;
}
ul.dropdown {
    padding: 5px;
    margin: 0;
}

.dropdown li {
    padding: 0;
    margin: 0;
}

    .dropdown li a {
        color: white;
        text-decoration: none;
        display: block;
    }

        .dropdown li a:hover {
            color: #eb2985;
        }

.menu_left:hover .dropdown,
.menu_right:hover .dropdown {
    display: block;
}

/* header end */

.footer {
    padding: 70px 0 20px 0;
    font-size: 1em;
}

    .footer a:link,
    .footer a:visited,
    .footer a:active {
        padding: 0 15px;
        font-size: 1.125em;
        line-height: 1.5em;
        text-decoration: none;
        position: relative;
        color: #fff;
        font-family: 'holidayfreeregular';
    }

    .footer a:hover {
        color: #eb3084;
    }

@media only screen and (max-width: 768px) {
.footer {
        padding: 50px 10px 10px 10px;
    }

        .footer.d-flex-center {
            display: block;
            text-align: center;
        }

        .footer a:link,
        .footer a:visited,
        .footer a:active {
            padding: 10px;
            display: inline-block;
            font-size: 0.875em;
        }

        .footer .mla {
            margin-top: 10px;
            border-top: 1px solid #fff;
            padding-top: 10px;
        }
}
@media only screen and (max-width: 600px) {

    .menu_left span {
        font-size: 1.5em;
    }

    #hamburger {
        right: 15px;
    }

    .menu_left .dropdown {
        font-size: 1em;
        width: 120px;
    }


    .home_menu {
       margin: 20px 0 70px 0;
    }

        .home_menu .mla.d-flex-center {
            display: flex;
        }

    .menu_right span {
        font-size: 1.25em;
    }
	#eventFooterWrapper
	{
		display: none;
	}
}
