/* --------------------
   HAMBURGER
-------------------- */

.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    background: transparent;
    width: 52px;
    height: 52px;

    border: none;
    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    cursor: pointer;
    z-index: 1000;

    /* hidden while hero is visible */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s;
}


.hamburger.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hamburger span {
    display: block;
    width: 23px;
    height: 2px;
    background: white;
}

.hamburger.black span{
    background: black;
}
.hamburger.black{
    background: rgba(255, 255, 255, 0.5)
}
/* --------------------
   PAGE OVERLAY
-------------------- */

.menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.35s ease;
    z-index: 1100;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* --------------------
   SIDE MENU
-------------------- */

.side-menu {
    position: fixed;

    top: 0;
    right: 0;

    height: 100vh;
    width: min(320px, 85vw);

    background: #171717;

    z-index: 1200;

    transform: translateX(100%);
    transition: transform 0.4s ease;

    padding: 30px;
}

.side-menu.active {
    transform: translateX(0);
}


/* Close X */

.close-menu {
    position: absolute;

    top: 20px;
    left: 20px;

    background: none;
    border: none;

    color: white;
    font-size: 36px;

    cursor: pointer;
    z-index: 10;
}


.close-menu:hover {
    background: transparent;
}

/* Menu contents */

.side-menu-content {
    position: relative;
    height: 100%;

    display: flex;
    flex-direction: column;

    align-items: flex-end;
    justify-content: center;

    gap: 18px;
}

.side-menu-content a {
    color: white;
    text-decoration: none;

    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    transition: color 0.2s ease;
    padding-right: 10px;
}

.side-menu-content a:hover {
    color: #ff193e;
}

.menu-logo {
    width: 80px;
    margin-top: 50px;
}

.cows_fly_logo{
    
}

.cows_fly_logo img{
    height: 100%;
    width: 100%;

    object-fit: cover;
    object-position: center;

}