/* ===== Vell Coffee — sıcak kahve tonları ===== */
:root {
  --bg: #faf6ef;
  --bg-alt: #f1e7d8;
  --ink: #2b211a;
  --ink-soft: #5c4d40;
  --caramel: #a9714b;
  --caramel-dark: #8a5a39;
  --cream: #fffdf8;
  --line: #e4d7c3;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(43, 33, 26, .10);
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-script: 'Dancing Script', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1120px, 92%); margin-inline: auto; }

/* ===== Tipografi ===== */
.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--caramel);
  margin-bottom: .6rem;
}
.eyebrow.center { text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 2.2rem;
}
.section-title.left { text-align: left; }

/* ===== Butonlar ===== */
.btn {
  display: inline-block;
  padding: .85rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--caramel); color: #fff; box-shadow: 0 6px 18px rgba(169, 113, 75, .35); }
.btn-primary:hover { background: var(--caramel-dark); }
.btn-ghost { border: 2px solid rgba(255,255,255,.8); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-sm { padding: .55rem 1.2rem; font-size: .85rem; }
.btn-block { display: block; text-align: center; margin-top: 1.4rem; }

/* ===== Navbar ===== */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: .7rem;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 46px; width: auto; flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; font-weight: 600; font-size: .95rem; }
.nav-links a:not(.btn) { padding-block: .4rem; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.nav-links a:not(.btn):hover, .nav-links a.active { color: var(--caramel); border-color: var(--caramel); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; border-radius: 2px;
  background: var(--ink); margin-block: 5px; transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: flex; align-items: center;
  color: #fff;
  isolation: isolate;
}
.hero-bg, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg img { object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(30, 21, 14, .88) 0%, rgba(30, 21, 14, .55) 55%, rgba(30, 21, 14, .32) 100%);
}
.hero-bg { z-index: -1; }
.hero-content { padding-block: 6rem; max-width: 640px; margin-inline: auto; }
.hero .eyebrow { color: #e8c9a8; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 7vw, 4rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}
.hero h1 span { color: #e8c9a8; }
.hero-sub { font-size: clamp(1rem, 2.5vw, 1.15rem); color: #f3e9dd; max-width: 46ch; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  font-size: 1.3rem; opacity: .7; animation: bob 2s infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ===== Bölümler ===== */
.section { padding-block: 4.5rem; }
.section-alt { background: var(--bg-alt); }
.section-note { text-align: center; margin-top: 2.2rem; color: var(--ink-soft); font-weight: 600; }

/* ===== Kartlar ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.1rem 1.2rem 1.4rem; }
.card-body h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .4rem; }
.card-body p { font-size: .92rem; color: var(--ink-soft); }

/* ===== Hakkımızda ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.about-media { position: relative; }
.about-media img:first-child { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-media-small {
  position: absolute; right: -8%; bottom: -12%;
  width: 45%; border-radius: var(--radius);
  border: 6px solid var(--bg-alt);
  box-shadow: var(--shadow);
}
.about-text p { color: var(--ink-soft); margin-bottom: 1rem; }
.about-list { list-style: none; margin: 1.2rem 0 1.8rem; }
.about-list li { padding-left: 1.7rem; position: relative; margin-bottom: .55rem; font-weight: 600; }
.about-list li::before { content: "☕"; position: absolute; left: 0; }

/* ===== Yorumlar ===== */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.quote {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 4px 14px rgba(43, 33, 26, .05);
}
.quote p { font-style: italic; color: var(--ink-soft); margin-bottom: 1rem; }
.quote footer { font-weight: 700; font-size: .92rem; display: flex; justify-content: space-between; align-items: center; }
.stars { color: #d99a3d; letter-spacing: .1em; }
.review-src { font-size: .78rem; font-weight: 600; color: var(--ink-soft); opacity: .8; }
.google-badge {
  text-align: center;
  margin: -1.2rem 0 1.8rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.google-badge a { color: var(--caramel-dark); font-weight: 700; text-decoration: underline; }
.google-badge a:hover { color: var(--caramel); }

/* ===== Konum & İletişim ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
}
.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }
.map-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: center;
  text-decoration: none; cursor: pointer;
}
.map-overlay-hint {
  margin-bottom: 16px;
  background: rgba(43, 33, 26, .85); color: #fff;
  padding: .55rem 1.1rem; border-radius: 999px;
  font-size: .85rem; font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  transition: background .2s, transform .2s;
}
.map-overlay:hover .map-overlay-hint { background: var(--caramel); transform: translateY(-2px); }
.contact-info {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.info-block { margin-bottom: 1.3rem; }
.info-block h3 { font-family: var(--font-display); font-size: 1.02rem; margin-bottom: .25rem; color: var(--caramel-dark); }
.info-block p, .info-block a { color: var(--ink-soft); }
.info-block a:hover { color: var(--caramel); }
.socials { display: flex; gap: .8rem; margin-top: .4rem; }
.socials a {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-alt); color: var(--ink);
  transition: background .2s, color .2s, transform .2s;
}
.socials a:hover { background: var(--caramel); color: #fff; transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }

/* ===== Footer ===== */
.footer { background: #241b14; color: #cbb9a6; padding-block: 3rem 2rem; }
.footer-inner { display: grid; gap: 1.8rem; text-align: center; justify-items: center; }
.footer .brand-logo.light { height: 74px; width: auto; filter: invert(1); opacity: .92; }
.footer-tagline { font-size: .92rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; font-weight: 600; }
.footer-links a:hover { color: #e8c9a8; }
.footer-copy { font-size: .85rem; opacity: .8; }
.footer-copy a { text-decoration: underline; }

/* ===== Reveal animasyonu ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Mobil ===== */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: .5rem 4%;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav-links .nav-cta { margin-block: .9rem; text-align: center; }

  .about-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .about-media { margin-bottom: 2rem; }
  .about-media-small { right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-content { padding-block: 5rem 6rem; }
  .section { padding-block: 3.2rem; }
}
