/* izmirfalezcelikkapi.com — buz beyazı + TUSE kırmızısı */
:root {
  --ice: #f3f6f9;
  --ice-2: #e7edf2;
  --white: #ffffff;
  --ink: #161b22;
  --ink-2: #3b4552;
  --ink-3: #6b7684;
  --red: #d71920;
  --red-dark: #a50f15;
  --red-deep: #7c0a0f;

  /* Bölüm bazlı renkler — koyu/kırmızı zeminlerde .on-red ile ezilir */
  --fg: var(--ink);
  --fg-muted: var(--ink-2);
  --accent: var(--red);
  --line: rgba(22, 27, 34, 0.1);

  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --max: 72rem;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;
}

.on-red {
  --fg: #ffffff;
  --fg-muted: rgba(255, 255, 255, 0.85);
  --accent: #ffffff;
  --line: rgba(255, 255, 255, 0.25);
  color: var(--fg);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 60%, var(--red-deep) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fg);
  background: var(--ice);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

/* —— Üst iletişim şeridi (kırmızı) —— */
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  align-items: center;
  padding: 0.5rem var(--pad);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.contact-strip a {
  text-decoration: none;
  color: var(--fg);
  opacity: 0.95;
}

.contact-strip a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact-strip .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 720px) {
  .contact-strip .hide-sm {
    display: none;
  }
}

/* —— Header (beyaz, logo net) —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 18px rgba(22, 27, 34, 0.08);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-logo {
  height: 42px;
  width: auto;
  flex: none;
}

.dealer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--red);
  line-height: 1.15;
}

.dealer strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.dealer span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.dealer strong,
.dealer span {
  white-space: nowrap;
}

@media (max-width: 520px) {
  .site-header .inner {
    gap: 0.5rem;
  }
  .brand-logo {
    height: 28px;
  }
  .brand-mark {
    gap: 0.5rem;
  }
  .dealer {
    gap: 0.1rem;
    padding-left: 0.5rem;
  }
  .dealer strong {
    font-size: 0.74rem;
    letter-spacing: 0.02em;
  }
  .dealer span {
    font-size: 0.52rem;
    letter-spacing: 0.06em;
  }
  .nav-cta {
    padding: 0.5rem 0.65rem;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }
}

.nav-inline {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-inline .nav-link {
  text-decoration: none;
  color: var(--ink-2);
  transition: color 0.2s ease;
}

.nav-inline .nav-link:hover {
  color: var(--red);
}

.nav-cta {
  padding: 0.55rem 1rem;
  background: var(--red);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: var(--red-dark);
}

@media (max-width: 960px) {
  .nav-inline .nav-link {
    display: none;
  }
}

/* —— Butonlar —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

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

.btn-ghost:hover {
  background: var(--ink);
  color: #ffffff;
}

/* —— Hero (metin buz beyazı zeminde, görsel yanda) —— */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(215, 25, 32, 0.1), transparent 55%),
    linear-gradient(180deg, var(--white) 0%, var(--ice) 100%);
  border-bottom: 4px solid var(--red);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

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

.hero-badge {
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(215, 25, 32, 0.1);
  color: var(--red-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-brand {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ink);
}

.hero-brand span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--red);
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  color: var(--ink-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-hint {
  margin: 1.4rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-3);
}

.hero-hint a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(215, 25, 32, 0.4);
}

.hero-hint a:hover {
  border-bottom-color: var(--red);
}

.hero-media {
  position: relative;
  margin: 0;
  justify-self: center;
  width: min(100%, 24rem);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  background: var(--red);
  z-index: 0;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(22, 27, 34, 0.18);
}

.hero-media figcaption {
  position: absolute;
  left: 0;
  bottom: 1rem;
  z-index: 2;
  padding: 0.45rem 0.8rem;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* —— Genel bölüm —— */
section {
  padding: clamp(3.5rem, 9vw, 6rem) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-kicker::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: currentColor;
}

.section-title {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--fg);
}

.section-lead {
  margin: 0;
  max-width: 38rem;
  color: var(--fg-muted);
}

.soft-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.soft-link:hover {
  opacity: 0.8;
}

/* —— Otel bölümü (beyaz) —— */
.hotel-focus {
  background: var(--white);
}

.hotel-focus .grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hotel-focus .grid {
    grid-template-columns: 1fr;
  }
}

.checklist {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--ice);
  border-left: 3px solid var(--red);
}

.checklist .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--red);
}

.checklist strong {
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 700;
  color: var(--ink);
}

