/* =============================================
   MAG COFFEE - ANA STİL DOSYASI
   ============================================= */

/* ---------- Değişkenler ---------- */
:root {
  --brown-deep:  #000000;
  --brown-dark:  #0a0a0a;
  --brown-mid:   #141414;
  --brown-light: #1e1e1e;
  --gold:        #c0c0c0;
  --gold-light:  #e0e0e0;
  --gold-dark:   #999999;
  --cream:       #f5f5f5;
  --cream-dark:  #e8e8e8;
  --text-light:  #f0f0f0;
  --text-muted:  #888888;
  --white:       #ffffff;
  --font-serif:   'Playfair Display', serif;
  --font-elegant: 'Cormorant Garamond', serif;
  --font-sans:    'Montserrat', sans-serif;
}

/* ---------- Reset & Temel ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--brown-dark);
  overflow-x: hidden;
}
img { width: 100%; height: 100%; object-fit: cover; display: block; }
a { text-decoration: none; color: inherit; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 0 40px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between; height: 80px;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-light); transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  border: 1px solid var(--gold); color: var(--gold);
  padding: 8px 20px;
  transition: background 0.3s, color 0.3s;
}
.nav-links .nav-cta:hover { background: var(--gold); color: var(--brown-dark); }

.logo a { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.logo-img {
  height: 50px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.logo-main {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600;
  letter-spacing: 0.3em; color: var(--gold);
}
.logo-sub {
  font-family: var(--font-sans); font-size: 0.5rem; font-weight: 300;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--text-light); margin-top: 3px;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px; background: var(--text-light);
  transition: all 0.3s;
}
.mobile-menu {
  display: none; flex-direction: column; align-items: center; gap: 24px;
  padding: 28px 0; background: rgba(0, 0, 0, 0.98);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-sans); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .nav-cta {
  border: 1px solid var(--gold); color: var(--gold); padding: 10px 28px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; overflow: hidden;
  background-color: var(--brown-deep);
}
.hero-bg {
  position: absolute; top: 0; right: 0;
  width: 70%; height: 100%; object-fit: cover; object-position: center center;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.88) 42%,
    rgba(0, 0, 0, 0.5)  56%,
    rgba(0, 0, 0, 0.1)  68%,
    transparent         80%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding-left: 8%; max-width: 580px;
}
.hero-tagline {
  font-family: var(--font-elegant); font-size: 1rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 400; line-height: 1.12;
  color: var(--text-light); margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-divider {
  width: 56px; height: 1px; background: var(--gold); margin-bottom: 20px;
}
.hero-desc {
  font-size: 0.82rem; color: var(--text-muted);
  letter-spacing: 0.06em; line-height: 1.8; margin-bottom: 38px;
}
.btn-primary {
  display: inline-block; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 42px;
  border: 1px solid var(--gold); color: var(--gold);
  background: transparent;
  transition: background 0.3s, color 0.3s;
}
.btn-primary:hover { background: var(--gold); color: var(--brown-dark); }

.btn-outline {
  display: inline-block; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 14px 38px;
  border: 1px solid var(--brown-dark); color: var(--brown-dark);
  background: transparent;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--brown-dark); color: var(--cream); }

.scroll-down {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 2;
}
.scroll-down span {
  display: block; width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.7); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* =============================================
   BÖLÜM BAŞLIĞI (ortak)
   ============================================= */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  font-family: var(--font-sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: block;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--brown-dark); margin-bottom: 16px;
}
.section-header.light h2 { color: var(--text-light); }
.section-header.light .section-tag { color: var(--gold-light); }
.gold-line {
  width: 50px; height: 1px; background: var(--gold); margin: 0 auto;
}
.gold-line.left { margin: 0 0 28px; }

/* =============================================
   ÖZELLİKLER
   ============================================= */
.ozellikler { background: var(--brown-mid); padding: 80px 40px; }
.ozellikler-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1100px; margin: 0 auto;
  border: 1px solid rgba(192, 192, 192, 0.18);
}
.ozellik-card {
  text-align: center; padding: 64px 44px;
  border-right: 1px solid rgba(192, 192, 192, 0.18);
  transition: background 0.35s;
}
.ozellik-card:last-child { border-right: none; }
.ozellik-card:hover { background: rgba(192, 192, 192, 0.06); }
.ozellik-icon {
  width: 54px; height: 54px; margin: 0 auto 26px; color: var(--gold);
}
.ozellik-icon svg { width: 100%; height: 100%; }
.ozellik-card h3 {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400;
  color: var(--text-light); margin-bottom: 14px;
}
.ozellik-card p {
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.9;
  letter-spacing: 0.03em;
}

/* =============================================
   MENÜ
   ============================================= */
.menu-section {
  background: var(--cream) url('../assets/coffee_seed.png') center center / cover no-repeat fixed;
  padding: 100px 40px;
  position: relative;
}
.menu-section .section-header,
.menu-section .menu-grid,
.menu-section .sandvic-grid {
  position: relative;
  z-index: 1;
}
.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.menu-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.15);
}
.menu-img { height: 280px; overflow: hidden; }
.menu-img img { transition: transform 0.55s ease; }
.menu-card:hover .menu-img img { transform: scale(1.07); }
.menu-info {
  padding: 16px 20px;
  display: flex; justify-content: center; align-items: center;
}
.menu-name {
  font-family: var(--font-serif); font-size: 1rem; font-weight: 400;
  color: var(--brown-dark);
}
.menu-price {
  font-family: var(--font-sans); font-size: 0.85rem; font-weight: 500;
  color: var(--gold-dark);
}

