/* ============================================================
   ENDEMAN FUAR — Paylaşılan CSS (Shared Styles)
   Tüm sayfalarda ortak olan stiller buraya taşındı.
   Renk Paleti: Beyaz #ffffff + Turuncu #f39b00
============================================================ */

/* ─── GOOGLE FONT ─────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ─── RESET & BASE ────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #f39b00;
  --primary-dark: #d88a00;
  --primary-light: #fff8ed;
  --white: #ffffff;
  --off-white: #fafafa;
  --dark: #111111;
  --text: #333333;
  --muted: #888888;
  --border: #efefef;
  --font: 'Outfit', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--primary);
  color: #fff;
}

/* ─── NAVBAR — ORTAK ──────────────────────── */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

/* Saydam mod (index.php) — başta şeffaf, scroll'da beyazlaşır */
.lp-nav--transparent {
  /* başlangıçta arka plan yok */
}

.lp-nav--transparent.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 13px 60px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.07);
}

/* Düz mod (diğer sayfalar) — her zaman beyaz */
.lp-nav--solid {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.07);
}

/* Logo */
.lp-nav__logo img {
  height: 40px;
  display: block;
}

/* Nav linkleri — transparent modda beyaz, solid modda koyu */
.lp-nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.lp-nav__links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.lp-nav--transparent .lp-nav__links a {
  color: rgba(255, 255, 255, 0.92);
}

.lp-nav--transparent.scrolled .lp-nav__links a {
  color: var(--dark);
}

.lp-nav--solid .lp-nav__links a {
  color: var(--dark);
}

.lp-nav__links a:hover,
.lp-nav__links a.active-link {
  color: var(--primary) !important;
}

/* Sağ alan */
.lp-nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Dil seçici */
.lp-nav__lang {
  display: flex;
  gap: 6px;
}

.lp-nav__lang a {
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  transition: var(--transition);
}

.lp-nav--transparent .lp-nav__lang a {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.lp-nav--transparent.scrolled .lp-nav__lang a {
  border-color: var(--border);
  color: var(--dark);
}

.lp-nav--solid .lp-nav__lang a {
  border: 1.5px solid var(--border);
  color: var(--dark);
}

.lp-nav__lang a.active,
.lp-nav__lang a:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

/* CTA Butonu */
.lp-nav__cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 30px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(243, 155, 0, 0.35);
  white-space: nowrap;
}

.lp-nav__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(243, 155, 0, 0.4);
}

/* ─── FOOTER ──────────────────────────────── */
.lp-footer {
  background: var(--dark);
  padding: 52px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

.lp-footer__logo img {
  height: 36px;
  display: block;
}

.lp-footer__links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.lp-footer__links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.lp-footer__links a:hover {
  color: var(--primary);
}

.lp-footer__social {
  display: flex;
  gap: 10px;
}

.lp-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
}

.lp-footer__social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.lp-footer__copy {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 12px;
  text-align: center;
}

/* ─── LAYOUT YARDIMCILARI ─────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 90px 60px;
}

.section--gray {
  background: var(--off-white);
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── PAGE HERO (about, contact, gallery) ─── */
.page-hero {
  padding: 154px 60px 76px;
  background: linear-gradient(160deg, var(--off-white) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(243, 155, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb i {
  font-size: 10px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.page-hero h1 span {
  color: var(--primary);
}

.page-hero>.page-hero__inner>p,
.page-hero__desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── CTA BANNER (koyu) ────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #111 0%, #1e1e1e 60%, #2a1800 100%);
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(243, 155, 0, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner h2 span {
  color: var(--primary);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
}

/* ─── ORTAK BUTONLAR ──────────────────────── */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(243, 155, 0, 0.4);
  position: relative;
}

.btn-primary-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(243, 155, 0, 0.5);
}

/* ─── SCROLL REVEAL ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

.reveal-delay-4 {
  transition-delay: 0.48s;
}

/* ─── NAVBAR — HAMBURGER TOGGLE ───────────── */
.lp-nav__toggle {
  display: none;
  /* Desktop'ta gizli */
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1100;
}

.lp-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, top 0.35s ease;
  position: absolute;
  left: 4px;
}

/* Transparent navbar'da hamburger çizgileri beyaz */
.lp-nav--transparent:not(.scrolled) .lp-nav__toggle span {
  background: #fff;
}

.lp-nav__toggle span:nth-child(1) {
  top: 4px;
}

.lp-nav__toggle span:nth-child(2) {
  top: 13px;
}

.lp-nav__toggle span:nth-child(3) {
  top: 22px;
}

/* ─── MOBILE OVERLAY MENÜ ─────────────────── */
.lp-mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
}

.lp-mobile-menu.is-open {
  transform: translateX(0);
}

/* Overlay header: logo + kapat butonu */
.lp-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.lp-mobile-menu__close {
  position: fixed;
  top: 16px;
  right: 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  z-index: 1060;
}

.lp-mobile-menu__close:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Nav linkleri — büyük, dikey liste */
.lp-mobile-menu__links {
  list-style: none;
  padding: 32px 24px;
  flex: 1;
}

.lp-mobile-menu__links li {
  border-bottom: 1px solid var(--border);
}

.lp-mobile-menu__links li:last-child {
  border-bottom: none;
}

.lp-mobile-menu__links a {
  display: block;
  padding: 18px 4px;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.lp-mobile-menu__links a:hover,
.lp-mobile-menu__links a.active-link {
  color: var(--primary);
  padding-left: 12px;
}

/* Alt alan: dil + CTA */
.lp-mobile-menu__footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}

/* Dil toogle pill */
.lp-mobile-menu__lang {
  display: flex;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  padding: 3px;
  gap: 2px;
}

.lp-mobile-menu__lang a {
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.2s ease, color 0.2s ease;
  letter-spacing: 0.5px;
}

.lp-mobile-menu__lang a.active {
  background: var(--primary);
  color: #fff;
}

/* CTA butonu — kompakt */
.lp-mobile-menu__cta {
  display: inline-block;
  padding: 11px 22px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 30px;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(243, 155, 0, 0.3);
  white-space: nowrap;
}

.lp-mobile-menu__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Backdrop (overlay dışına tıklayarak kapat) */
.lp-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1049;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lp-mobile-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ─── RESPONSIVE ORTAK ─────────────────────── */
@media (max-width: 900px) {

  /* Nav — sadece logo + hamburger bırak */
  .lp-nav {
    padding: 14px 20px;
    justify-content: space-between;
  }

  .lp-nav--transparent.scrolled {
    padding: 12px 20px;
  }

  /* Desktop elemanlarını gizle */
  .lp-nav__links,
  .lp-nav__right {
    display: none;
  }

  /* Hamburger görünür yap */
  .lp-nav__toggle {
    display: flex;
  }

  .lp-footer {
    padding: 36px 24px;
  }

  .section {
    padding: 60px 24px;
  }

  .cta-banner {
    padding: 64px 24px;
  }

  .page-hero {
    padding: 120px 24px 60px;
  }

  /* Logo swap */
  .lp-nav__logo img.lp-logo--desktop { display: none !important; }
  .lp-nav__logo img.lp-logo--mobile  { display: block !important; }
}

/* Desktop'ta mobil logo gizli (default) */
.lp-nav__logo img.lp-logo--mobile { display: none; }