
:root {
    --neon: #ff0000;
    --neon-orange: #ff8c00;
    --dark: #080808;
    --grey: #121212;
    --white: #ffffff;
    --font-head: 'Syncopate', sans-serif;
    --font-main: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-main);
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
    color: inherit !important;
}

/* --- NAVBAR & MOBİL MENÜ --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--neon);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2100;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-family: var(--font-head);
    font-size: 1.1rem;
    letter-spacing: -1px;
}

    .logo-text span {
        color: var(--neon);
        text-shadow: 0 0 10px var(--neon);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    transition: 0.4s;
}

    .nav-links a {
        font-weight: 500;
        font-size: 0.8rem;
        letter-spacing: 2px;
        color: #fff !important;
        transition: 0.3s;
    }

        .nav-links a:hover {
            color: var(--neon) !important;
            text-shadow: 0 0 10px var(--neon);
        }

.btn-call {
    background: var(--neon);
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255,0,0,0.5);
    font-weight: 700 !important;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 2100;
}

    .hamburger span {
        width: 30px;
        height: 3px;
        background: white;
        transition: 0.3s;
    }

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -110%;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        padding: 50px;
        z-index: 2050;
        transition: 0.5s;
    }

        .nav-links.active {
            right: 0;
        }

        .nav-links a {
            font-size: 1.5rem;
        }
}

/* --- HERO SLIDER --- */
.main-slider {
    height: 100vh;
    width: 100%;
    position: relative;
}

.heroSwiper {
    height: 100%;
}

    .heroSwiper .swiper-slide {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .heroSwiper video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.35);
    }

.slide-content {
    text-align: center;
    z-index: 10;
    padding: 0 5%;
    width: 100%;
}

    .slide-content h1 {
        font-family: var(--font-head);
        font-size: clamp(1.4rem, 4.5vw, 3.5rem);
        line-height: 1.2;
        margin-bottom: 20px;
        color: #fff;
    }

        .slide-content h1 span {
            color: var(--neon);
            text-shadow: 0 0 15px var(--neon);
        }

/* --- ŞUBELER --- */
.subeler-section {
    padding: 120px 8%;
    background: #000;
}

.sube-title {
    font-family: var(--font-head);
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 60px;
}

.sube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.sube-card {
    background: var(--grey);
    padding: 40px;
    border: 1px solid #222;
    text-align: center;
    border-radius: 8px;
    transition: 0.4s !important;
}

    .sube-card:hover {
        border-color: var(--neon) !important;
        transform: translateY(-10px) !important;
        box-shadow: 0 10px 30px rgba(255,0,0,0.1);
    }

    .sube-card i {
        font-size: 2.5rem;
        color: var(--neon);
        margin-bottom: 20px;
    }

.neon-link {
    color: var(--neon) !important;
    text-shadow: 0 0 8px var(--neon);
    font-weight: bold;
    letter-spacing: 1px;
}

@keyframes blink {
    0% {
        opacity: 1;
        text-shadow: 0 0 10px var(--neon);
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.blink-text {
    color: var(--neon);
    animation: blink 1.5s infinite;
    font-weight: bold;
    letter-spacing: 2px;
}

/* --- İCRAAT MENÜ (DÜZELTİLDİ) --- */
.menu-section {
    padding: 100px 0;
    background: var(--grey);
    overflow: hidden;
}

.menu-container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

.menuSwiper {
    padding-bottom: 70px !important;
}

.menu-item {
    background: #000;
    border: 1px solid #222;
    transition: 0.4s;
    border-radius: 8px;
    overflow: hidden;
    height: auto;
}

    .menu-item:hover {
        border-color: var(--neon);
        transform: translateY(-10px);
    }

.m-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.m-text {
    padding: 25px;
    text-align: center;
}

    .m-text h3 {
        font-family: var(--font-head);
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #fff;
    }

    .m-text p {
        opacity: 0.6;
        font-size: 0.9rem;
    }

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--neon) !important;
    opacity: 1;
    box-shadow: 0 0 10px var(--neon);
}

/* --- INSTAGRAM (LOGO GİRİŞLİ) --- */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.insta-box {
    height: 300px;
    position: relative;
    overflow: hidden;
    display: block;
    background: #000;
    border-radius: 8px;
}

    .insta-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s;
        filter: brightness(0.3) grayscale(1);
    }

    .insta-box::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 70%);
        z-index: 5;
        transition: 0.5s;
    }

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: 0.5s;
}

    .insta-overlay i {
        font-size: 3rem;
        color: #fff;
        transition: 0.5s;
    }

.insta-box:hover img {
    filter: brightness(1) grayscale(0);
    transform: scale(1.1);
}

.insta-box:hover::before {
    opacity: 0;
}

.insta-box:hover .insta-overlay i {
    opacity: 0;
    transform: scale(0.5);
}

/* --- FOOTER --- */
.footer {
    padding: 80px 8% 40px;
    border-top: 1px solid #222;
    background: #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-call {
    font-size: 1.5rem;
    color: #fff !important;
    font-weight: 700;
    transition: 0.3s;
}

    .footer-call:hover {
        color: var(--neon) !important;
        text-shadow: 0 0 10px var(--neon);
    }

.ozzy-orange {
    color: var(--neon-orange) !important;
    text-shadow: 0 0 8px var(--neon-orange);
    font-weight: bold;
}

.marquee {
    background: var(--neon);
    color: black;
    padding: 15px 0;
    font-family: var(--font-head);
    font-weight: 900;
    overflow: hidden;
}

.marquee-inner {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}