.sandvic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

/* =============================================
   HAKKIMIZDA
   ============================================= */
.hakkimizda {
  background: url('../assets/coffee_seed.png') center center / cover no-repeat fixed;
  padding: 100px 40px;
}
.hakkimizda-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: 1100px; margin: 0 auto; align-items: center;
}
.hakkimizda-text {
  background: rgba(255, 255, 255, 0.86);
  padding: 52px 48px;
  border-radius: 6px;
}
.hakkimizda-img {
  background: rgba(255, 255, 255, 0.86);
  padding: 12px;
  border-radius: 6px;
  height: 520px;
  overflow: hidden;
}
.hakkimizda-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--brown-dark); margin-bottom: 16px;
}
.hakkimizda-text p {
  font-size: 0.84rem; line-height: 1.95; color: #555555; margin-bottom: 16px;
}
.hakkimizda-stats { display: flex; gap: 36px; margin: 36px 0; }
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-serif); font-size: 2rem;
  font-weight: 600; color: var(--gold-dark);
}
.stat-label {
  display: block; font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 4px;
}

/* =============================================
   YORUMLAR
   ============================================= */
.yorumlar { position: relative; padding: 100px 40px; overflow: hidden; }
.yorumlar-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}
.yorumlar-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.88); z-index: 1;
}
.yorumlar-content {
  position: relative; z-index: 2; max-width: 1100px; margin: 0 auto;
}
.yorumlar-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.yorum-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(192, 192, 192, 0.22);
  padding: 44px; border-radius: 4px;
  transition: background 0.35s;
}
.yorum-card:hover { background: rgba(255, 255, 255, 0.09); }
.yorum-card p {
  font-family: var(--font-elegant); font-size: 1.15rem; font-weight: 300;
  font-style: italic; color: var(--text-light); line-height: 1.85;
  margin-bottom: 22px;
}
.yorum-author {
  font-family: var(--font-sans); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
}

/* =============================================
   İLETİŞİM
   ============================================= */
.iletisim { background: var(--cream); padding: 100px 40px; }
.iletisim-inner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 80px; max-width: 1100px; margin: 0 auto;
}
.iletisim-bilgi { display: flex; flex-direction: column; gap: 32px; padding-top: 8px; }
.bilgi-item { display: flex; gap: 16px; align-items: flex-start; }
.bilgi-icon { font-size: 1.3rem; margin-top: 2px; }
.bilgi-item strong {
  display: block; font-family: var(--font-sans); font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 5px;
}
.bilgi-item p, .bilgi-item a {
  font-size: 0.84rem; color: #555555; line-height: 1.6;
}
.bilgi-item a:hover { color: var(--gold-dark); }

.iletisim-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.iletisim-form input,
.iletisim-form textarea {
  width: 100%; padding: 14px 16px;
  font-family: var(--font-sans); font-size: 0.8rem;
  background: var(--white); color: var(--brown-dark);
  border: 1px solid #cccccc; outline: none;
  transition: border-color 0.3s;
}
.iletisim-form input:focus,
.iletisim-form textarea:focus { border-color: var(--gold); }
.iletisim-form textarea { resize: vertical; min-height: 120px; }
.iletisim-form .btn-primary {
  align-self: flex-start;
  background: var(--brown-dark); color: var(--gold);
  border-color: var(--brown-dark);
}
.iletisim-form .btn-primary:hover { background: var(--gold); color: var(--brown-dark); border-color: var(--gold); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--brown-deep); padding: 64px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-logo {
  display: flex; flex-direction: column; align-items: center; margin-bottom: 14px;
}
.footer-logo-img {
  height: 60px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.footer-tagline {
  font-family: var(--font-elegant); font-size: 1rem; font-style: italic;
  color: var(--text-muted); margin-bottom: 28px;
}
.footer-links { display: flex; justify-content: center; gap: 36px; margin-bottom: 28px; }
.footer-links a {
  font-family: var(--font-sans); font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.68rem; color: rgba(255, 255, 255, 0.25); letter-spacing: 0.05em; }

/* =============================================
   ANİMASYONLAR
   ============================================= */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   MOBİL UYUM
   ============================================= */
@media (max-width: 700px) {
  .menu-grid, .sandvic-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-bg { width: 100%; }
  .hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 100%);
  }
  .hero-content { padding-left: 6%; padding-right: 6%; }

  .ozellikler-grid { grid-template-columns: 1fr; }
  .ozellik-card { border-right: none; border-bottom: 1px solid rgba(201,168,122,0.18); }
  .ozellik-card:last-child { border-bottom: none; }

  .hakkimizda-inner { grid-template-columns: 1fr; gap: 44px; }
  .hakkimizda-img { height: 320px; }

  .yorumlar-grid { grid-template-columns: 1fr; }

  .iletisim-inner { grid-template-columns: 1fr; gap: 44px; }
  .form-row { grid-template-columns: 1fr; }

  .hakkimizda-stats { gap: 24px; }
}

@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
  .ozellikler,
  .menu-section,
  .hakkimizda,
  .yorumlar,
  .iletisim { padding-left: 20px; padding-right: 20px; }
}
