/* HERO BÖLÜMÜ */
.hero {
  padding: 30px 0 30px;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  flex: 1;
}

/* Tüm başlıklar için özel font */
.hero-title-en,
.hero-title-tr,
.about-title,
.contact-title {
  font-family: 'Playfair Display', serif;
}

.hero-title-en {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-title-tr {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 28px;
}

/* BUTON */
.hero-btn {
  display: inline-block;
  padding: 12px 40px;
  background-color: #e2c29b;
  color: #6f4a3c;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-btn:hover {
  background-color: #d2af85;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

/* HERO RESMİ */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image {
  max-width: 280px;
  width: 100%;
}

/* HAKKIMIZDA BÖLÜMÜ */
.about {
  padding: 0 0 80px;
}

.about-card {
  background-color: #f7eadc;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

.about-title {
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 700;
}

.about-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-item {
  padding: 14px 12px;
  border-radius: 10px;
  background-color: #f4e7d8;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.about-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 700;
}

.about-item p {
  font-size: 14px;
  line-height: 1.5;
}

.about-item:hover {
  transform: translateY(-4px);
  background-color: #f1ddc3;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-right {
    justify-content: center;
  }

  .hero-image {
    max-width: 220px;
  }

  .about-card {
    padding: 24px 18px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-item {
    text-align: center;
  }
}

/* İLETİŞİM BÖLÜMÜ */
.contact {
  padding: 30px 0 30px;
}

.contact-title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.contact-intro {
  font-size: 15px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  background-color: #f7eadc;
  padding: 18px 16px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}
.contact-card a,
.contact-card button {
  margin-top: auto;   
  align-self: flex-start;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.contact-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.contact-btn {
  display: inline-block;
  padding: 8px 14px;
  background-color: #e2c29b;
  color: #6f4a3c;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.contact-btn:hover {
  background-color: #d2af85;
  transform: translateY(-2px);
}

.full-width {
  grid-column: span 4;
  text-align: center;
}

/* MOBİL RESPONSIVE */
@media only screen and (min-width: 200px) and (max-width: 767px){
  .contact-grid {
      display: flex !important;
      gap: 20px;
      flex-direction: column;
      align-content: center;
      align-items: stretch;
  }

  .full-width {
    grid-column: span 1;
  }
}
