/*
  Amber Anatolian Cuisine - Tema ve Layout
  Renkler: #7F2400 (amber-primary), #4F2415 (amber-deep), #FFFDF8 (amber-cream)
*/

:root {
  --amber-primary: #7F2400;
  --amber-deep: #4F2415;
  --amber-cream: #FFFDF8;
  --text: #241815;
  --text-muted: rgba(36, 24, 21, 0.72);
  --border: rgba(36, 24, 21, 0.12);
  --surface: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Typografi: IvyMode ve Amifer gelene kadar geçici font stack */
html { font-size: 16px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--amber-cream);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto,
               Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--amber-primary); text-decoration: none; }
a:hover { text-decoration: none; }

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { width: 120px; height: auto; object-fit: contain; }
.brand-name {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--amber-deep);
}

.nav { display: flex; gap: 18px; align-items: center; }
.nav a { color: var(--text); }
.nav .btn { margin-left: 8px; }
.icon-link { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; color: var(--amber-deep); transition: background .2s ease, transform .2s ease; }
.icon-link:hover { background: rgba(127,36,0,0.06); transform: translateY(-1px); }
.icon { width: 20px; height: 20px; display: inline-block; }
.icon-img { width: 20px; height: 20px; display: inline-block; object-fit: contain; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: none; padding: 0; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); margin: 7px 0; }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--surface); }

.display {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
  line-height: 1.15;
  margin: 0 0 14px 0;
  color: var(--amber-deep);
}
.h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600; font-size: 1.8rem; margin: 0 0 10px 0;
  color: var(--amber-deep);
}
.h3 { font-weight: 600; font-size: 1.25rem; margin: 0 0 8px 0; }
.lead { font-size: 1.125rem; color: var(--text-muted); margin: 0 0 20px 0; }
.muted { color: var(--text-muted); }
.small { font-size: 0.875rem; }
.center { text-align: center; }

/* Hero */
.hero { padding-top: 100px; }
.hero-full { padding-top: 0; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: center; }
.hero-image { border-radius: 14px; box-shadow: var(--shadow); }
.hero-slider { position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.hero-slider .slides { position: relative; height: 420px; }
.hero-slider .slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; background-size: cover; background-position: center; }
.hero-slider .slide.is-active { opacity: 1; }
.hero-slider img { width: 100%; height: 420px; object-fit: cover; display: block; }

/* Full-bleed hero overrides */
.hero-full .hero-slider { border-radius: 0; box-shadow: none; }
.hero-full .hero-slider .slides { height: 100vh; }
.hero-overlay { position: absolute; inset: 0; display: grid; align-items: center; color: #fff; background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.2) 40%, rgba(0,0,0,.35) 100%); }
.hero-overlay .display { color: #fff; }
.hero-overlay .lead { color: rgba(255,255,255,.92); max-width: 680px; }
.hero-overlay .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.hero-overlay .btn-ghost:hover { background: rgba(255,255,255,.1); }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.35); color: #fff; border: none; width: 38px; height: 38px; border-radius: 999px; cursor: pointer; display: grid; place-items: center; }
.slider-btn:hover { background: rgba(0,0,0,.45); }
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
.dots { position: absolute; bottom: 16px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.dots button { width: 9px; height: 9px; border-radius: 999px; border: none; background: rgba(255,255,255,.6); cursor: pointer; }
.dots button.is-active { background: #fff; }
.cta-group { display: inline-flex; gap: 12px; align-items: center; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--border); transition: all .2s ease; font-weight: 600; }
.btn-primary { background: var(--amber-primary); color: #fff; border-color: var(--amber-primary); }
.btn-primary:hover { filter: brightness(0.95); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--amber-deep); }
.btn-ghost:hover { background: rgba(127,36,0,0.06); }

/* Two columns */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.media-frame { display: grid; }
.rounded { border-radius: 14px; }
.shadow { box-shadow: var(--shadow); }

/* Gallery */
.gallery-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item { overflow: hidden; border-radius: 10px; background: #f7f5f2; }
.gallery-item img { width: 100%; height: 230px; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* Contact */
.contact-list { list-style: none; padding: 0; margin: 0 0 18px 0; display: grid; gap: 10px; }
.contact-list .label { display: inline-block; width: 90px; color: var(--text-muted); }
.contact-list .value { font-weight: 600; }
.contact-list .address { color: var(--amber-deep); }
.map-card { background: var(--amber-cream); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); padding: 10px; }
.map-embed { aspect-ratio: 16/10; overflow: hidden; border-radius: 10px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Transport */
.transport { margin-top: 16px; }
.transport-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.transport .card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px; box-shadow: var(--shadow); }
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.badge { display: inline-flex; align-items: center; height: 26px; padding: 0 10px; border-radius: 999px; background: var(--amber-primary); color: #fff; font-weight: 700; font-size: 0.875rem; }
.badge-alt { background: var(--amber-deep); }
.bullets { list-style: none; padding: 0; margin: 8px 0 0 0; display: grid; gap: 6px; }
.bullets li { color: var(--text); }
.bullets li span { color: var(--text-muted); width: 90px; display: inline-block; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: rgba(255,255,255,0.6); backdrop-filter: blur(8px); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.footer-mark { width: 28px; height: 28px; margin-right: 10px; }
.footer-inner .left { display: inline-flex; align-items: center; gap: 10px; }
.social-link { font-weight: 600; }

/* Social icons */
.social-icons { display: inline-flex; gap: 10px; align-items: center; }
.social-icons .social-btn {
  width: 42px; height: 42px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--amber-deep); color: #fff; border: none;
  box-shadow: 0 6px 18px rgba(79,36,21,.25);
  transition: transform .2s ease, filter .2s ease;
}
.social-icons .social-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.social-icons .icon { width: 20px; height: 20px; color: #fff; }

/* Floating tabs (kulakçık) - galata.edu.tr benzeri */
.floating-tabs {
  position: fixed;
  right: 0;
  top: 38%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 200;
}
.floating-tabs .tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--amber-primary);
  color: #fff;
  border-radius: 999px 0 0 999px;
  box-shadow: 0 8px 24px rgba(127,36,0,.25);
  transition: transform .25s ease, filter .2s ease;
  transform: translateX(8px);
}
.floating-tabs .tab:hover { transform: translateX(-6px); filter: brightness(1.02); }
.floating-tabs .tab .icon { width: 22px; height: 22px; color: #fff; }
.floating-tabs .label { font-weight: 700; letter-spacing: .2px; }
.floating-tabs .tab.secondary { background: var(--amber-deep); box-shadow: 0 8px 24px rgba(79,36,21,.25); }

@media (max-width: 720px) {
  .floating-tabs { display: none; }
}

/* Responsive */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { position: fixed; inset: 60px 0 auto 0; background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--border); padding: 14px 4%; display: none; }
  .nav.open { display: flex; flex-direction: column; gap: 12px; }
  .nav-toggle { display: inline-block; }
  .hero-slider .slides, .hero-slider img { height: 260px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item img { height: 180px; }
  .transport-cards { grid-template-columns: 1fr; }
}


