/* ═══════════════════════════════════════════
   Ankara Çağ Restoran — Paylaşılan Stiller
   ═══════════════════════════════════════════ */

:root {
  --red:        #8B2635;
  --red-dark:   #5C1A24;
  --red-light:  #b03045;
  --gold:       #C9A227;
  --gold-light: #e8c84d;
  --cream:      #FAF6EF;
  --cream-dark: #EDE3D4;
  --dark:       #1A0D08;
  --dark-2:     #2D1810;
  --text:       #3D2B1F;
  --text-light: #7A6355;
  --white:      #ffffff;

  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Inter', system-ui, sans-serif;

  --nav-h:     72px;
  --r:         12px;
  --shadow:    0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.22);
  --ease:      .3s ease;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: var(--cream); line-height: 1.7; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.2; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--dark);
}

.section-title span { color: var(--red); }

.section-sub {
  margin-top: .8rem;
  color: var(--text-light);
  max-width: 52ch;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--ease);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,38,53,.35); }

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,.4); }

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--ease), box-shadow var(--ease);
}

.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 5vw;
}

.navbar.scrolled {
  background: rgba(26, 13, 8, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}

.navbar.solid {
  background: var(--dark);
}

.navbar.light {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}

.navbar.light .nav-links a {
  color: var(--text);
}

.navbar.light .nav-links a:hover,
.navbar.light .nav-links a.active {
  color: var(--red);
}

.navbar.light .nav-links a::after {
  background: var(--red);
}

.navbar.light.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 2px 24px rgba(0,0,0,.1);
}

.navbar.light .hamburger span {
  background: var(--dark);
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: color var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--gold);
  transition: right var(--ease);
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-cta {
  margin-left: 1.5rem;
  padding: .5rem 1.2rem;
  font-size: .8rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(26, 13, 8, .98);
  backdrop-filter: blur(16px);
  padding: 1.5rem 5vw 2rem;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,.08);
}

.mobile-menu a {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--ease);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
.mobile-menu .btn { align-self: flex-start; margin-top: .5rem; }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 5rem 5vw 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand .nav-logo { margin-bottom: 1.2rem; }

.footer-brand p {
  font-size: .88rem;
  line-height: 1.8;
  color: rgba(255,255,255,.5);
  max-width: 30ch;
  margin-bottom: 1.6rem;
}

.footer-col h4 {
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .65rem;
  transition: color var(--ease), gap var(--ease);
}

.footer-col a::before {
  content: '›';
  color: var(--red);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--ease);
}

.footer-col a:hover { color: rgba(255,255,255,.9); gap: .75rem; }
.footer-col a:hover::before { transform: translateX(2px); }

/* contact column — suppress arrow prefix */
.footer-col.footer-contact a::before { display: none; }

/* ── Footer contact items ── */
.fci {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.fci-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(139,38,53,.35);
}

.fci-icon svg { display: block; flex-shrink: 0; }

.fci-text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.fci-text span {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.fci-text p {
  display: block !important;
  font-size: .83rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  margin: 0;
}

.fci-text a {
  display: block !important;
  font-size: .83rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  margin: 0;
  gap: 0 !important;
}

.fci-text a:hover { color: var(--gold); }
.fci-text a::before { display: none !important; }

/* ── Footer socials (in brand col) ── */
.footer-socials {
  display: flex;
  gap: .65rem;
}

.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  transition: var(--ease);
  letter-spacing: 0;
}

.footer-socials a::before { display: none !important; }

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,162,39,.08);
}

/* ── Footer bottom ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.25);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom a {
  color: rgba(255,255,255,.35);
  transition: color var(--ease);
}

.footer-bottom a:hover { color: var(--gold); }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}
.divider-icon { color: var(--gold); font-size: .9rem; }

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(139,38,53,.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .25s ease;
  z-index: 900;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(139,38,53,.5);
}

.back-to-top svg { display: block; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
