@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");

:root {
    --black: #000000;
    --white: #ffffff;
    --primary: #4c6f68;
}

.menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 1040;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.side-menu {
    position: fixed;
    top: 0; left: 0; 
    width: 100%;
    max-width: 562px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: 2px 0 15px rgba(0,0,0,0.1); 
    overflow-y: auto;
    z-index: 1050;
    padding: 34px 25px;

    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.side-menu.active {
    transform: translateX(0); 
}

.side-menu::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 20px;
    pointer-events: none;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.menu-title {
   font-family: "Prospectus Pro Cyrillic Italic", serif !important;
    font-weight: 300;
    font-size: 3.25rem;
    line-height: 100%;
    right: 3%;
    margin-bottom: 4px;
    text-decoration: none;
    font-style: italic;
    color: black;
    transition-property: inset-block-end;
    transition-duration: .78s;
    transition-timing-function: ease-in-out;

 
}

.close-btn {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: var(--black);
}

.menu-section-title {
    padding: 35px 0 9px;
    font-size: 0.875rem;
    color: var(--black);
    opacity: 0.5;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid #e0e0e0;
}

.menu-list {
    list-style: none;
    padding: 1.5rem 0 0;
    margin: 0;
}

.menu-item {
    padding: 20px 10px;
    font-size: .95rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s, transform 0.3s;
}

.menu-item:hover {
    color: var(--black);
    transform: translateX(10px);
}

.menu-arrow {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: transform 0.2s;
}

.breadcrumb-line {
    padding: 35px 0 9px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.875rem;
    font-weight: 700;
}

.breadcrumb-back {
    color: var(--primary);
    cursor: pointer;
}

#subTitle {
    padding-left: 6px;
    color: black;
    opacity: 0.5;
}

@media (max-width: 576px) {
    .side-menu { max-width: 100%; padding: 25px; }
    .menu-title { font-size: 2.5rem; }
}
