/* Genel stil */
body {
    background: linear-gradient(135deg, #121212, #1d1d1d);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: #e0e0e0;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar stilleri */
.navbar {
    background-color: #181818;
    border-bottom: 3px solid #ffc107;
    height: auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    gap: 10px; /* Navbar elemanları arasına boşluk ekledik */
}

.navbar-nav {
    display: flex;
    align-items: center;
    margin-left: 20px; /* Nav linkleri logoya daha yakın hale getirdik */
}

.navbar-nav .nav-link {
    color: #fff;
    text-transform: uppercase;
    padding: 10px 15px;
    transition: color 0.3s ease;
    font-size: 14px;
}

.navbar-nav .nav-link:hover {
    color: #ffc107;
}

/* Logo boyutunu büyüttük ve hizaladık */
.navbar-brand img {
    width: 140px; /* Logonun genişliği artırıldı */
    height: auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 15px; /* Logo ile nav-linkler arasına ekstra boşluk */
}

/* Butonlar */
.btn-promosyon {
    background: linear-gradient(135deg, #ffc107, #e6a507);
    border: none;
    color: #000;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 30px;
    font-size: 16px;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-promosyon:hover {
    background: linear-gradient(135deg, #ffcc33, #d49406);
    transform: scale(1.05);
}

/* Dropdown Menü */
.nav-item {
    position: relative;
}

.dropdown-menu {
    background-color: #222;
    color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

.dropdown-item {
    color: #fff;
    padding: 12px 20px;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: #444;
    color: #ffc107;
}

/* Alt menü */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #111;
    border-top: 3px solid #ffc107;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1050;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.5);
}

.bottom-nav .nav-link {
    color: #fff;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.3s ease;
}

.bottom-nav .nav-link:hover {
    color: #ffc107;
}

/* Saat ve dil alanları */
.nav-clock, .nav-lang {
    color: #ffc107;
    font-size: 14px;
    margin-left: 15px;
}

.nav-lang img {
    width: 25px;
    margin-right: 5px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
    }

    .nav-clock, .nav-lang {
        display: none;
    }

    .bottom-nav {
        display: flex;
        justify-content: space-around;
    }
}
