/* Sadece .hero kısmını bulup bununla değiştirmen yeterli ama garanti olsun diye tam kodu veriyorum */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #e67e22;
}
.logo span { color: #2ecc71; margin-left: 5px; }

.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: #333; font-weight: 500; }

/* DÜZELTİLEN KAPAK KISMI */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('Photos/hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 { font-size: 3rem; margin-bottom: 20px; }

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.products { padding: 100px 10%; text-align: center; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Bu satır fotoğrafın kutuya tam oturmasını sağlar */
    border-radius: 8px;
}

.contact { padding: 80px 10%; background: #f9f9f9; text-align: center; }
#contactForm { max-width: 600px; margin: 40px auto; display: flex; flex-direction: column; }
#contactForm input, #contactForm textarea { padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; }

footer { padding: 40px; text-align: center; background: #333; color: #fff; }
