﻿/* Sıfır ayar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Gövde ve içerik */
body {
    font-family: sans-serif;
    overflow-x: hidden; /* Yatay scrollbar görünmemesi için */
}

.content {
    padding: 20px;
}

/* Menu Toggle Butonu (Hamburger) */
.menu-toggle {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 30px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    z-index: 2000;
    color: #fff;
    z-index: 500;
}

/* Yan Menü (Drawer) */
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #1e3a93;
    color: #fff;
    padding: 10px 20px;
    transform: translateX(-100%); /* Başlangıçta görünmesin */
    transition: transform 0.3s ease;
    z-index: 1500;
    overflow-y: auto;
    box-shadow: 2px 0 5px rgba(0,0,0,0.3);
}

    /* Menü açıkken yer değiştirmesi: .side-menu.active eklenince */
    .side-menu.active {
        transform: translateX(0);
    }

/* Menü başlığı (üst kısım) */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .menu-header h3 {
        font-size: 1.2rem;
    }

.close-btn {
    font-size: 18px;
    border-radius: 50px;
    background: #fff;
    border: none;
    width: 35px;
    padding: 8px;
    height: 35px;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 20px;
    right: 0px;
    color: #1e3a93;
    cursor: pointer;
}

/* MENU Yazısı */
.menu-title {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Menü listesi */
.menu-list {
    list-style-type: none;
}

    .menu-list li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

        .menu-list li a {
            color: #fff;
            text-decoration: none;
            display: flex; /* Sub-menu açma oku için yer */
            justify-content: space-between;
            align-items: center;
        }



/* Alt Menü (Sub-menu) */
.has-sub .sub-menu {
    max-height: 0; /* Başta kapalı */
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: none;
    margin-left: 15px;
}

/* .has-sub.open olduğunda alt menü açılır */
.has-sub.open .sub-menu {
    max-height: 1500px; /* Yeterince büyük bir değer verin */
}

.sub-menu li {
    border-bottom: none;
}

    .sub-menu li a {
        font-size: 0.9rem;
        justify-self: left;
    }

        .sub-menu li a:before {
            content: "o";
            padding-right: 5px;
        }

.arrow {
    font-size: 1rem;
    transition: transform 0.3s;
}

/* Alt menü açıkken oku döndür */
.has-sub.open .arrow {
    transform: rotate(90deg);
}

.menu-toggle {
    display: block;
}

/* Masaüstü (örneğin, minimum genişlik 992px) */
@media (min-width: 992px) {
    .menu-toggle {
        display: none; /* Bu satır ile masaüstünde burger kaybolur. */
    }
}
