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

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --accent: #b8922a;
  --accent-light: #d4ac47;
  --text: #f0ede8;
  --text-muted: #5e5a56;
  --border: rgba(255, 255, 255, 0.07);
  --nav-h: 72px;
  --radius: 3px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}

/* ============================================================
   TİPOGRAFİ
   ============================================================ */
h1,
h2,
h3 {
  font-family: "Inter", serif;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-tag {
  display: block;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-header {
  margin-bottom: 60px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

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

/* ============================================================
   NAVİGASYON
   ============================================================ */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 999;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background var(--transition),
    border-color var(--transition);
}

#navbar.scrolled {
  background: rgba(12, 12, 12, 0.96);
  border-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav-logo-img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 44px;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.6);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(72px, 12vh, 140px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.15) 0%,
    rgba(10, 10, 10, 0.05) 35%,
    rgba(10, 10, 10, 0.55) 75%,
    rgba(10, 10, 10, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content h1 {
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}

.hero-content p {
  font-size: clamp(0.75rem, 1.4vw, 0.88rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.55);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(240, 237, 232, 0.4);
  animation: bounceDown 2.4s ease-in-out infinite;
  transition: color var(--transition);
}

.hero-scroll:hover {
  color: var(--accent);
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

/* ============================================================
   MARKALAR
   ============================================================ */
#brands {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.brands-label {
  text-align: center;
  margin-bottom: 44px;
}

.brands-label span {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brands-marquee {
  overflow: hidden;
  position: relative;
}

.brands-marquee::before,
.brands-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
  pointer-events: none;
}

.brands-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.brands-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.brands-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 52px;
  flex-shrink: 0;
}

.brand-item img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.3;
  transition: opacity var(--transition);
}

.brand-item:hover img {
  opacity: 0.75;
}

.brand-item span {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.28);
  white-space: nowrap;
  transition: color var(--transition);
}

.brand-item:hover span {
  color: rgba(240, 237, 232, 0.75);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   INSTAGRAM GALERİ
   ============================================================ */
#instagram {
  padding: 130px 0 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.instagram-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius);
  position: relative;
}

.instagram-item iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: var(--surface);
}

.instagram-placeholder-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  background: var(--surface);
}

.instagram-placeholder-item svg {
  opacity: 0.25;
}

.instagram-placeholder-item span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

.instagram-placeholder-item span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

/* ============================================================
   BİZİ TAKİP EDİN
   ============================================================ */
#follow {
  margin-top: 110px;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.follow-label {
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: rgba(240, 237, 232, 0.45);
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.social-icon-link:hover {
  transform: translateY(-4px);
}

/* Platform renkleri */
.social-icon-link[data-platform="instagram"]:hover {
  color: #e1306c;
  border-color: #e1306c;
  background: rgba(225, 48, 108, 0.08);
}

.social-icon-link[data-platform="facebook"]:hover {
  color: #1877f2;
  border-color: #1877f2;
  background: rgba(24, 119, 242, 0.08);
}

.social-icon-link[data-platform="tiktok"]:hover {
  color: #fff;
  border-color: #69c9d0;
  background: rgba(105, 201, 208, 0.08);
}

.social-icon-link[data-platform="youtube"]:hover {
  color: #ff0000;
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.08);
}

.social-icon-link[data-platform="twitter"]:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

/* Renkli başlangıç durumu */
.social-icon-link[data-platform="instagram"] {
  color: rgba(225, 48, 108, 0.5);
}
.social-icon-link[data-platform="facebook"] {
  color: rgba(24, 119, 242, 0.5);
}
.social-icon-link[data-platform="tiktok"] {
  color: rgba(105, 201, 208, 0.5);
}
.social-icon-link[data-platform="youtube"] {
  color: rgba(255, 0, 0, 0.5);
}
.social-icon-link[data-platform="twitter"] {
  color: rgba(255, 255, 255, 0.35);
}

.social-icon-link svg {
  width: 38px;
  height: 38px;
}

/* ============================================================
   RANDEVU
   ============================================================ */
#appointment {
  position: relative;
  padding: 160px clamp(24px, 5vw, 72px);
  text-align: center;
  overflow: hidden;
}

.appointment-bg {
  position: absolute;
  inset: 0;
  background: var(--surface);
}

/* Kullanıcı arka plan resmi ekleyebilir: assets/images/appointment-bg.jpg */
.appointment-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/appointment-bg.jpg") center / cover no-repeat;
  opacity: 0.07;
}

.appointment-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}

.appointment-content h2 {
  margin-bottom: 20px;
}

.appointment-content p {
  color: rgba(240, 237, 232, 0.55);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 52px;
}

.appointment-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 38px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================================
   İLETİŞİM
   ============================================================ */
#contact {
  padding: 130px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.contact-card:not(.no-hover):hover {
  border-color: rgba(184, 146, 42, 0.45);
  transform: translateX(5px);
}

.contact-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--accent);
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-value {
  font-size: 0.92rem;
  color: var(--text);
}

#map {
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

/* Leaflet koyu tema */
.leaflet-container {
  background: var(--surface);
}

.leaflet-popup-content-wrapper {
  background: var(--surface-2) !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
  padding: 0 !important;
}

.leaflet-popup-content {
  margin: 12px 16px !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.82rem !important;
  color: var(--text) !important;
}

.leaflet-popup-tip-container {
  display: none;
}

.leaflet-control-zoom a {
  background: var(--surface-2) !important;
  color: var(--text) !important;
  border-color: var(--border) !important;
}

.leaflet-control-zoom a:hover {
  background: var(--surface) !important;
  color: var(--accent) !important;
}

.leaflet-bar {
  border: 1px solid var(--border) !important;
  box-shadow: none !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-logo-link {
  display: inline-block;
  line-height: 0;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 84px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 260px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-col-title {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(240, 237, 232, 0.45);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  font-size: 0.77rem;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSİVE
   ============================================================ */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  #map {
    height: 380px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: #0a0a0a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 44px;
    z-index: 998;
  }

  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.18em;
  }
  .nav-toggle {
    display: flex;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .appointment-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
