* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #ffffff;
  color: #333;
}
/* Sayfa genel yapısı için wrapper */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Sayfa içeriği (footer dışındaki alanlar) */
.page-wrapper > main,
.page-wrapper > .form-container,
.page-wrapper > .job-list,
.page-wrapper > .filter-bar {
  flex: 1;
}

/* Navbar */
.navbar {
  background-color: #F75D34;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
}

.navbar-right a {
  margin-left: 10px;
  text-decoration: none;
  color: white;
  background-color: #D44C2C;
  padding: 8px 15px;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.navbar-right a:hover {
  background-color: #b53d24;
}

/* Ana içerik */
.job-list {
  padding: 20px;
}

.section-title {
  margin-bottom: 20px;
  font-size: 1.5rem;
  text-align: center;
}

.job-card {
  background-color: #fde7e0; /* Eski: white */
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: background-color 0.3s;
}

.job-card:hover {
  background-color: #fccec3; /* Hover rengi: biraz daha koyu */
}

.job-card h3 {
  margin-bottom: 5px;
}

/* Mobil uyum */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-right {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .navbar-right a {
    margin-left: 5px;
  }
}

.form-container {
  max-width: 500px;
  margin: 30px auto;
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-container input,
.form-container textarea,
.form-container select {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 0.95rem;
}

.form-container button {
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #F75D34;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-container button:hover {
  background-color: #d94b28;
}

/* Filtreleme alanı */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 15px 10px;
  background-color: #fff3ef;
  border-radius: 8px;
  max-width: 1000px;
  margin: 20px auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.filter-bar select,
.filter-bar input {
  padding: 8px 12px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  min-width: 130px;
}

.filter-bar input[type="date"]::placeholder {
  color: #aaa;
}

.filter-bar button {
  padding: 8px 14px;
  font-size: 0.95rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.button-primary {
  background-color: #F75D34;
  color: white;
  transition: background-color 0.3s;
}

.button-primary:hover {
  background-color: #d94b28;
}

.button {
  background-color: #ddd;
  color: #333;
}

.button:hover {
  background-color: #bbb;
}

/* Mobil uyumlu hale getir */
@media (max-width: 600px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-bar select,
  .filter-bar input,
  .filter-bar button {
    width: 100%;
  }
}


/* Genel buton stili */
.button {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Turuncu birincil buton */
.button-primary {
  background-color: #F75D34;
  color: white;
}

.button-primary:hover {
  background-color: #D44C2C;
}

/* Kırmızı (silme) buton */
.button-danger {
  background-color: #dc3545;
  color: white;
}

.button-danger:hover {
  background-color: #b52a37;
}

/* Butonlar arası boşluk */
.button + .button {
  margin-left: 10px;
}

/* Mobilde tam genişlik */
@media (max-width: 600px) {
  .button {
    width: 100%;
    margin-bottom: 10px;
  }
}

.logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.logo-img {
  height: 56px;
  max-height: 100%;
  width: auto;
  display: block;
}


@media (max-width: 600px) {
  .logo {
    height: 30px;
  }

  .logo-img {
    height: 40px;
  }
}

/* === FOOTER STİLİ === */
.site-footer {
  background-color: #1e1e1e;
  color: #fff;
  padding: 30px 20px 15px;
  font-size: 14px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-left,
.footer-mid,
.footer-right {
  flex: 1;
  min-width: 220px;
}

.footer-left .footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #F75D34;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 13px;
  color: #ccc;
}

/* === İLETİŞİM BLOĞU === */
.footer-contact {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.contact-icon {
  width: 28px;
  height: 28px;
  filter: invert(100%);
}

.contact-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.contact-label {
  font-weight: bold;
  color: #fff;
  font-size: 14px;
}

.contact-email {
  font-size: 13px;
  color: #ccc;
  word-break: break-word;
}

/* === RESPONSIVE (Media Query) === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-mid,
  .footer-right {
    min-width: 100%;
    margin-bottom: 15px;
  }

  .footer-logo {
    margin: 0 auto 10px;
  }

  .footer-mid {
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

/* Giriş formundaki input ve butonlar için */
.form-container form input,
.form-container form button {
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  margin-bottom: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Buton rengi için (isteğe bağlı) */
.form-container form button {
  background-color: #f75d34;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-container form button:hover {
  background-color: #e94e28;
}

.form-bottom-link {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
}

.form-bottom-link a {
  color: #f75d34;
  text-decoration: none;
}

.form-bottom-link a:hover {
  text-decoration: underline;
}
