/* Sayfa genel ayarları */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000;
  font-family: 'Segoe UI', sans-serif;
}

/* Görsel tam ekran */
.full-screen-image {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
}

/* Görsel üzerine yazı */
.hero-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.hero-text {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #000;
  font-size: 1.2em;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10px 15px;
  border-radius: 8px;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Tam ekran yüksekliği */
  background-image: url('main-banner.png'); /* Fotoğrafın yolu */
  background-size: cover;
  background-position: center;
}

.welcome-overlay {
  position: absolute;
  top: 40px;
  right: 40px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5); /* İsteğe bağlı arka plan */
  padding: 20px;
  border-radius: 8px;
  max-width: 300px;
  text-align: left;
  font-size: 1.1em;
  line-height: 1.4;
}

/* Sosyal medya ikonları */
.social-footer {
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  font-size: 14px;
  color: #333;
}

.social-footer i {
  margin: 0 10px;
  color: #333;
  transition: transform 0.3s ease;
}

.social-footer i:hover {
  transform: scale(1.2);
  color: #000;
}

/* Telif hakkı */
.copyright-footer {
  text-align: center;
  font-size: 12px;
  color: #666;
  padding: 15px;
  background-color: #f9f9f9;
  border-top: 1px solid #ddd;
}
.hero-text-below {
  text-align: center;
  background-color: #ffffff;
  padding: 30px 20px;
  font-size: 1.2em;
  color: #000;
}

.welcome-text {
  font-weight: bold;
  margin-bottom: 10px;
}

.design-button {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1em;
  border: 2px solid #000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Hover efekti */
.design-button:hover {
  transform: scale(1.05);
  background-color: #f0f0f0;
}

@media only screen and (max-width: 768px) {
  .cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }

  .button-overlay {
    top: 60%;
  }
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
}

/* Görsel konteyneri */
.hero-container {
  position: relative;
  width: 100%;
  height: 100dvh; /* Yeni CSS özelliği: dinamik viewport yüksekliği */
  overflow: hidden;
}

/* Görsel */
.full-screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Buton konumu */
.button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Buton stili */
.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #ffffff;
  color: #000000;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Bölüm kapsayıcısı */
.produkte-section {
  padding: 40px;
  background-color: #000; /* Arka plan siyahsa netlik sağlar */
}

/* Başlık */
.produkte-heading {
  font-size: 3em;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: left;
}

/* Tıklanabilir başlık bağlantısı */
.produkte-link {
  font-size: 1.5em;       /* Yazı boyutunu büyütür */
  font-weight: 700;       /* Daha güçlü bold görünüm */
  color: #ffffff;             /* Beyaz renk */
  text-decoration: none;      /* Alt çizgi kaldırıldı */
}

.produkte-link:hover {
  color: #ccc;                 /* Hover'da açık gri */
}

/* Paragraf metni */
.produkte-text {
  font-size: 1em;
  line-height: 1.6;
  color: #ccc;
  text-align: left;
}

.cta-button:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}
.hero-container {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.full-screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-overlay {
  position: absolute;
  bottom: 60px;
  left: 40px;
  color: #fff;
  max-width: 600px;
}

.text-overlay h1,
.text-overlay h2,
.text-overlay p {
  margin: 10px 0;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background-color: #ffffff;
  color: #000000;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}
.category-section {
  padding: 60px 20px;
  background-color: #000;
  color: #fff;
  font-family: 'Arial', sans-serif;
}

.category-title {
  text-align: left;
  font-size: 2em;
  margin-bottom: 40px;
  color: #fff;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.category-item {
  display: flex;
  flex-direction: column;
  background-color: #111;
  border-radius: 12px;
  overflow: hidden;
  max-width: 48%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.category-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.category-text {
  padding: 20px;
}

.category-text h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #ffffff;
}

.category-text p {
  font-size: 1em;
  line-height: 1.6;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .category-grid {
    flex-direction: column;
  }

  .category-item {
    max-width: 100%;
  }
}

.kontakt-form-section {
  background-color: #000;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  margin: auto;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.kontakt-form-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: none;
  background-color: #f0f0f0;
}

form button {
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #ffffff;
  color: #000000;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #e0e0e0;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f2f3f5; /* Açık gri */
  font-family: sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000; /* Tam siyah arka plan */
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}
