/* Genel Ayarlar */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfdfd;
  color: #222;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 24px;
  font-weight: bold;
  color: #ff4d4d;
  text-decoration: none;
}

.logo a:hover {
  color: #e60000;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.logo img {
  height: 45px;       /* Logoyu dikey olarak küçültür */
  width: auto;        /* Oranlarını bozmadan genişliği otomatik ayarlar */
  object-fit: contain;
  display: block;
}


.nav ul li a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav ul li a:hover {
  color: #ff4d4d;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #ff4d4d, #ff8080);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
}

/* Hizmetler */
.hizmetler {
  padding: 60px 0;
  text-align: center;
}

.hizmet-kartlar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hizmet-kart {
  background: #fff8f8;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 280px;
  max-width: 300px;
  transition: box-shadow 0.3s ease;
}

.hizmet-kart:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hakkımızda */
.hakkimizda {
  background: #f7f7f7;
  padding: 60px 0;
  text-align: center;
}

/* Blog */
.blog {
  padding: 60px 0;
  text-align: center;
}

.blog-item {
  background: #fff0f0;
  margin: 20px auto;
  padding: 20px;
  max-width: 600px;
  border-radius: 10px;
}

/* İletişim */
.iletisim {
  background: #fff0f0;
  padding: 60px 0;
}

.iletisim-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.iletisim-form,
.iletisim-info {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex: 1 1 350px;
}

.iletisim-form h2,
.iletisim-info h3 {
  margin-bottom: 20px;
  color: #ff4d4d;
}

.iletisim input,
.iletisim textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
}

.iletisim button {
  background: #ff4d4d;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.iletisim button:hover {
  background: #e60000;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo,
.footer-links,
.footer-social {
  flex: 1 1 200px;
}

.footer-logo h3 {
  color: #ff4d4d;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-social a {
  color: #ff8080;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #bbb;
}
/* Mobil Uyumluluk */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  header h1 {
    font-size: 2rem;
  }

  .hizmetler-grid,
  .iletisim-grid,
  .footer-grid {
    flex-direction: column;
    align-items: center;
  }

  .iletisim-form,
  .iletisim-info,
  .footer-logo,
  .footer-links,
  .footer-social {
    width: 100%;
    text-align: center;
  }

  .iletisim-form form,
  .footer-links ul {
    align-items: center;
  }

  .iletisim input,
  .iletisim textarea {
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

.blog-header {
  background: linear-gradient(to right, #ff4d4d, #ff9999);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 0 0 40px 40px;
}

.blog-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.blog-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card h2 {
  color: #ff4d4d;
  margin-bottom: 10px;
}

.blog-card .blog-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.blog-card a {
  color: #ff4d4d;
  font-weight: bold;
  text-decoration: none;
}

.blog-card a:hover {
  text-decoration: underline;
}

.fiyatlar {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.fiyat-kartlar {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.fiyat-kart {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fiyat-kart:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.fiyat-kart h3 {
  color: #ff4d4d;
  margin-bottom: 10px;
}

.fiyat {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
}

.fiyat-kart ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.fiyat-kart ul li {
  margin-bottom: 10px;
  color: #555;
}

.fiyat-kart .btn {
  background: #ff4d4d;
  color: #fff;
  padding: 10px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.fiyat-kart .btn:hover {
  background: #e03e3e;
}

.sss {
  background-color: #fdfdfd;
  padding: 80px 20px;
}

.sss-listesi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.sss-kart {
  background-color: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.sss-kart:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.sss-kart h3 {
  font-size: 18px;
  color: #ff4d4d;
  margin-bottom: 10px;
}

.sss-kart p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .logo img {
    height: 45px;
  }

}

.language-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
}

.language-switcher button {
  padding: 6px 12px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.language-switcher button:hover {
  background-color: #ddd;
}


