﻿@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

:root {
    --neon-blue: #00f3ff;
    --neon-purple: #bc13fe;
    --bg-dark: #05070a;
    --glass-bg: rgba(255, 255, 255, 0.05);
}

body {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 243, 255, 0.1) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(188, 19, 254, 0.1) 0%, transparent 20%);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navbar */
.navbar {
    background: rgba(5, 7, 10, 0.8) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.navbar-brand {
    color: var(--neon-blue) !important;
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-link {
    color: #fff !important;
    transition: 0.3s;
}

    .nav-link:hover {
        color: var(--neon-blue) !important;
        text-shadow: 0 0 8px var(--neon-blue);
    }

/* Hero Section */
.hero-section {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s infinite alternate;
}

/* Product Cards */
.product-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: 0.4s;
    backdrop-filter: blur(5px);
    margin-bottom: 30px;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
        border-color: var(--neon-blue);
    }

.product-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.btn-glow {
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 10px 25px;
    font-family: 'Orbitron', sans-serif;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

    .btn-glow:hover {
        background: var(--neon-blue);
        color: #000;
        box-shadow: 0 0 20px var(--neon-blue);
    }

.btn-buy {
    background: #ff6000; /* Hepsiburada Turuncusu */
    border: none;
    color: white;
    width: 100%;
    padding: 10px;
    font-weight: bold;
    border-radius: 5px;
}

    .btn-buy:hover {
        background: #e55600;
        color: white;
    }

/* Footer & Icons */
.footer-social i {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #fff;
    transition: 0.3s;
}

    .footer-social i:hover {
        color: var(--neon-blue);
        transform: scale(1.2);
    }

@keyframes glow {
    from {
        text-shadow: 0 0 10px var(--neon-blue);
    }

    to {
        text-shadow: 0 0 20px var(--neon-purple);
    }
}
