:root {
  --main-bg: #111;
  --header-bg: #fff;
  --header-shadow: 0 2px 24px #c1c2c466;
  --primary-color: #fff;
  --accent: #f5ce6d;
}

/* Genel */
body {
  margin: 0;
  background: var(--main-bg);
  color: var(--primary-color);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; transition: color .16s; }

::-webkit-scrollbar { width: 9px; background: #161617; }
::-webkit-scrollbar-thumb { background: #f5ce6d66; border-radius: 9px; }

/* Modern Header */
.modern-header {
  position: sticky;
  top: 0;
  width: 100vw;
  z-index: 99;
  background: rgba(255,255,255,0.93);
  box-shadow: 0 2px 22px #e9ddcd16, 0 1px 0 #f4e5c320;
  backdrop-filter: blur(8px);
  transition: background .23s cubic-bezier(.32,.72,.31,1), box-shadow .19s;
}
.header-inner-nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1vw 3vw 0.6vw 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header-left, .header-center, .header-right {
  display: flex;
  align-items: center;
}
.header-left { flex: 1; gap: 1.8vw; }
.header-center { flex: 2; justify-content: center; }
.header-right { flex: 1; gap: 2vw; justify-content: flex-end; }
.site-logo {
  font-size: 2.07em;
  font-weight: 900;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: .045em;
  color: #212126;
  text-decoration: none;
  background: linear-gradient(93deg,#f5ce6d 40%,#a18639 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: brightness(1.06);
  text-shadow: 0 3px 18px #ffe6b812;
  opacity: .99;
  transition: color .18s;
  padding: .18em 0;
}
.nav-link {
  font-size: 1.07em;
  color: #2b2921;
  text-decoration: none;
  padding: .29em .8em .19em .1em;
  font-weight: 600;
  position: relative;
  opacity: .93;
  letter-spacing: .01em;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .17s;
}
.nav-link.left-link::after,
.nav-link.right-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg,#ffe6b8 30%,#f5ce6d 70%);
  border-radius: 3px;
  transition: width .32s cubic-bezier(.69,.05,.41,1.12);
  position: absolute;
  left: 0; bottom: 0;
}
.nav-link.left-link:hover::after,
.nav-link.left-link:focus::after,
.nav-link.right-link:hover::after,
.nav-link.right-link:focus::after {
  width: 100%;
}
.nav-link.left-link:hover,
.nav-link.left-link:focus,
.nav-link.right-link:hover,
.nav-link.right-link:focus {
  color: #f5ce6d;
}

/* Açılır Menü */
.dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.dropdown-toggle {
  background: none;
  border: none;
  color: #2B2921;
  font-size: 1.08em;
  font-weight: 600;
  cursor: pointer;
  padding: .33em 1.1em .29em 1.1em;
  display: flex;
  align-items: center;
  border-radius: 12px;
  transition: background .17s, color .17s;
  outline: none;
}
.dropdown-toggle .arrow {
  margin-left: .59em;
  transition: transform .33s cubic-bezier(.63,-0.06,.38,1.1);
  display: inline-block;
}
.dropdown-toggle[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}
.dropdown-toggle:focus-visible {
  background: #fff5e2;
}
.dropdown-menu {
  position: absolute;
  top: 2.7em;
  right: 0;
  min-width: 210px;
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 8px 38px #bcae6c29, 0 1px 9px #ffe6b89c;
  padding: .49em 0 .49em 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(0.96);
  transition: all .33s cubic-bezier(.63,-0.06,.38,1.1);
  z-index: 99;
  overflow: hidden;
}
.dropdown-wrap.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.dropdown-menu a {
  display: block;
  width: 100%;
  padding: .88em 1.6em .72em 1.7em;
  color: #212126;
  font-weight: 600;
  font-size: 1.08em;
  text-decoration: none;
  border: none;
  background: none;
  transition: background .15s, color .15s;
  border-left: 3.8px solid transparent;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: #fffbe7;
  color: #b89945;
  border-left: 3.8px solid #f5ce6d;
}
/* Menü açıkken sayfaya blur+dim efekti */
body.header-menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(246, 231, 190, 0.13);
  backdrop-filter: blur(2.7px);
  z-index: 89;
  pointer-events: none;
  transition: backdrop-filter .25s, background .21s;
}

/* Responsive Header */
@media (max-width: 900px) {
  .header-inner-nav { padding: 2vw 2vw; }
  .site-logo { font-size: 1.15em; }
  .dropdown-menu { min-width: 140px; }
}
@media (max-width: 600px) {
  .header-inner-nav { flex-direction: column; gap:2vw; padding: 2vw 1vw; }
  .header-left, .header-center, .header-right { justify-content: center; }
  .dropdown-menu { top: 2.2em; min-width: 110px;}
}

/* Hero Slayt */
.hero-slider {
  position: relative;
  width: 100vw;
  min-height: 55vw;
  max-height: 630px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
}
.hero-slide-img {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity .5s;
  opacity: 0;
  pointer-events: none;
}
.hero-slide-img.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100%;
  background: rgba(15,15,15,0.72);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  margin-top: 5vw;
}
.hero-title {
  font-size: clamp(2.5em,7vw,6em);
  font-weight: 800;
  letter-spacing: .03em;
  margin-bottom: .33em;
  text-shadow: 0 6px 32px #111b, 0 2px 8px #000a;
}
.hero-slogan {
  font-size: clamp(1.2em,2vw,2em);
  margin-bottom: 1.8vw;
  color: #ffe6b8;
  text-shadow: 0 4px 14px #000b;
}
.hero-slider-buttons {
  position: absolute;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  top: 50%;
  left: 0;
  z-index: 4;
  pointer-events: none;
}
.hero-slider-button {
  pointer-events: auto;
  background: rgba(255,255,255,0.14);
  border: none;
  border-radius: 100vw;
  color: #ffe6b8;
  font-size: 2.7em;
  padding: .02em .32em;
  margin: 0 1vw;
  transition: background .18s, color .14s, box-shadow .13s;
  cursor: pointer;
  box-shadow: 0 4px 28px #2224;
  user-select: none;
  border: 1.5px solid #ffe6b870;
}
.hero-slider-button svg {
  display: block;
}
.hero-slider-button:hover {
  background: #ffe6b8;
  color: #23232b;
  border-color: #ffe6b8;
}
@media (max-width: 900px) {
  .hero-title { font-size: 2.6em;}
  .hero-content { margin-top: 9vw;}
}
@media (max-width: 600px) {
  .hero-title { font-size: 2em;}
  .hero-slogan { font-size: 1em;}
}

