/* Punch — ortak marka stilleri */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Figtree:wght@400;500;600;700&family=Lilita+One&display=swap");

:root {
  --punch-navy: #1f3c8b;
  --punch-navy-deep: #282d65;
  --punch-ink: #0e1430;
  --punch-white: #ffffff;
  --punch-cream: #f7f4ee;
  --punch-lemon: #f5d400;
  --punch-orange: #ff7a1a;
  --punch-strawberry: #f07a8a;
  --punch-lime: #8fd400;
  --punch-grape: #b8a0d4;
  --punch-peach: #f4a48d;
  --punch-pineapple: #f0e07a;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Figtree", sans-serif;
  --font-script: "Lilita One", sans-serif;
  --header-h: 9.5rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--punch-ink);
  background: var(--punch-cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.display-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.92;
}

.script-accent {
  font-family: var(--font-script);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 0.35s var(--ease-out);
}

.site-header.is-solid {
  background: rgba(15, 20, 48, 0.55);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  position: absolute;
}

.header-logo {
  pointer-events: auto;
  width: clamp(3.2rem, 7vw, 7.6rem);
  height: clamp(3.2rem, 7vw, 7.6rem);
  border-radius: 50%;
  /* overflow: hidden; */
  box-shadow: 0 8px 28px rgba(14, 20, 48, 0.35);
  transition: transform 0.4s var(--ease-out);
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-logo:hover {
  transform: scale(1.06) rotate(-4deg);
}

.menu-toggle {
  pointer-events: auto;
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1102;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.menu-toggle span {
  display: block;
  width: 1.7rem;
  height: 2px;
  background: var(--punch-white);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
  box-shadow: 0 0 0 1px rgba(14, 20, 48, 0.15);
  margin: 0;
}

.menu-toggle.is-open {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-close {
  position: absolute;
  top: clamp(1rem, 3vw, 1.75rem);
  right: clamp(1rem, 3vw, 2rem);
  z-index: 1103;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: rgba(14, 20, 48, 0.35);
  color: var(--punch-white);
  padding: 0.55rem 0.9rem 0.55rem 0.7rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.nav-close span {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
}

.nav-close em {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-close:hover {
  background: var(--punch-lemon);
  border-color: var(--punch-lemon);
  color: var(--punch-ink);
  transform: translateY(-2px);
}

/* —— Fullscreen nav —— */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: linear-gradient(145deg, var(--punch-navy-deep) 0%, var(--punch-navy) 55%, #152a6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
  pointer-events: none;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(
    from 0deg at 0 0,
    transparent 0deg 90deg,
    rgba(255, 255, 255, 0.04) 90deg 180deg
  );
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.nav-list a {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: var(--punch-white);
  line-height: 1.15;
  padding: 0.15em 0;
  transition: color 0.25s, transform 0.35s var(--ease-out);
}

.nav-list a:hover {
  color: var(--punch-lemon);
  transform: translateX(0.4rem) skewX(-4deg);
}

.nav-list li {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.nav-overlay.is-open .nav-list li {
  opacity: 1;
  transform: none;
}

.nav-overlay.is-open .nav-list li:nth-child(1) { transition-delay: 0.05s; }
.nav-overlay.is-open .nav-list li:nth-child(2) { transition-delay: 0.1s; }
.nav-overlay.is-open .nav-list li:nth-child(3) { transition-delay: 0.15s; }
.nav-overlay.is-open .nav-list li:nth-child(4) { transition-delay: 0.2s; }
.nav-overlay.is-open .nav-list li:nth-child(5) { transition-delay: 0.25s; }
.nav-overlay.is-open .nav-list li:nth-child(6) { transition-delay: 0.3s; }

/* —— Page hero (iç sayfalar) —— */
.page-hero {
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) clamp(1.25rem, 4vw, 4rem) 3rem;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(245, 212, 0, 0.25), transparent 50%),
    linear-gradient(160deg, var(--punch-navy-deep), var(--punch-navy));
  color: var(--punch-white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--punch-navy-deep) 0 14px,
    var(--punch-white) 14px 28px
  );
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  margin: 0;
  text-transform: uppercase;
  max-width: 12ch;
}

.page-hero p {
  margin: 0.75rem 0 0;
  max-width: 36ch;
  font-size: 1.05rem;
  opacity: 0.9;
}

.section-pad {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.25rem, 4vw, 4rem);
}

/* —— Checker band —— */
.checker-band {
  height: 14px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--punch-navy-deep) 0 16px,
    var(--punch-white) 16px 32px
  );
}

/* —— Footer —— */
.site-footer {
  background: var(--punch-ink);
  color: var(--punch-white);
  padding: 3.5rem clamp(1.25rem, 4vw, 4rem) 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--punch-navy) 0 16px,
    var(--punch-white) 16px 32px
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-top: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
}

.footer-brand .tagline {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--punch-lemon);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--punch-lemon);
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: block;
  padding: 0.3rem 0;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.25s;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  opacity: 0.65;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Frame visual (hikaye / hakkımızda) —— */
.frame-visual,
.story-visual {
  position: relative;
  min-height: clamp(280px, 48vw, 520px);
}

.frame-visual img,
.story-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.frame-visual::before,
.story-visual::before {
  content: "";
  position: absolute;
  inset: 8% -4% -6% 12%;
  background: var(--punch-navy);
  z-index: -1;
  clip-path: polygon(10% 0, 100% 4%, 90% 100%, 0 96%);
}

.frame-visual--flip img {
  clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
}

.frame-visual--flip::before {
  inset: 8% 12% -6% -4%;
  clip-path: polygon(0 4%, 90% 0, 100% 96%, 10% 100%);
  background: var(--punch-lemon);
}

@media (max-width: 900px) {
  .frame-visual,
  .story-visual {
    min-height: 0;
  }

  .frame-visual img,
  .story-visual img,
  .frame-visual--flip img {
    clip-path: none;
    min-height: 220px;
  }

  .frame-visual::before,
  .story-visual::before,
  .frame-visual--flip::before {
    display: none;
  }
}

/* —— Buttons —— */
.btn-punch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid currentColor;
  background: var(--punch-lemon);
  color: var(--punch-ink);
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), background 0.25s, color 0.25s;
}

.btn-punch:hover {
  transform: translateY(-3px) skewX(-2deg);
  background: var(--punch-white);
}

.btn-punch.ghost {
  background: transparent;
  color: var(--punch-white);
  border-color: var(--punch-white);
}

.btn-punch.ghost:hover {
  background: var(--punch-white);
  color: var(--punch-navy);
}

/* —— Forms —— */
.form-punch .form-control,
.form-punch .form-select {
  border-radius: 0;
  border: 2px solid rgba(14, 20, 48, 0.15);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  background: var(--punch-white);
}

.form-punch .form-control:focus,
.form-punch .form-select:focus {
  border-color: var(--punch-navy);
  box-shadow: 0 0 0 3px rgba(31, 60, 139, 0.2);
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
}
