/* Hizmetler Sayfası */
.services-page {
    background: #111;
    color: #eee;
    padding: 80px 20px;
}

.services h2 {
    color: gold;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}
.services h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: gold;
    margin: 10px auto 0;
    border-radius: 2px;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #ccc;
    font-size: 16px;
    line-height: 1.7;
}

/* Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Kart */
.service-card {
    background: #1a1a1a;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 28px rgba(255,215,0,0.25);
    border-color: gold;
}

/* Görsel */
.service-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-image img {
    transform: scale(1.1);
}
.service-image i {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 28px;
    color: gold;
    background: rgba(0,0,0,0.6);
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.service-card:hover .service-image i {
    background: gold;
    color: #000;
}

/* İçerik */
.service-content {
    padding: 20px;
    text-align: center;
}
.service-content h3 {
    color: gold;
    font-size: 20px;
    margin-bottom: 10px;
}
.service-content p {
    font-size: 15px;
    color: #bbb;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .services-page { padding: 60px 15px; }
    .services-intro { margin-bottom: 40px; }
    .service-image { height: 150px; }
}

/* Instagram Feed (başlık) */
.instagram-feed {
  padding: 80px 20px;
  background: #111;
  text-align: center;
}
.instagram-feed h2 {
  color: gold;
  margin-bottom: 40px;
  position: relative;
}
.instagram-feed h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: gold;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Grid */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Kart çerçevesi */
.ig-embed {
  background: #1a1a1a;
  border: 1px solid rgba(255,215,0,0.18);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ig-embed:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(255,215,0,0.25);
  border-color: gold;
}

/* Instagram iframe boyutu (Instagram sabit yükseklik ister) */
.ig-embed iframe {
  display: block;
  width: 100%;
  height: 620px;         /* Tipik post/reel için güvenli yükseklik */
  border: 0;
}

/* Daha dar ekranlarda biraz kısaltalım */
@media (max-width: 768px) {
  .ig-embed iframe { height: 560px; }
}
@media (max-width: 420px) {
  .ig-embed iframe { height: 520px; }
}
