/* GENEL */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* HEADER */
.header {
    background: linear-gradient(to right, #4f46e5, #9333ea);
    color: white;
    padding: 20px 30px;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Sol başlık */
.header-left {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

/* Menü */
.header-right .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.header-right .menu li {
    margin-left: 25px;
}

.header-right .menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.header-right .menu li a:hover {
    opacity: 0.8;
}

/* Hamburger menü ikonu (mobilde görünür) */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-right {
        width: 100%;
    }

    .header-right .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    .header-right .menu li {
        margin: 10px 0;
    }

    .header-right .menu.active {
        display: flex;
    }
}
