@import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans&display=swap');

* {
    font-family: 'Inclusive Sans', sans-serif;
}

/* Top Bar Styles */
.top-bar {
    background-color: #f5f5f5;
    padding: 8px 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-info a:hover {
    color: #000;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icons a {
    color: #333;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #000;
}

.top-login {
    color: #333;
    text-decoration: none;
    padding-right: 1.5rem;
    border-right: 1px solid #ddd;
}

.top-login:hover {
    color: #000;
}

/* Header stilleri */
.header {
    background-color: #000;
    padding: 0.5rem;
    position: fixed;
    width: 100%;
    top: 36px;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    height: 70px;
    margin-right: 2rem;
    margin-left: 10px;
}

.logo-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu a:not(.login-btn) {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-menu a:not(.login-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-menu a:not(.login-btn):hover::after {
    width: 100%;
}

.nav-menu a:not(.login-btn):hover {
    color: #fff;
}

.login-btn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.login-btn:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.login-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.login-btn:hover i {
    transform: translateX(3px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobil Menü Stili */
@media (max-width: 1200px) {
    .logo {
        height: 60px;
    }
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }

    .logo {
        height: 55px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a:not(.login-btn) {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
        font-size: 1.1rem;
    }

    .login-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 1rem 2rem;
    }

    .desktop-only { display: none !important; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .header { top: 0; }
    /* Mobil header yüksekliği kompanzasyonu */
    .header { height: 56px; }
    .header { box-shadow: none; border-bottom: none; }
    .content-page, body.has-hero { margin-top: 0 !important; padding-top: 56px !important; background: #000; }
}

@media (max-width: 480px) {
    .logo {
        height: 45px;
        margin-left: 0;
    }
}

/* Sayfa içeriği için padding */
.content-page {
    padding-top: 126px;
}

/* Hero sayfası için özel stil */
.has-hero {
    padding-top: 0 !important;
}

/* Mobilde hero üstünün header altında kalmaması için body'ye üst boşluk ekle */
@media (max-width: 768px) {
    body.has-hero {
        padding-top: 60px !important; /* mobil header yüksekliği kadar */
    }
}