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

:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
  --color-bg:   #ffffff;
  --color-text: #1a1a1a;
  --color-muted:#6b6457;
  --color-line: #c8b99a;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   HERO — Tam Ekran
============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://asvega.net/vegAStar.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroZoom {
  from { transform: scale(1.00); }
  to   { transform: scale(1.09); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.20) 0%,
    rgba(0,0,10,0.62) 55%,
    rgba(0,0,10,0.82) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem;
  animation: fadeUp 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__content h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 4px 48px rgba(0,0,0,0.5);
}

.mb30 { margin-bottom: 30px; }

.hero__content p {
  font-weight: 200;
  font-size: clamp(0.72rem, 1.9vw, 0.98rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  opacity: 0.80;
  animation: fadeUp 1.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Aşağı ok */
.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0);  }
  50%       { transform: translateX(-50%) translateY(9px); }
}

.hero__scroll svg {
  width: 20px; height: 20px;
  stroke: rgba(255,255,255,0.48);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   İÇERİK — Beyaz, Modern
============================================================ */
.intro-section {
  background: #ffffff;
  padding: 3rem 2rem 1rem;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-weight: 300;
  font-size: 0.99rem;
  letter-spacing: 0.99em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 34px;
  height: 1px;
  background: var(--color-line);
}

.intro-section h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7.5vw, 5.5rem);
  letter-spacing: 0.06em;
  color: #0f0f0f;
  line-height: 1.06;
  margin-bottom: 2rem;
}

.intro-section p {
  font-weight: 300;
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  color: #666;
  letter-spacing: 0.03em;
  line-height: 1.95;
  max-width: 500px;
  margin-inline: auto;
}

.divider {
  width: 42px;
  height: 1px;
  background: var(--color-line);
  margin: 3rem auto 0;
}

/* ============================================================
   KART GRID — Hover Overlay
============================================================ */
.cards-section {
  background: #ffffff;
  padding: 1rem 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
  margin-inline: auto;
}

.card-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  cursor: pointer;
}

.card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-item:hover img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.20) 50%,
    rgba(0,0,0,0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
}

.card-item:hover .card-overlay { opacity: 1; }

.card-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.8rem;
  color: #fff;
  transform: translateY(12px);
  opacity: 0;
  /* FIX: shorthand yerine ayrı transition — transform + opacity */
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.card-item:hover .card-copy {
  transform: translateY(0);
  opacity: 1;
}

.card-copy h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.card-copy p {
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.80;
}

.card-copy .card-arrow {
  display: inline-block;
  margin-top: 1rem;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.6);
  position: relative;
  transition: width 0.3s ease;
}

.card-copy .card-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
}

.card-item:hover .card-arrow { width: 48px; }

/* ── FOOTER ── */
.ft-wrap {
  padding:1rem 1rem 1rem;
}

.ft-wrap::before {
  content: '';
  display: block;
  width: 42px;
  height: 1px;
  background: var(--color-line);
  margin: 0 auto 1.5rem;
  opacity: 0.5;
}

.ft-network {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(0.92rem, 2.2vw, 1.12rem);
  letter-spacing: 0.06em;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 2;
}

.ft-network h1 {
  font-size: 22px;
  font-weight: normal;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  padding: 5px 0;
}

.overlap {
  position: absolute;
  left: 65px;
}

.ft-network a:hover { color: var(--color-line); }
.ft-network a:hover::after { width: 100%; }
.ft-network .sep { margin: 0 0.6rem; color: #333; font-weight: 200; }
.ft-network sup,
.ft-network sub { font-size: 0.77em; color: var(--color-line); }

.ft-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-wrap: nowrap;
}

.ft-social li { display: flex; flex-shrink: 0; }

.ft-social li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  line-height: 0;
}

.ft-social li a:hover {
  background: rgba(200,185,154,0.15);
  transform: translateY(-3px);
}

.ft-social li a img {
  height: 48px !important;
  max-width: none;
  object-fit: contain;
opacity: 0.65;  
  display: block;
  margin: 0 auto;
  flex-shrink: 0;
}

.ft-social li a:hover img {
  opacity: 1;
  filter: none;
}

.ft-bottom {
  border-top: 1px solid #707070;
  padding-top: 1rem;
  text-align: center;
}

.ft-copy {
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #333;
}

.ft-copy a { color: #444; transition: color 0.2s; }
.ft-copy a:hover { color: var(--color-line); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .card-item  { aspect-ratio: 4 / 5; }
  /* Mobilde hover yerine her zaman görünür */
  .card-overlay { opacity: 1; }
  .card-copy    { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .hero__content h1 { letter-spacing: 0.10em; }
  .hero__content p  { letter-spacing: 0.20em; font-size: 0.68rem; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .card-item  { aspect-ratio: 1 / 1; }
  .card-copy  { padding: 1rem; }
  .card-copy h3 { font-size: 1.1rem; }
  .card-copy p  { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
