@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}

table {
    width: 100%;
    border-collapse: collapse; 
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

/* Tablodaki tüm hücreler */
table th, table td {
    border: 1px solid #333; /* Kenarlıklar görünür */
    padding: 10px;
    text-align: left;
}

/* Başlık satırı */
table th {
    background-color: #f2f2f2; /* Açık gri başlık */
}

/* Alternatif satır rengi */
table tr:nth-child(even) {
    background-color: #fff; /* Hafif gri arka plan */
}

/* Hover efekti (opsiyonel ama profesyonel görünür) */
table tr:hover {
    background-color: #e6f7ff;
}

.form-control:focus {
  outline: 0;
  border: 1px solid #ced4da;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #333;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

/* p {
  padding: 0;
  margin: 0;
} */

.btn-check:focus + .btn,
.btn:focus {
  box-shadow: none !important;
}

.container-xxl {
  max-width: 1000px;
}

.header-main {
  border-bottom: 1px solid #dbdbdb;
}

.blog-detail h2 {
    font-size: 28px;
}

section h2 {
  font-weight: bold;
  color: #b69d74;
}

.header-top {
  color: #fff;
}

.contact-info a {
  font-size: 15px;
}

.services-section h5 {
  font-size: 18px;
}

.bg-carousel {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.3)
    ),
    url("../img/sliderb.jpeg");
  background-size: cover;
  background-position: center;
  height: 75vh;
  position: relative;
  background-attachment: fixed;
}

.carousel-caption {
  top: -5%;
  z-index: 2;
}

.carousel-caption h1,
.carousel-caption p {
  max-width: 600px;
  white-space: normal;
  font-style: italic;
}

.carousel-about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #32aa27;
  color: #fff;
  min-height: 50px;
  width: 180px;
  text-decoration: none;
}

.carousel-about-button:hover {
  background: #32aa27;
  color: #fff;
}

.additional-info {
  position: absolute;
  right: 5%;
  bottom: -54%;
}

.card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

footer a {
  text-decoration: none;
}

.btn-primary {
  background-color: #b69d74;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.about-us-section img {
  max-height: 400px;
  object-fit: cover;
}

.blog-section .card-title {
  color: #b69d74;
  font-weight: bold;
}

.blog-card a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.blog-card img {
  max-height: 100%;
  object-fit: cover;
}

.blog-image img {
  max-width: 100%;
  height: auto;
}

.blog-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.blog-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.blog-image-container {
  position: relative;
}

.blog-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 1;
  text-align: center;
  padding: 20px;
}

.blog-overlay-text h5 {
  margin: 0;
  padding: 0;
  font-size: 40px;
  font-weight: bold;
}

.blog-card:hover .card-title {
  color: #32aa27;
}

.blog-date {
  padding: 1rem 1rem;
  font-size: 0.9rem;
  text-align: left;
}

footer .copyright {
  padding: 25px 0;
  font-size: 14px;
}

@media (max-width: 991px) {
  .additional-info {
    display: none;
  }
}

@media (max-width: 767px) {
  .team-section img,
  .about-us-section img {
    display: flex;
    margin: 0 auto;
  }
  .bg-carousel {
    background-attachment: inherit;
  }
}

@media (max-width: 454px) {
  .carousel-about-button {
    padding: 0;
    width: 180px;
  }
}
