﻿.offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.offcanvas-header {
    padding: 15px;
    background-color: #003580;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .offcanvas-header h2 {
        margin: 0;
        font-size: 18px;
        color:#fff;
    }

.menu-level {
    flex: 1;
    overflow-y: auto;
    display: none;
}

    .menu-level.active {
        display: block;
    }

.menu-item {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

    .menu-item img {
        width: 20px;
        height: 20px;
    }

    .menu-item span {
        flex-grow: 1;
    }

    .menu-item.has-submenu::after {
        content: "➔";
        font-size: 16px;
        position: absolute;
        right: 20px;
    }

    .menu-item:hover {
        background-color: #ebebeb;
    }





.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.footer-section {
    background-color: #f5f5f5;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}

    .footer-item img {
        width: 20px;
        height: 20px;
    }

.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Backdrop */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Şeffaf koyu arkaplan */
    z-index: 1000;
    display: none;
}

