@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

/* Navbar bağlantı stilleri */
a {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

a:first-child {
    margin-left: 0;
}

a:hover {
    color: #e5e7eb;
}

/* Navbar */
nav {
    background-color: #3a3a3a;
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.3);
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-inner {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: auto;
}

.logo img {
    width: 110px;
    height: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
}

/* Hesap butonu */
.account-btn {
    height: 2.5rem;
    width: 2.5rem;
    background-color: #4b4b4b;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #d1d5db;
    font-size: 1.125rem;
}

.account-btn:hover,
.account-btn:focus {
    background-color: #6e6e6e;
    outline: none;
    box-shadow: 0 0 0 2px #9ca3af;
}

body {
    background-color: #3a3a3a;
    font-family : 'Inter', sans-serif;
}

/* Footer */
footer {
    background-color: #3a3a3a;
    color: #9ca3af;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.875rem;
}

/* Mobil uyum */
@media (max-width: 640px) {
    .nav-links a {
        margin-left: 1rem;
        font-size: 1rem;
    }

    .logo img {
        height: 2rem;
        width: 2rem;
    }

    .account-btn {
        height: 2rem;
        width: 2rem;
        font-size: 1rem;
    }
}
