/* Header Styles */
.navbar {
    background-color: transparent;
    backdrop-filter: none;
    height: 72px;
    padding: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    min-width: fit-content;
}

.logo-container {
    display: flex;
    align-items: center;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    margin-left: auto;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 0 1rem;
    height: 72px;
    border-bottom: 1px solid transparent;
    align-items: center;
}

.navbar.scrolled {
    border-bottom: 1px solid black;
}

.navbar .container {
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    padding: 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--text-color) !important;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    position: static;
}

@media (max-width: 768px) { /* Mobil cihazlar için */
    .navbar-brand {
        font-size: 1.2rem; /* Daha küçük font boyutu */
    }
}

.navbar-brand .d-flex {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 22px;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 1rem;
    color: #1e1e1e !important;
    font-weight: 500;
    padding: 0.625rem 0.75rem !important;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    text-decoration: underline;
}

/* Buton stilleri */
.btn {
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.500rem 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
    border: 1px solid #000;
    box-shadow: 0 0 0 0 rgba(0,0,0,0.2);
}

.btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 0 rgba(0,0,0,1);
}

.btn-outline-dark {
    background-color: #fff;
    border: 1px solid #000;
    color: var(--text-color);
}

.btn-outline-dark:hover {
    background-color: #fff;
    border-color: #000;
    color: var(--text-color);
}

.btn-dark {
    background-color: #000000;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-dark:hover {
    background-color: #fccc9c;
    border-color: #000;
    color: #000000;
}

/* Sağdaki butonların container'ı */
.navbar .d-flex {
    display: flex;
    align-items: center;
    margin-left: auto;
}

@media (max-width: 991px) {
    .navbar-brand {
        flex-shrink: 0;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 1rem;
        width: auto;
        min-width: 300px;
        background: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        position: static;
        transform: none;
        text-align: center;
        gap: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
    }

    .d-flex.align-items-center.gap-2 {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    .d-flex.align-items-center.gap-2 .btn {
        width: 100%;
    }
} 