:root {
  --white: #ffffff;
  --off-white: #f7f6f4;
  --light-gray: #e8e6e3;
  --mid-gray: #9c9892;
  --anthracite: #2a2a28;
  --anthracite-soft: #3d3d3a;
  --accent: #5c6b5a;
  --accent-light: #eef2ed;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--anthracite);
  background: var(--white);
  line-height: 1.7;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--anthracite);
}

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

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

/* Top bar */
.top-bar {
  background: var(--anthracite);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.top-bar a,
.top-bar__link {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  white-space: nowrap;
}
.top-bar a:hover,
.top-bar__link:hover { color: #fff; }
@media (max-width: 575.98px) {
  .top-bar { font-size: 0.78rem; }
}
.top-bar__icon { opacity: 0.7; margin-right: 0.35rem; }

/* Navbar */
.navbar-main {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
  padding: 0.75rem 0;
  transition: box-shadow 0.3s;
}
.navbar-main.scrolled {
  box-shadow: 0 4px 24px rgba(42, 42, 40, 0.08);
}
.navbar-main .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 1rem;
}
.navbar-main .navbar-brand__logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.navbar-main .nav-link {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--anthracite-soft) !important;
  padding: 0.5rem 0.85rem !important;
  transition: color 0.2s;
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active { color: var(--anthracite) !important; }
.navbar-main .nav-link.btn-nav-cta,
.navbar-main .nav-link.btn-nav-cta:hover,
.navbar-main .nav-link.btn-nav-cta.active {
  color: #fff !important;
}
.btn-nav-cta {
  background: var(--anthracite);
  color: #fff !important;
  border-radius: 2px;
  padding: 0.5rem 1.25rem !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.btn-nav-cta:hover { background: var(--anthracite-soft); color: #fff !important; }

@media (max-width: 991.98px) {
  .navbar-main .navbar-nav {
    padding: 0.75rem 0 0.5rem;
  }
  .navbar-main .nav-link.btn-nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    display: block;
  }
  .gallery-wrapper { padding: 0 36px; }
  .scroll-button { width: 36px; height: 36px; font-size: 0.9rem; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: center / cover no-repeat url("../images/hero_1b.jpg");
  color: #fff;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(42, 42, 40, 0.35), rgba(42, 42, 40, 0.55));
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 2rem 1.5rem;
}
.hero__eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 1rem;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-hero {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-hero--primary {
  background: #fff;
  color: var(--anthracite);
}
.btn-hero--primary:hover { background: var(--off-white); color: var(--anthracite); }
.btn-hero--outline {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}
.btn-hero--outline:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* Sections */
.section { padding: 5rem 0; }
.section--light { background: var(--off-white); }
.section__eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.5rem;
}
.section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
}
.section__lead {
  font-size: 1.05rem;
  color: var(--anthracite-soft);
  max-width: 680px;
}

/* Banner strip */
.banner-strip {
  height: 320px;
  background: center / cover no-repeat url("../ana2.jpg");
  background-attachment: scroll;
}
@media (min-width: 768px) {
  .banner-strip { background-attachment: fixed; }
}

/* Feature cards */
.feature-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 1.75rem;
  height: 100%;
  transition: box-shadow 0.3s;
}
.feature-card:hover { box-shadow: 0 8px 32px rgba(42, 42, 40, 0.08); }
.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.feature-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Vaziyet planı */
.vaziyet-plan__image {
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(42, 42, 40, 0.08);
}

/* Gallery */
.gallery-section { background: var(--anthracite); color: #fff; padding: 5rem 0; }
.gallery-section .section__title { color: #fff; }
.gallery-wrapper { position: relative; padding: 0 48px; }
.gallery-container {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 1.5rem 0;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.gallery-container::-webkit-scrollbar { display: none; }
.gallery-item {
  display: inline-block;
  margin-right: 1.25rem;
  width: 280px;
  vertical-align: top;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.scroll-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.scroll-button:hover { background: rgba(255, 255, 255, 0.3); }
.left-button { left: 0; }
.right-button { right: 0; }

/* Distance cards */
.dist-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}
.dist-card:hover { border-color: var(--accent); }
.dist-card__time {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  min-width: 64px;
}
.dist-card__label { font-size: 0.95rem; color: var(--anthracite-soft); }

.map-embed {
  border: 0;
  width: 100%;
  height: 400px;
  border-radius: 4px;
}

/* Floor plans */
.plan-block { margin-bottom: 4rem; }
.plan-block:last-child { margin-bottom: 0; }
.room-list { list-style: none; padding: 0; margin: 0; }
.room-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
}
.room-list li span:last-child {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: var(--anthracite);
}

/* Contact */
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-card__icon {
  width: 40px;
  height: 40px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-card__label {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.15rem;
}
.contact-card a { color: var(--anthracite-soft); transition: color 0.2s; }
.contact-card a:hover { color: var(--anthracite); }

/* Footer */
.site-footer {
  background: var(--anthracite);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 2rem;
  font-size: 0.92rem;
}
.site-footer h5 {
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.site-footer a:hover { color: #fff; }
.site-footer__logo {
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.site-footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1050;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.2s;
}
.whatsapp-float:hover { background: #1ebe57; color: #fff; transform: translateY(-2px); }

/* Modal */
#imageModal .modal-content { border: none; border-radius: 4px; overflow: hidden; }
#imageModal .btn-close { position: absolute; top: 12px; right: 12px; z-index: 10; background: rgba(255,255,255,0.9); border-radius: 50%; padding: 0.5rem; }

/* Video */
/* Yerleşim planı */
#yerlesim {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: var(--off-white);
}
#yerlesim img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.video-section video { width: 100%; display: block; }
