/*Start About-Us*/

/* ---- Bölüm arka planları ---- */
.about-us {
  background-color: #ffffff;
  padding: 80px 60px;
}

.reservation {
  background-color: #faf7f2;
  padding: 60px;
}

/* Çift-tek sıra arka plan değişimi */
.reservation:nth-of-type(even) {
  background-color: #ffffff;
}

/* ---- Text alanı ---- */
.about-us .text,
.reservation .text {
  flex: 50%;
  padding: 20px 56px 0 0;
  color: var(--color-tertiary);
}

/* Hikayemiz başlığı — büyük, ama abartısız */
.about-us .text h3 {
  font-size: 28px;
  letter-spacing: 5px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

/* Yemek adları — daha okunaklı boyut */
.reservation .text h3 {
  font-size: 20px;
  letter-spacing: 2.5px;
  color: var(--color-primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Açıklama paragrafları */
.about-us .text p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 18px;
}

.reservation .text p {
  font-size: 15px;
  line-height: 26px;
  color: #666;
}

.about-us .text .fa-asterisk,
.reservation .text .fa-asterisk {
  color: #c9a96e;
  font-size: 11px;
  margin: 10px 0 14px;
}

/* ---- Resim kapsayıcılar ---- */
.about-us .image-container,
.reservation .image-container {
  flex: 50%;
  gap: 10px;
  align-items: stretch;
}

.about-us .image,
.reservation .image {
  flex: 1;
  margin-left: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 3px;
}

/* Hakkımızda — dikey fotoğraflar */
.about-us .image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 3px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* Yemek bölümleri — kare-benzeri fotoğraflar */
.reservation .image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 3px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.11);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.about-us .image:hover img,
.reservation .image:hover img {
  transform: scale(1.03);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

/*End About-Us*/

/*Start Recipes*/
.recipes .image {
  height: 350px;
  background: url("../img/bg/three-col-1.jpg") fixed center;
  background-size: cover;
}
/*End Recipes*/
