/* Header Wrapper */

.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F7F6F9;
    padding: 0% 4%;
    height: 92px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);
    flex-wrap: wrap;
}


/* Logo */
.logo-area {
    flex: 2;
}

.logo-img {
    height: 62px;
    max-width: 100%;
}

/* Menu */
.menu-area {
    flex: 3;
    display: flex;
    justify-content: space-between;
}

.menu-nav {
    display: flex;
    gap: 50px;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 8.5px;
    text-decoration: none;
    color: #151515;
    font-family: 'Montserrat Armenian light';
    font-size: 13px;
    position: relative;
}

.menu-item {
    color: hsl(0, 0%, 0%);
}

.menu-item:hover {
    color: hsl(315, 80%, 20%);
    text-decoration: none;
}

.menu-item::before {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #B760A5;
}

/* Social Icons */
.social-area {
    flex: 1.2;
    display: flex;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 27px;
    height: 27px;
    background-color: #BF5C9F;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.05);
}

/* Y Logo */

.y-logo-img {
    height: 48px;
    width: auto;
    padding-left: 4%;

}

/* Responsive */
@media (max-width: 868px) {
    .custom-header {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 20px 15px;
        gap: 15px;
        text-align: center;
    }

    .logo-area,
    .menu-area,
    .social-area {
        width: 100%;
        justify-content: center;
    }

    .logo-area {
        margin-bottom: 10px;
    }

    .menu-nav {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .menu-item::before {
        display: none;
    }

    .social-area {
        margin-top: 10px;
    }

    .y-logo {
        margin-top: 10px;
        padding: 0;
    }

    .right-group {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 1224px) {
    .menu-nav {
        gap: 40px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon img {
        width: 22px;
        height: 22px;
    }

    .logo-img {
        height: 50px;
    }
}