/* Header + Hero — görsele birebir (Montserrat / Gold #C9A65B) */

.topbar {
  background: #1a1a1a !important;
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.78rem !important;
  font-weight: 500;
  height: 40px !important;
}
.topbar-inner {
  width: min(1200px, calc(100% - 2.4rem)) !important;
  gap: 1.25rem !important;
}
.topbar-address {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}
.topbar-address span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar-ico { color: #c9a65b; flex-shrink: 0; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-shrink: 0;
}
.topbar-hours { white-space: nowrap; color: rgba(255,255,255,0.88); }
.topbar-social { display: flex !important; gap: 0.75rem !important; align-items: center; }
.topbar-social a {
  color: #c9a65b !important;
  display: grid;
  place-items: center;
  transition: opacity 0.2s;
}
.topbar-social a:hover { opacity: 0.75; }

.site-header {
  height: 88px !important;
  background: #fff !important;
  border-bottom: 1px solid #e8e8e8 !important;
}
.header-inner {
  width: min(1200px, calc(100% - 2rem)) !important;
}
.brand { display: inline-flex; align-items: center; z-index: 2; }
.brand-logo {
  height: 64px !important;
  max-width: 190px !important;
  width: auto;
  object-fit: contain;
  display: block;
}

.main-nav { gap: 0.05rem !important; }
.main-nav > a,
.nav-drop > a {
  color: #1a1a1a !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  padding: 0.55rem 0.5rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  transition: color 0.2s;
}
.main-nav > a:hover,
.main-nav > a.active,
.nav-drop > a:hover,
.nav-drop > a.active,
.nav-drop.is-current > a {
  color: #c9a65b !important;
}

.nav-drop { position: relative; }
.nav-drop .chev { opacity: 0.65; }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 30;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-drop-menu a {
  display: block;
  padding: 0.65rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #333 !important;
}
.nav-drop-menu a:hover {
  background: #f5f5f5;
  color: #b08f45 !important;
}

.nav-cta {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.65rem !important;
  background: #1a1a1a !important;
  color: #fff !important;
  padding: 0.5rem 0.9rem !important;
  margin-left: 0.5rem !important;
  border-radius: 6px !important;
  border: 1px solid rgba(201,166,91,0.45) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.15 !important;
}
.nav-cta-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201,166,91,0.15);
  color: #c9a65b;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.nav-cta-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nav-cta small {
  font-size: 0.6rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #c9a65b !important;
  font-weight: 700 !important;
}
.nav-cta strong {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #fff !important;
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  height: calc(100svh - 88px - 40px);
  max-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #000;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
  transform-origin: center center;
}
/* 10s döngü: 0–5s A (zoom in), 5–10s B (zoom out) — JS gerekmez */
.hero-slide--a {
  animation: heroFadeA 10s ease-in-out infinite;
}
.hero-slide--a img {
  animation: heroZoomIn 10s ease-in-out infinite;
}
.hero-slide--b {
  animation: heroFadeB 10s ease-in-out infinite;
}
.hero-slide--b img {
  animation: heroZoomOut 10s ease-in-out infinite;
}
@keyframes heroFadeA {
  0%, 42% { opacity: 1; z-index: 1; }
  50%, 92% { opacity: 0; z-index: 0; }
  100% { opacity: 1; z-index: 1; }
}
@keyframes heroFadeB {
  0%, 42% { opacity: 0; z-index: 0; }
  50%, 92% { opacity: 1; z-index: 1; }
  100% { opacity: 0; z-index: 0; }
}
@keyframes heroZoomIn {
  0% { transform: scale(1); }
  42% { transform: scale(1.12); }
  50%, 100% { transform: scale(1); }
}
@keyframes heroZoomOut {
  0%, 42% { transform: scale(1.12); }
  50% { transform: scale(1.12); }
  92% { transform: scale(1); }
  100% { transform: scale(1.12); }
}
/* Manuel ok ile geçiş */
.hero.is-manual .hero-slide--a,
.hero.is-manual .hero-slide--b,
.hero.is-manual .hero-slide--a img,
.hero.is-manual .hero-slide--b img {
  animation: none !important;
}
.hero.is-manual .hero-slide {
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 0;
}
.hero.is-manual .hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero.is-manual .hero-slide.is-active.is-zoom-in img {
  animation: heroZoomInManual 5s ease-in-out forwards !important;
}
.hero.is-manual .hero-slide.is-active.is-zoom-out img {
  animation: heroZoomOutManual 5s ease-in-out forwards !important;
}
@keyframes heroZoomInManual {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
@keyframes heroZoomOutManual {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(100deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.48) 45%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.25);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0.7;
  padding: 0;
  transition: opacity 0.2s, background 0.2s;
}
.hero-arrow:hover {
  opacity: 1;
  background: rgba(0,0,0,0.45);
}
.hero-arrow--prev { left: 1.25rem; }
.hero-arrow--next { right: 1.25rem; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide--a,
  .hero-slide--b,
  .hero-slide--a img,
  .hero-slide--b img {
    animation: none !important;
  }
  .hero-slide--a { opacity: 1; z-index: 1; }
  .hero-slide--b { opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 2.4rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
  padding: 4rem 0 3.5rem;
}
.hero-copy { max-width: 640px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.hero-eyebrow span {
  display: block;
  width: 36px;
  height: 1px;
  background: #c9a65b;
  flex-shrink: 0;
}
.hero h1 {
  color: #fff !important;
  font-family: "Montserrat", system-ui, sans-serif !important;
  font-size: clamp(2.1rem, 4.4vw, 3.35rem) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 1.15rem !important;
}
.hero h1 .gold { color: #c9a65b; }
.hero-lead {
  color: rgba(255,255,255,0.86);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  max-width: 48ch;
  margin: 0 0 1.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.btn-hero {
  padding: 1rem 1.35rem !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.35rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.35);
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 4px;
  transition: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.hero-glass {
  justify-self: end;
  align-self: end;
  width: min(100%, 320px);
  padding: 1.4rem 1.45rem;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 166, 91, 0.4);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.hero-glass ul { display: grid; gap: 0.85rem; margin: 0; padding: 0; list-style: none; }
.hero-glass li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.hero-glass .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #c9a65b;
  color: #111;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .topbar { display: none !important; }
  .hero {
    height: auto;
    min-height: 560px;
    max-height: none;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 0 2.5rem;
  }
  .hero-glass {
    justify-self: start;
    width: 100%;
  }
  .hero-arrow { display: none; }
  .main-nav {
    position: fixed !important;
    inset: 0 !important;
    background: #fff !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 0.35rem !important;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1;
  }
  .main-nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .main-nav > a,
  .nav-drop > a {
    font-size: 1.05rem !important;
  }
  .nav-drop-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding-left: 0.75rem;
  }
  .nav-cta {
    margin: 1rem 0 0 !important;
  }
  .nav-toggle { display: block !important; }
}
