* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
}

header {
  background: #000;
  color: #ff7b00;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

header .logo {
  font-size: 1.3rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #ffb84d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #fff;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('https://via.placeholder.com/1200x600?text=Fatih+Bicakcilik');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.5rem;
  color: #ff7b00;
}

.hero p {
  margin-top: 10px;
  color: #ddd;
}

.btn {
  background: #ff7b00;
  color: #000;
  padding: 10px 25px;
  margin-top: 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #ffa733;
}

section {
  padding: 80px 20px;
  text-align: center;
}

.products .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.products .item {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.products .item:hover {
  transform: scale(1.03);
}

.products img {
  width: 100%;
  border-radius: 5px;
}

.products span {
  display: block;
  color: #ff7b00;
  margin-top: 8px;
  font-weight: bold;
}

.about, .contact {
  background: #000;
}

.contact a.map {
  display: inline-block;
  background: #ff7b00;
  color: #000;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 10px;
  text-decoration: none;
}

footer {
  background: #111;
  padding: 20px;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 0;
    display: none;
    padding: 15px;
  }
}
