/* Scope: sadece 100-yil sayfası */
.page100 { background: #fafafa; }

/* Header */
.header100 {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,250,250,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header100__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Desktop nav */
.nav100 {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav100 a {
  text-decoration: none;
  color: #111;
  opacity: 0.85;
  font-size: 14px;
}

.nav100 a:hover { opacity: 1; }

.nav100__cta {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
}

/* Mobile button */
.nav100__btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.nav100__btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #111;
  margin: 4px auto;
}

/* Drawer */
.nav100__drawer {
  display: none;
  padding: 14px 16px 18px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav100__drawer a {
  display: block;
  padding: 10px 6px;
  text-decoration: none;
  color: #111;
  opacity: 0.9;
}

.nav100__drawer .drawer-buy {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #111;
  color: #fff;
}

/* Toggle open */
.nav-open .nav100__drawer { display: block; }

/* Hero */
.hero100 {
  padding: 70px 0 24px;
  text-align: left;
}

.hero100 .eyebrow {
  display: inline-block;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  color: #888;
  margin-bottom: 14px;
}

.hero100 h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.hero100 p {
  color: #555;
  line-height: 1.7;
  margin: 0 0 18px;
}

/* Hero actions */
.hero100__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-buy {
  display: inline-block;
  padding: 14px 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
}

.btn-soft {
  display: inline-block;
  padding: 14px 18px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,0.12);
  text-decoration: none;
}

/* Gallery – görseller büyük gelmesin */
.gallery100 {
  margin: 34px 0 54px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

.gallery100__item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}

.gallery100__item--wide {
  grid-row: span 2;
}

.gallery100 img {
  width: 100%;
  height: 100%;
  max-height: 520px;         /* devleşmeyi keser */
  object-fit: cover;         /* premium crop */
  display: block;
}

/* Content */
.content100 {
  background: #fff;
  padding: 28px 26px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.05);
}

.content100 h2 { margin-top: 18px; }
.content100 h2:first-child { margin-top: 0; }
.content100 p, .content100 li { color: #555; line-height: 1.75; }

/* CTA bottom */
.cta100 { padding: 56px 0 90px; }

.cta100__box {
  background: linear-gradient(180deg, #111, #000);
  color: #fff;
  padding: 44px 26px;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.cta100__box p { color: rgba(255,255,255,0.75); }

.cta100__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cta100__actions a {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
}

.cta100__actions a:first-child {
  background: #fff;
  color: #000;
}

.cta100__buy {
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .nav100 { display: none; }
  .nav100__btn { display: inline-block; }
  .gallery100 { grid-template-columns: 1fr; }
  .gallery100__item--wide { grid-row: auto; }
  .gallery100 img { max-height: 420px; }
}
