/* ── GÖNÜLTAŞ – Shared Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --navy:   #0e1f38;
  --teal:   #1a6b72;
  --teal-l: #2a9da6;
  --gold:   #c4933a;
  --gold-l: #e6b55a;
  --cream:  #f7f4ef;
  --white:  #ffffff;
  --text:   #1a1a2e;
  --muted:  #6b7280;
  --border: #e2ddd6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); }

/* ── HEADER ── */
header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 9px;
  background: linear-gradient(135deg, var(--teal-l), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; font-weight: 700;
}
.logo-name  { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; }
.logo-sub   { font-size: .65rem; color: rgba(255,255,255,.45); letter-spacing: .1em; text-transform: uppercase; }

/* NAV */
nav { display: flex; align-items: center; gap: .25rem; }
nav a {
  color: rgba(255,255,255,.7); text-decoration: none;
  padding: .45rem .8rem; border-radius: 6px;
  font-size: .85rem; font-weight: 400; white-space: nowrap;
  transition: background .2s, color .2s;
}
nav a:hover, nav a.active { background: rgba(255,255,255,.1); color: #fff; }

/* LANG */
.lang-switcher { display: flex; gap: 5px; align-items: center; padding-left: 1rem; border-left: 1px solid rgba(255,255,255,.1); flex-shrink: 0; }
.lang-btn {
  display: flex; align-items: center; line-height: 0;
  border-radius: 3px; overflow: hidden;
  opacity: .45; transition: opacity .2s, transform .2s;
  border: 1px solid transparent; text-decoration: none;
}
.lang-btn:hover { opacity: .85; transform: scale(1.08); }
.lang-btn.active { opacity: 1; border-color: rgba(255,255,255,.35); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3560 55%, var(--teal) 100%);
  padding: 3rem 1.5rem 2.5rem; text-align: center;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,4vw,2.5rem); color: #fff; margin-bottom: .5rem; }
.page-hero p  { color: rgba(255,255,255,.6); font-size: .95rem; font-weight: 300; }

/* ── MAIN WRAP ── */
.main { max-width: 1200px; margin: 0 auto; padding: 2.5rem 1.5rem 4rem; }

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 14px rgba(14,31,56,.07);
  overflow: hidden;
}

/* ── FOOTER ── */
footer {
  background: var(--navy); color: rgba(255,255,255,.55);
  padding: 2.5rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between;
  padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: .82rem; margin-top: .7rem; max-width: 260px; line-height: 1.7; font-weight: 300; }
.footer-col h4  { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: .7rem; font-weight: 600; }
.footer-col a, .footer-col p { font-size: .83rem; color: rgba(255,255,255,.6); text-decoration: none; display: block; line-height: 2; font-weight: 300; transition: color .2s; }
.footer-col a:hover { color: var(--gold-l); }
.footer-bottom { max-width: 1200px; margin: 1rem auto 0; font-size: .72rem; text-align: center; }

/* ── BTN ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal); color: #fff; text-decoration: none;
  padding: .65rem 1.4rem; border-radius: 8px;
  font-size: .85rem; font-weight: 500; transition: background .2s; border: none; cursor: pointer;
}
.btn:hover { background: var(--navy); }
.btn-outline {
  background: none; border: 1.5px solid var(--teal); color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav a { padding: .4rem .55rem; font-size: .78rem; }
  .lang-switcher { padding-left: .6rem; }
}
@media (max-width: 560px) {
  nav { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 7px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.18); }
.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger span:nth-child(2) { width: 70%; }

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

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 99;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold-l); }
.mobile-nav a::after { content: '›'; font-size: 1.1rem; opacity: 0.4; }

/* Overlay backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: 68px;
  background: rgba(0,0,0,0.4);
  z-index: 98;
}
.nav-backdrop.open { display: block; }

@media (max-width: 640px) {
  nav { display: none; }
  .hamburger { display: flex; }
}
