/* ====== TEMEL SAYFA YAPISI (sticky footer için) ====== */
html, body {
  height: 100%;
}

/* paragrafın altında boşluk ve ortalama */
.intro {
  max-width: 780px;
  margin: 0 auto 16px;   /* altta boşluk */
  line-height: 1.6;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  margin: 0;
  /* sticky footer: sayfayı kolona çeviriyoruz */
  display: flex;
  flex-direction: column;
  text-align: center;
}

/* ====== HEADER ====== */
header {
  background: #222;
  color: white;
  padding: 2rem 0;
}

/* ====== ANA İÇERİK ====== */
main {
  flex: 1;                /* içerik genişlesin, footer’ı alta itsin */
  margin: 3rem 0;
  font-size: 1.2rem;
  padding: 0 1rem 24px;   /* altta nefes payı */
}

/* ====== BUTONLAR ====== */
.shop-button {
  display: inline-block;
  background: #ff6b6b;
  color: white;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2rem;
  margin-top: 2rem;
  transition: background 0.3s;
}

.shop-button:hover {
  background: #ff4040;
}

/* Alt butonlar için satır düzeni ve boşluk */
/* butonlar satır halinde, ortalı ve sarmalanabilir */
.buttons-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;   /* footer’a yaklaşmasın */
}

/* ====== FOOTER (sabit değil) ====== */
footer {
  background: #222;       /* koyu zemin */
  color: #aaa;            /* soft gri yazı */
  padding: 4px 0;         /* çok ince üst–alt boşluk */
  font-size: 0.75rem;     /* küçük yazı */
  text-align: center;
  width: 100%;
  margin-top: auto;       /* sayfa az olsa bile en alta it */
  border-top: 1px solid #333; /* çok ince ayırıcı çizgi */
}

/* ====== LOGO (yuvarlak) ====== */
.logo {
  width: 160px;
  height: 160px;        /* kare kutu */
  object-fit: cover;    /* resmi taşırmadan kırpar */
  border-radius: 50%;   /* daire */
  border: 3px solid white; /* opsiyonel çerçeve */
  margin-bottom: 12px;
}

/* Header altındaki (veya istediğin yerdeki) sosyal ikon bloğu */
.social-icons {
  margin-top: 15px;
}

/* mobilde butonlar tam genişliğe yakın olsun */
@media (max-width: 640px) {
  .shop-button {
    display: block;
    width: 90%;
    max-width: 420px;
    margin: 8px auto 0;
    text-align: center;
  }
}

/* iPhone çentik/safe-area için ekstra rahatlık (opsiyonel ama faydalı) */
@supports (padding: env(safe-area-inset-bottom)) {
  main { padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
  footer { padding-bottom: calc(1rem + env(safe-area-inset-bottom)); }
}
