/* =========================================================
   BASE — reset, tipografi, container
   ========================================================= */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Fixed header'ın altına başlık girmesin */
  scroll-padding-top: calc(var(--header-top) + var(--header-h));
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-white);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 32px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Mobil menü açıkken sayfa kaymasın */
body.is-locked { overflow: hidden; }

img,
svg,
picture { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

p { margin: 0; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--c-light);
  outline-offset: 3px;
}

/* Container: tüm kırılımlarda marj değişkeninden gelir, max-width yok */
.container {
  width: var(--container);
  margin-inline: auto;
}

/* Section başlıkları (ABOUT / COVERS / RIG) */
.section-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--fs-section);
  line-height: normal;
  color: var(--c-light);
  margin: 0;
}

/* Alt başlıklar (BANDS / DESIGN / GUITARS ...) */
.sub-title {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

/* Caps gövde metni (About/Rig paragrafları) */
.text-caps { text-transform: uppercase; }

/* Altı çizili inline linkler (Spotify / Learn more) */
.link-inline {
  text-decoration: underline;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  transition: opacity var(--t-fast);
}
.link-inline:hover { opacity: 0.7; }

/* Görsel yardımcıları */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
