.main-header {
    height: 85px;
    width: 100%;
    background: linear-gradient(to right, #000000, #0d0d0d, #1a1a1a, #262626, #333333, #1a1a1a, #000000);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 0 15px;
}

.logo img {
    height: 75px;
    width: 250px;
    object-fit: contain;
}

.menu .nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.menu .nav-list li {
    position: relative;
}

.menu .nav-list a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.menu .nav-list a:hover {
    color: orange;
}

/* Dropdown Menüsünün Konum Düzenlemesi */
.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown Menüsü Stili */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000; /* Siyah arka plan */
    min-width: 180px;
    display: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 10;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: white; /* Beyaz yazı */
    font-weight: 500;
    transition: color 0.2s;
    background-color: #000000; /* Kalıcı siyah arka plan */
}

.dropdown-menu li a:hover {
    background-color: #000000; /* Hover'da da siyah kalsın */
    color: orange;
}

/* Arama Box Stili */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    outline: none;
    background-color: black;
    color: white;
    font-size: 16px;
    width: 300px;
}

.search-input::placeholder {
    color: white;
}

.search-btn {
    background: none;
    border: none;
    position: absolute;
    right: 10px;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.search-btn:hover {
    color: #ff6600; /* Kamera ikonunun hover rengi */
}

/* Mobil uyumluluk için medya sorguları */
@media (max-width: 768px) {
    .menu .nav-list {
        display: block;
        gap: 15px;
    }

    .search-box {
        margin-top: 10px;
    }

    .search-input {
        width: 200px;
    }

    .main-header {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    .logo img {
        width: 200px;
        height: auto;
    }
}
