/* Reset ve temel ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Navbar */
nav.navbar {
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 70px;
  position: relative;
  z-index: 1100;
}

nav .logo img {
  height: 60px;
}

nav .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav .nav-links li a {
  color: #d4af37; /* koyu gold */
  font-weight: 600;
  transition: color 0.3s ease;
}

nav .nav-links li a:hover {
  color: #fff;
}

/* Aktif menü link rengi (mavi) */
nav .nav-links li a.active {
  color: #007BFF;  /* mavi renk */
  font-weight: 700;
}

/* Dil değiştirme butonları */
nav .lang-buttons button {
  background: none;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 5px 10px;
  margin-left: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-weight: 600;
}

nav .lang-buttons button:hover {
  background: #d4af37;
  color: #000;
}

/* Hamburger Menü */
.hamburger {
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1200;
  width: 25px;
  display: none; /* default gizli */
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #d4af37;
  border-radius: 2px;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav .nav-links {
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    display: none;
  }

  nav .nav-links.show {
    display: flex;
  }

  nav .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  nav .lang-buttons {
    justify-content: center;
    margin-top: 10px;
    width: 100%;
    display: flex !important;
  }
}

/* Masaüstünde hamburger menüyü gizle (güvenlik amaçlı) */
@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }
}

/* Hero */
.hero {
  background: url('hero-bg.jpg') center center/cover no-repeat;
  text-align: center;
  padding: 150px 20px;
  color: #fff;
}

.hero.small-hero {
  padding: 80px 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #d4af37;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  color: #ddd;
  margin-bottom: 30px;
}

.hero a.button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #d4af37;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero a.button:hover {
  background-color: #b38e2e;
}

/* Hakkımızda */
.hakkimizda {
  padding: 60px 0;
}

.hakkimizda h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #d4af37;
}

.hakkimizda p {
  font-size: 18px;
  margin-bottom: 15px;
}

/* Hizmetlerimiz */
.hizmetlerimiz {
  padding: 60px 0;
}

.hizmetlerimiz h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #d4af37;
  text-align: center;
}

.hizmet-listesi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.hizmet {
  background: #f7f7f7;
  padding: 20px;
  border-left: 4px solid #d4af37;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.hizmet h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.hizmet p {
  font-size: 16px;
  color: #555;
}

/* Projelerimiz */
.projelerimiz {
  padding: 60px 0;
}

.projelerimiz h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #d4af37;
  text-align: center;
}

.proje {
  margin-bottom: 20px;
}

.proje h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.proje p {
  font-size: 16px;
  color: #555;
}

/* İletişim */
.iletisim, .contact {
  padding: 60px 0;
}

.iletisim h2, .contact h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #d4af37;
}

.iletisim p, .contact p {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #000;
  color: #d4af37;
  text-align: center;
  padding: 30px 20px;
}

footer a {
  color: #d4af37;
  text-decoration: underline;
}

footer a:hover {
  color: #fff;
}

/* İletişim Formu Düzenlemesi */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px; /* her input arasında boşluk */
  max-width: 600px;
  margin: auto;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  font-size: 16px;
  border-radius: 4px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 200px; /* mesaj kutusu daha büyük */
  resize: vertical; /* kullanıcı boyutunu ayarlayabilir */
}

.contact-form button {
  padding: 12px 25px;
  background-color: #d4af37;
  color: #000;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #b38e2e;
}