/* Galeri (Grid) */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: 100vw;
  background: transparent;
}
.gallery-item {
  position: relative;
  flex: 1 0 33.333%;
  min-width: 0;
  aspect-ratio: 3 / 2;
  cursor: pointer;
  overflow: hidden;
  transition: filter .2s;
  background: #181818;
}
.gallery-item img {
  width: 100vw;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s cubic-bezier(.66,.09,.51,1.23);
  background: #191919;
}
.gallery-item:hover img {
  transform: scale(1.045);
  filter: brightness(1.10) contrast(1.05) saturate(1.1);
}
.gallery-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1.2vw 2vw;
  font-size: 1.3vw;
  color: #fff;
  background: linear-gradient(90deg,rgba(18,18,18,0.86) 80%,transparent 100%);
  text-shadow: 0 3px 24px #111;
  letter-spacing: 0.02em;
  z-index: 2;
  font-weight: 500;
  pointer-events: none;
}
@media (max-width: 900px) {
  .gallery-item { flex-basis: 50%; }
  .gallery-caption { font-size: 2.6vw; }
}
@media (max-width: 600px) {
  .gallery-item { flex-basis: 100%; }
  .gallery-caption { font-size: 4vw; padding: 2vw 4vw; }
}

/* Lightbox Modern */
.lightbox {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(17,17,17,0.97);
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox-bg {
  position: absolute;
  width: 100vw; height: 100vh; left:0; top:0;
  background: transparent;
}
.lightbox-content {
  position: relative;
  z-index: 2;
  background: #181818;
  box-shadow: 0 10px 64px #000b;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 2vw;
  padding: 2vw 2vw 1vw 2vw;
  min-width: 320px;
  animation: lbFadeIn .3s;
}
@keyframes lbFadeIn {
  0% { transform: scale(.96) translateY(24px); opacity: 0.3; }
  100% { transform: scale(1); opacity: 1; }
}
.lightbox-content img {
  width: 56vw; max-width: 96vw;
  max-height: 55vh;
  border-radius: 1vw;
  object-fit: contain;
  background: #191919;
  margin-bottom: 1vw;
  box-shadow: 0 2px 24px #222b;
}
#lightbox-title {
  font-size: 1.23em;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .2em;
  text-align: center;
}
#lightbox-subtitle {
  font-size: 1.1em;
  font-weight: 600;
  color: #ffe6b8;
  text-align: center;
  margin-bottom: .7em;
  letter-spacing: .01em;
}
.color-swatches {
  display: flex;
  gap: 2.2vw;
  margin-top: 0.4vw;
  justify-content: center;
  margin-bottom: 1.1vw;
}
.swatch {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eee;
  display: inline-block;
  cursor: pointer;
  border: none;
  outline: none;
  transition: box-shadow .18s, transform .14s;
  box-shadow: 0 2px 12px #0005;
  opacity: .98;
}
.swatch.selected {
  box-shadow: 0 0 0 4px #ffe6b8, 0 2px 12px #c9ad6f8a;
  transform: scale(1.14);
  opacity: 1;
}
.swatch:active {
  transform: scale(.94);
}
.lb-btn, .lb-btn-close {
  position: absolute;
  top: 52%;
  border: none;
  background: rgba(35,35,43,0.90);
  color: #ffe6b8;
  font-size: 2.5em;
  cursor: pointer;
  border-radius: 100vw;
  padding: .10em .48em;
  transition: background .15s, color .15s, box-shadow .13s;
  z-index: 6;
  box-shadow: 0 2px 24px #191919;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-btn svg {
  width: 0.9em;
  height: 0.9em;
  display: block;
}
.lb-btn:hover, .lb-btn-close:hover {
  background: #ffe6b8;
  color: #23232b;
}
#lightbox-prev { left: -3vw;}
#lightbox-next { right: -3vw;}
.lb-btn-close {
  font-size: 1.3em;
  top: 1.7vw;
  right: -2vw;
  left: auto;
  transform: none;
  background: #222;
  color: #ffe6b8;
  padding: 0.15em 0.7em;
  box-shadow: 0 2px 16px #000a;
}
.lb-btn-close:hover { background: #ffe6b8; color: #111; }
@media (max-width:800px) {
  .lightbox-content img { width: 95vw; }
  #lightbox-prev, #lightbox-next { font-size: 2em; left:-1vw; right:-1vw;}
  .lb-btn-close { right: 2vw;}
}

/* Section Title ve Metin */
.section {
  max-width: 900px;
  margin: 5vw auto 4vw auto;
  padding: 2vw;
  background: rgba(34,34,34,0.19);
  border-radius: 1.2vw;
  box-shadow: 0 2px 12px #ffe6b823;
  color: #eee;
}
.section-title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 1vw;
  letter-spacing: .04em;
  color: #ffe6b8;
}
.section p {
  color: #eee;
  font-size: 1.12em;
  line-height: 1.6;
  margin-top: 0;
}

