﻿:root {
    --primary-color: #007eff;
    --primary-hover: turquoise;
    --secondary-color: #666666;
    --text-color: #000000;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #000000;
    --border-color: #e5e7eb;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --border-radius-pill: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
}

    body.menu-open {
        overflow: hidden;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

html {
    scroll-behavior: smooth;
}

/* ================================== */
/*       YENİ FLOATING NAVBAR         */
/* ================================== */

/* 1. DIŞ SARMALAYICI: Sayfanın üstüne sabitlenir ve içindeki navbar'ı ortalar */
.autworks-navbar-wrapper {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
    pointer-events: none;
}

/* 2. İÇ KAPSÜL: Gördüğümüz stil sahibi navbar */
/* DEĞİŞEN KISIM BURASI */
.autworks-navbar {
    width: 100%;
    max-width: 1000px;
    /* YARI ŞEFFAF ARKA PLAN */
    background: rgba(255, 255, 255, 0.8);
    /* ARKAYI BULANIKLAŞTIRMA EFEKTİ (FROSTED GLASS) */
    -webkit-backdrop-filter: blur(12px); /* Safari için */
    backdrop-filter: blur(2px);
    border-radius: var(--border-radius-pill);
    /* DAHA İNCE BİR GÖLGE VE ÇOK HAFİF BİR DIŞ ÇİZGİ */
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9), /* İçten hafif beyaz çizgi */
    0 8px 20px rgba(0, 0, 0, 0.07); /* Daha yumuşak gölge */

    padding: 0.5rem 1rem;
    pointer-events: auto;
    border: none; /* Eski border'ı kaldırıyoruz */
}

.autworks-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
}

.autworks-logo {
    font-size: clamp(1.3rem, 2vw, 1.6rem); /* Değerler düşürüldü */
    font-weight: 700;
    color: var(--text-color);
    margin-left: 20px;
    display: flex;
    justify-content: center;
}

.autworks-nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.autworks-nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}

    .autworks-nav-menu a {
        text-decoration: none;
        color: var(--text-light);
        font-weight: 500;
        transition: var(--transition);
        position: relative;
    }

        .autworks-nav-menu a:hover {
            color: var(--primary-color);
        }

.autworks-nav-buttons {
    display: flex;
    gap: 0.75rem;
}


/* ================================== */
/*        TAM SAYFA MOBİL MENÜ        */
/* ================================== */

.autworks-nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .autworks-nav-mobile.active {
        opacity: 1;
        visibility: visible;
    }

.autworks-nav-menu-mobile {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0;
}

    .autworks-nav-menu-mobile a {
        color: var(--text-color);
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 600;
    }

.autworks-nav-buttons-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 200px;
}

    .autworks-nav-buttons-mobile .autworks-btn {
        width: 100%;
    }

/* ================================== */
/*      HAMBURGER BUTON & ANİMASYON   */
/* ================================== */

.autworks-mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: none;
    flex-direction: column;
    justify-content: space-around;
}

    .autworks-mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text-color);
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    .autworks-mobile-menu-btn.active .top-bar {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .autworks-mobile-menu-btn.active .middle-bar {
        opacity: 0;
    }

    .autworks-mobile-menu-btn.active .bottom-bar {
        transform: rotate(-45deg) translate(5px, -6px);
    }


/* ================================== */
/*          BUTON STİLLERİ            */
/* ================================== */

.autworks-btn, .btn {
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.autworks-btn-secondary, .btn-secondary {
    background-color: var(--bg-dark);
    color: white;
}

    .autworks-btn-secondary:hover, .btn-secondary:hover {
        background: #333;
        color: white;
    }

.autworks-btn-primary, .btn-primary {
    background: var(--primary-color);
    color: white;
}

    .autworks-btn-primary:hover, .btn-primary:hover {
        background: var(--primary-hover);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(27, 23, 255, 0.3);
    }

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ================================== */
/*          FOOTER STİLLERİ           */
/* ================================== */

.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section img {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

        .footer-section ul li a {
            color: #d1d5db;
            text-decoration: none;
            transition: var(--transition);
        }

            .footer-section ul li a:hover {
                color: var(--primary-color);
            }

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

    .social-link:hover {
        background: var(--primary-color);
        transform: translateY(-2px);
    }

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* ================================== */
/*        RESPONSIVE (MOBİL)          */
/* ================================== */

@media (max-width: 768px) {
    .autworks-navbar-wrapper {
        top: 0.75rem;
        padding: 0 0.75rem;
    }

    .autworks-nav-desktop {
        display: none;
    }

    .autworks-nav-buttons{
        display: none
    }

    .autworks-mobile-menu-btn {
        display: flex;
    }
}

```
