:root {
  --bg-dark: #000000;
  --bg-darker: #050505;
  --accent: #7b151a;
  --accent-light: #9c242a;
  --text-light: #ffffff;
  --text-muted: #aaaaaa;
  --max-width: 1400px;   /* hero-inner ile aynı genişlik */
  --slides-per-view: 5;  /* JS ile güncellenecek */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "roc-grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === HERO (SADECE INDEX) === */

.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  color: var(--text-light);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.9)),
    url("images/hero.jpg") center center / cover no-repeat;
  z-index: -1;
  transform: scale(1.02);
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 32px 24px;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 32px;
  width: auto;
  display: block;
}

/* HAMBURGER */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 16px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* X animasyonu */
body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body.menu-open .menu-toggle span:nth-child(2) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
}

.nav a {
  opacity: 0.9;
  position: relative;
}

.nav a:hover {
  opacity: 1;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.2s;
}

.nav a:hover::after {
  width: 100%;
}

.hero-center {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
}

.hero-buttons {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-pill {
  border-radius: 100px;
  padding: 18px 65px; /* büyük buton */
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: #5b0c13;
  border: 2px solid #ffffff;
  color: #fff;
  min-width: 200px;
  text-align: center;
}

.btn-pill.primary {
  background: #6f0c10;
  border-color: #ffffff;
}

.btn-pill:hover {
  background: #8a141a;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.hero-bottom-spacer {
  height: 4px;
}

/* header sağ ikonlar */

.hero-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-icons {
  display: flex;
  gap: 14px;
  font-size: 18px;
}

.hero-icons a {
  color: #ffffff;
  transition: color 0.2s;
}

.hero-icons a:hover {
  color: var(--accent-light);
}

/* === PAGE HEADER (İÇ SAYFALAR) === */

.page-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 32px 12px;
}

/* === INTRO TEXT === */

.intro-section {
  background: #000;
  padding: 60px 16px 80px;
  text-align: center;
}

.intro-inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
}

.intro-section p {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0 auto 16px;
  text-align: center;
}

.intro-section p:last-child {
  margin-bottom: 0;
}

/* === SLIDER – yatay galeri === */

.gallery-section {
  background: var(--bg-dark);
  padding: 0 0 60px;
}

.slider-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.slide {
  flex: 0 0 calc(100% / var(--slides-per-view));
}

.slide img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
  z-index: 10;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #ffffffaa;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s, transform 0.1s;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

/* === NEW FOOTER (site-footer) === */

.site-footer {
  background: #050505;
  padding: 40px 0 60px;
  font-size: 14px;
  letter-spacing: 1.26px;
}

.site-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 40px;
}

.footer-block {
  flex: 1;
}

.footer-block h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 1.26px;
  color: #ffffff;
}

.footer-block p,
.footer-block a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 1.26px;
  margin-bottom: 4px;
  text-decoration: none;
}

.footer-block a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.footer-social a {
  color: #ffffff;
  font-size: 18px;
}

.footer-social a:hover {
  color: #9c242a;
  text-decoration: none;
}

/* === RESPONSIVE === */

@media (max-width: 992px) {
  :root {
    --slides-per-view: 3;
  }

  .slide img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

  .hero-inner {
    padding: 14px 16px 20px;
  }

  /* Mobil hamburger aktif */
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1001;
  }

  /* Tam ekran siyah overlay menü */
  .hero-right {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.25s ease;
    z-index: 1000;
  }

  body.menu-open .hero-right {
    transform: translateY(0);
  }

  .nav {
    flex-direction: column;
    gap: 18px;
    font-size: 18px;
    text-align: center;
  }

  .hero-icons {
    margin-top: 24px;
  }

  .hero-center {
    margin-top: 70px;
    margin-bottom: 20px;
  }

  :root {
    --slides-per-view: 1;
  }

  .slide img {
    height: 220px;
  }

  .site-footer-inner {
    flex-direction: column;
    padding: 0 16px;
    text-align: center;
  }

  .footer-block {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .page-header-inner {
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .intro-section {
    padding: 30px 16px 40px;
  }

  .intro-section p {
    font-size: 15px;
  }
}

/* === CLEAN FOOTER FIX === */

.site-footer {
  background: #050505;
  padding: 50px 0;
  text-align: center;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.footer-block h4 {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 12px;
  color: #fff;
}

.footer-block p,
.footer-block a {
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
}

.footer-social a:hover {
  color: #9c242a;
}

/* MOBILE FOOTER GRID */
@media (max-width: 768px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