@media (max-width: 600px) {
  .section { padding: 5vw 2vw;}
  .section-title { font-size: 1.45em;}
}

/* Footer */
.site-footer {
  width: 100vw;
  background: #181818;
  color: #eee;
  padding: 3vw 0 2vw 0;
  text-align: center;
  border-top: 1px solid #232323;
  font-size: 1.04em;
  margin-top: 7vw;
}
.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2vw;
}
.footer-col {
  flex: 1 0 190px;
  padding: 1vw;
}
.footer-logo {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: .5em;
  color: #fff;
  letter-spacing: .06em;
}
.footer-links, .footer-contacts {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li, .footer-contacts li {
  margin-bottom: .7em;
}
.footer-links a, .footer-contacts a {
  color: #ffe6b8;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity .14s;
}
.footer-links a:hover, .footer-contacts a:hover {
  opacity: 1;
}
.footer-social {
  margin-top: 1vw;
}
.footer-social a {
  color: #fff;
  margin: 0 1vw;
  font-size: 1.7em;
  text-decoration: none;
  vertical-align: middle;
  opacity: .68;
  transition: opacity .15s;
}
.footer-social a:hover { opacity: 1; }

@media (max-width: 900px) {
  .footer-main { flex-direction: column; gap: 3vw;}
  .footer-col { padding: 2vw; }
}

#about {
  scroll-margin-top: 110px; /* header yüksekliğine göre ayarla */
}

@media (max-width: 600px) {
  .hero-slider-button {
    font-size: 1.2em;      /* İstediğin kadar küçük yapabilirsin */
    padding: .02em .14em;  /* Padding'i de orantılı küçült */
  }
}

@media (max-width: 600px) {
  #lightbox-prev,
  #lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.7em;
    background: rgba(35,35,43,0.90);
    z-index: 10;
    padding: 0.16em 0.33em;
    /* Kutucuk biraz küçülür */
  }
  #lightbox-prev {
    left: 2vw;
    right: auto;
  }
  #lightbox-next {
    right: 2vw;
    left: auto;
  }
}

.floating-btn {
  position: fixed;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  color: #fff;
  background: #25D366;
  box-shadow: 0 6px 22px #0002, 0 1.5px 7px #2a2a2a33;
  z-index: 99999;
  transition: transform .17s, box-shadow .17s, background .19s;
  cursor: pointer;
  border: none;
  opacity: .97;
}
.floating-btn:hover {
  transform: scale(1.11);
  box-shadow: 0 9px 32px #0004, 0 2px 12px #25D36644;
  opacity: 1;
}
.whatsapp-float { bottom: 100px; background: #25D366; }
.instagram-float { bottom: 170px; background: #E4405F; }
.instagram-float:hover { background: #b72d44; }
.whatsapp-float:hover { background: #128C7E; }

/* --- MOBİL LIGHTBOX BUTON DÜZELTME --- */
@media (max-width:600px){
  /* ID ya da class kullanan her iki sürümü de kapsa */
  #lightbox-prev, .lb-btn-prev {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    left: 2vw !important;
    z-index: 999 !important;
  }
  #lightbox-next, .lb-btn-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 2vw !important;
    z-index: 999 !important;
  }
}




