:root {
  --bg: #0c0805;
  --bg-soft: #1a0f0a;
  --bordo: #3a0d10;
  --bordo-soft: #571417;
  --surface: rgba(28, 16, 9, 0.55);
  --surface-strong: rgba(40, 22, 12, 0.72);
  --text: #f6e7ce;
  --muted: #c7a97e;
  --accent: #e6b23c;
  --accent-2: #b07d1e;
  --bulb: #ffd873;
  --border: rgba(230, 178, 60, 0.32);
  --border-strong: rgba(230, 178, 60, 0.6);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse at 50% -10%, rgba(230, 178, 60, 0.18), transparent 45%),
    radial-gradient(circle at 15% 25%, rgba(87, 20, 23, 0.45), transparent 40%),
    linear-gradient(160deg, var(--bg-soft), var(--bg) 55%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(230, 178, 60, 0.14), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(176, 125, 30, 0.12), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.2rem 0 2.5rem;
}

/* --- Süslü ampul çerçeve (logo çerçevesinden esinlenildi) --- */
.frame {
  position: relative;
  border: 2px solid var(--border-strong);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent 60%),
    var(--surface);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.5),
    inset 0 0 0 6px rgba(12, 8, 5, 0.6),
    inset 0 0 0 7px rgba(230, 178, 60, 0.25);
}

.frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--bulb) 0 1.6px, transparent 2px);
  background-size: 22px 22px;
  background-position: 0 0;
  -webkit-mask:
    linear-gradient(#000 0 0) top / 100% 3px no-repeat,
    linear-gradient(#000 0 0) bottom / 100% 3px no-repeat,
    linear-gradient(#000 0 0) left / 3px 100% no-repeat,
    linear-gradient(#000 0 0) right / 3px 100% no-repeat;
          mask:
    linear-gradient(#000 0 0) top / 100% 3px no-repeat,
    linear-gradient(#000 0 0) bottom / 100% 3px no-repeat,
    linear-gradient(#000 0 0) left / 3px 100% no-repeat,
    linear-gradient(#000 0 0) right / 3px 100% no-repeat;
  opacity: 0.9;
  filter: drop-shadow(0 0 3px rgba(255, 216, 115, 0.8));
}

/* --- Üst bar --- */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0 1.4rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand .brand-mark {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  object-fit: cover;
  object-position: 62% 45%;
  border: 1px solid var(--border-strong);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.brand strong {
  display: block;
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.brand small {
  color: var(--muted);
  display: block;
  margin-top: 0.25rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.ig-link svg { display: block; }
.ig-link::after { display: none; }

/* --- Logo afişi (banner) --- */
.hero-banner {
  display: block;
  margin: 0.4rem 0 2rem;
  padding: 12px;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* --- Marquee (ampullü) başlık efekti --- */
.marquee {
  font-family: 'Cinzel', 'Playfair Display', serif;
  text-transform: uppercase;
  color: var(--bulb);
  text-shadow:
    0 0 6px rgba(255, 216, 115, 0.9),
    0 0 18px rgba(230, 178, 60, 0.55),
    0 0 40px rgba(230, 178, 60, 0.3);
  animation: flicker 5s infinite;
}

@keyframes flicker {
  0%, 92%, 100% { opacity: 1; }
  93% { opacity: 0.72; }
  94% { opacity: 1; }
  96% { opacity: 0.85; }
}

/* --- Süslü ayraç --- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 0.4rem 0 1.2rem;
  color: var(--accent);
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: clamp(40px, 18vw, 160px);
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
}

.divider span { font-size: 0.9rem; letter-spacing: 0.2em; }

/* --- Hero --- */
.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 1.5rem;
  padding: 0 0 2.4rem;
  align-items: stretch;
}

.hero-copy, .hero-card, .panel, .contact-card, .map-card {
  position: relative;
}

.hero-copy {
  padding: 2.2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  margin: 0 0 0.9rem;
}

.hero h1 .marquee { display: inline; }

.hero p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #2a1704;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(230, 178, 60, 0.28);
}

.btn-primary:hover { box-shadow: 0 14px 32px rgba(230, 178, 60, 0.42); }

.btn-secondary {
  background: rgba(87, 20, 23, 0.35);
  border-color: var(--border);
  color: var(--text);
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.highlights li {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(230, 178, 60, 0.1);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  padding: 1.8rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -50px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(230, 178, 60, 0.32), transparent 70%);
  pointer-events: none;
}

.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin: 0 0 0.7rem;
  color: var(--accent);
}

.hero-card p { margin: 0 0 1.1rem; color: var(--muted); line-height: 1.7; }

/* --- Bilgi paneli --- */
.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.3rem;
  margin: 2rem 0 1.3rem;
}

.panel, .contact-card {
  padding: 1.6rem;
}

.panel h2, .contact-card h2 {
  font-family: 'Cinzel', 'Playfair Display', serif;
  letter-spacing: 0.06em;
  margin: 0 0 0.7rem;
  color: var(--accent);
}

.panel p, .contact-card p { color: var(--muted); line-height: 1.75; margin: 0; }

.panel.accent {
  background:
    linear-gradient(145deg, rgba(230, 178, 60, 0.14), rgba(87, 20, 23, 0.3)),
    var(--surface);
}

/* --- Konum / iletişim --- */
.location-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.3rem;
}

.map-card {
  overflow: hidden;
  padding: 8px;
}

.map-card iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 10px;
  display: block;
  filter: saturate(0.85) sepia(0.15);
}

.contact-card .contact-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 1.3rem;
}

.contact-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(230, 178, 60, 0.15);
  color: var(--muted);
}

.contact-list li strong { color: var(--text); }
.contact-list a:hover { color: var(--accent); }

footer {
  padding: 2rem 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

footer .ig-link { color: var(--accent); }
footer .ig-link:hover { color: var(--text); }

footer .marquee { font-size: 1rem; }

@media (max-width: 860px) {
  .hero, .info-grid, .location-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }
  .page-shell { width: min(100% - 1.2rem, 1200px); }
  .hero-copy, .hero-card, .panel, .contact-card { padding: 1.3rem; }
}
