* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    font-size: 18px;
}

/* HEADER */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.logo {
    color: gold;
    font-size: 26px;
    font-weight: bold;
}

/* MENÜ */
nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

nav a:hover {
    color: gold;
    transform: scale(1.1);
}

/* HERO */
.hero {
    height: 100vh;
    background: url('images/banner.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content h1 {
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 4px;
}

/* GENEL */
section {
    padding: 120px 20px;
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: auto;
}

h2 {
    color: gold;
    margin-bottom: 40px;
    font-size: 36px;
}

/* HAKKIMIZDA */
.about p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.7;
}

/* ÜRÜNLER */
.products {
    background: #111;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    background: #000;
    border: 1px solid gold;
    padding: 35px;
    width: 260px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: #fff;
}

.card h3 {
    color: gold;
    margin-bottom: 15px;
    font-size: 20px;
}

.card p {
    color: #ccc;
    font-size: 15px;
}

/* GALERİ */
.gallery-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-grid img {
    width: 320px;
    height: 200px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* İLETİŞİM */
.contact {
    background: #111;
}

.contact p {
    font-size: 18px;
    margin: 10px 0;
}