/*
Theme Name: İnşaat Teması
Theme URI: https://example.com/
Author: Onur
Description: Gold ve Antrasit renkli özel inşaat WordPress teması
Version: 1.0
*/

:root {
  --color-gold: linear-gradient(90deg, #d4af37, #f1c40f);
  --color-antrasit: #2f2f2f;
  --text-color: #fff;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--color-antrasit);
  color: var(--text-color);
}

.custom-logo {
  max-height: 50px;
  width: auto;
  height: auto;
}


a.button {
  background: var(--color-gold);
  padding: 10px 20px;
  border: none;
  color: #000;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  border-radius: 5px;
}

footer a:hover {
  color: gold;
}

.site-header {
  background-color: var(--color-antrasit);
  padding: 15px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.menu-left, .menu-right {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  flex: 0;
  text-align: center;
}

.menu-left ul,
.menu-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.menu-left li a,
.menu-right li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 10px;
}

.menu-left li a:hover,
.menu-right li a:hover {
  color: gold;
}

.iletisim-button {
  background: var(--color-gold);
  padding: 8px 16px;
  border-radius: 5px;
  margin-left: 20px;
  color: black;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .menu-left, .menu-right {
    display: none; /* Mobilde menüyü gizle veya hamburger menü ekle */
  }

  .logo {
    flex: 1;
    text-align: center;
  }
}

.prose h1, .prose-invert h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.prose h2, .prose-invert h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.prose p, .prose-invert p {
  margin-bottom: 1rem;
  line-height: 1.7;
}


header ul li a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  color: inherit;
  text-decoration: none;
}

header ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #facc15; /* Tailwind'de yellow-400 karşılığı */
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

header ul li a:hover::after {
  width: 100%;
}