.checklist span {
  font-size: 0.95rem;
  color: var(--ink-2);
}

.focus-visual {
  position: relative;
  margin: 0;
  justify-self: center;
  width: min(100%, 22rem);
}

.focus-visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--ice);
  border: 1px solid var(--line);
}

.focus-caption {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* —— Modeller (buz beyazı) —— */
.models {
  background: var(--ice);
}

.models-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 2rem;
}

.model-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
}

.model-track::-webkit-scrollbar {
  height: 5px;
}

.model-track::-webkit-scrollbar-thumb {
  background: var(--red);
}

.model {
  flex: 0 0 min(78vw, 16rem);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.model:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(215, 25, 32, 0.14);
}

.model-photo {
  aspect-ratio: 3 / 4;
  background: var(--white) center / contain no-repeat;
}

.model-meta {
  padding: 1rem 1.1rem 1.2rem;
  border-top: 1px solid var(--line);
}

.model-meta .sku {
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.model-meta h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
}

.model-meta p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-2);
}

/* —— Oda kapısı koridorları (beyaz) —— */
.corridors {
  background: var(--white);
}

.scene-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
}

.scene-track::-webkit-scrollbar {
  height: 5px;
}

.scene-track::-webkit-scrollbar-thumb {
  background: var(--red);
}

.scene {
  position: relative;
  flex: 0 0 min(80vw, 17rem);
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--ink);
  text-decoration: none;
  color: #ffffff;
}

.scene img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.scene:hover img {
  transform: scale(1.04);
}

.scene-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3rem 1.1rem 1.1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(22, 27, 34, 0.78) 45%, rgba(22, 27, 34, 0.92) 100%);
}

.scene-tag {
  display: inline-block;
  margin-bottom: 0.4rem;
  padding: 0.2rem 0.5rem;
  background: var(--red);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scene-meta h3 {
  margin: 0 0 0.15rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.scene-meta p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.scene-note {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-3);
}

/* —— Dayanım (kırmızı bant) —— */
.spec-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

@media (max-width: 800px) {
  .spec-row {
    grid-template-columns: 1fr 1fr;
  }
}

.spec-item {
  padding: 1.4rem 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-item dt {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.spec-item dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
}

.spec-note {
  margin: 1.75rem 0 0;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

/* —— Referanslar (beyaz) —— */
.refs {
  background: var(--white);
}

.ref-marquee {
  margin-top: 2rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ref-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: marquee 38s linear infinite;
}

.ref-track span {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-2);
}

.ref-track span::after {
  content: "■";
  margin-left: 2.5rem;
  font-size: 0.5em;
  vertical-align: middle;
  color: var(--red);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* —— İletişim (kırmızı bant + beyaz kart) —— */
.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 860px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

.contact-channels {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}

.contact-channels a {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--fg);
}

.contact-channels .label {
  padding-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.contact-channels .value {
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-channels a:hover .value {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact-aside {
  --fg: var(--ink);
  --fg-muted: var(--ink-2);
  --accent: var(--red);
  --line: rgba(22, 27, 34, 0.1);
  padding: 1.75rem;
  background: var(--white);
  color: var(--fg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.contact-aside h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-aside p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.contact-aside .btn {
  width: 100%;
}

.contact-aside .tel-line {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.9rem;
}

.contact-aside .tel-line a {
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}

/* —— Footer (beyaz) —— */
.site-footer {
  padding: 2rem 0 5.5rem;
  background: var(--white);
  border-top: 4px solid var(--red);
  font-size: 0.88rem;
  color: var(--ink-2);
}

.site-footer .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--red);
}

@media (min-width: 801px) {
  .site-footer {
    padding-bottom: 2rem;
  }
}

/* —— Mobil alt bar —— */
.mobile-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom));
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 16px rgba(22, 27, 34, 0.08);
}

.mobile-dock .dock-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 0.4rem;
  max-width: 28rem;
  margin: 0 auto;
}

.mobile-dock a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
}

.mobile-dock a.call {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}

.mobile-dock a.wa {
  background: #25d366;
  border-color: #25d366;
  color: #063a1c;
}

.mobile-dock a.map {
  background: #1f5fbf;
  border-color: #1f5fbf;
  color: #ffffff;
}

.mobile-dock a:active {
  filter: brightness(0.92);
}

@media (max-width: 800px) {
  .mobile-dock {
    display: block;
  }
}

/* —— Scroll animasyonu —— */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ref-track {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
