/* ===================================
   LogoMotto - Global Header Styles
   Tüm sayfalarda ortak kullanılan header stilleri
   =================================== */

/* Navigation Bar */
nav {
    background: white;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo Container */
.logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 45px;
}

/* Trademark Symbol */
.logo::after {
    content: '®';
    font-size: 16px;
    font-weight: 500;
    color: #f59e0b;
    position: relative;
    top: -8px;
    margin-left: 3px;
    font-family: 'Poppins', sans-serif;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #1e1b4b;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4f46e5;
}

/* CTA Button */
.nav-cta {
    background: #4f46e5;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e1b4b;
    border-radius: 3px;
    transition: 0.3s;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-size: 24px;
    font-weight: 600;
    color: #1e1b4b;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: #4f46e5;
}

/* Responsive - Tablet & Mobile */
@media (max-width: 768px) {
    nav {
        padding: 15px 5%;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .logo img {
        height: 38px;
    }

    .logo::after {
        font-size: 14px;
        top: -6px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 32px;
    }

    .logo::after {
        font-size: 12px;
        top: -5px;
    }
}
