/* ============================================
   Aztekbet - Aztekbet Giriş Stylesheet
   Theme: Dark Green + Gold + Red Accent
   ============================================ */

:root {
  --bg-deep: #061a10;
  --bg-card: #0d2818;
  --bg-card-2: #143922;
  --bg-elev: #1a4d2e;
  --border: #2a6444;
  --gold: #d4af37;
  --gold-bright: #f5cd3a;
  --gold-soft: #b8941f;
  --red: #c0392b;
  --red-bright: #e74c3c;
  --text: #ecf3ee;
  --text-muted: #a8c0b0;
  --text-dim: #8aa395;
  --shadow: 0 10px 40px rgba(0,0,0,.45);
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(212,175,55,.10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(192,57,43,.10), transparent 60%),
    var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-bright); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); text-decoration: underline; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6,26,16,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700; font-size: 24px;
  color: var(--gold-bright);
  letter-spacing: .3px;
}
.brand img {
  width: 56px; height: 56px;
  border-radius: 12px;
  object-fit: cover;
  background: #0a3b1f;
  padding: 2px;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(212,175,55,.35), inset 0 0 0 1px rgba(255,255,255,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.brand:hover img { transform: scale(1.05); box-shadow: 0 6px 20px rgba(212,175,55,.55); }
.brand span { color: #fff; }

@media (max-width: 880px) {
  .brand img { width: 44px; height: 44px; border-radius: 10px; }
  .brand { font-size: 19px; gap: 10px; }
}

.nav { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.nav a {
  padding: 8px 14px; border-radius: 8px;
  color: var(--text); font-weight: 500; font-size: 15px;
}
.nav a:hover { background: var(--bg-card-2); color: var(--gold-bright); text-decoration: none; }
.nav a.active { color: var(--gold-bright); }

.btn {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1a0f00 !important;
  font-weight: 800; font-size: 15px;
  padding: 12px 22px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(212,175,55,.30);
  border: 1px solid var(--gold-soft);
  transition: transform .15s ease, box-shadow .2s;
  letter-spacing: .2px;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(212,175,55,.45); text-decoration: none; }
.btn-red {
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  color: #fff !important;
  border-color: #8a2218;
  box-shadow: 0 6px 18px rgba(192,57,43,.35);
}
.btn-red:hover { box-shadow: 0 10px 24px rgba(192,57,43,.55); }
.btn-lg { padding: 16px 32px; font-size: 17px; }

/* ===== Hero ===== */
.hero {
  padding: 60px 0 36px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -.5px;
  color: #fff;
  margin-bottom: 18px;
}
h1 .gold { color: var(--gold-bright); }
.hero p.lead {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 26px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,26,16,.55));
  pointer-events: none;
}

/* ===== Image Gallery (3 görsel) ===== */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 40px 0;
}
.image-gallery figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.image-gallery figure:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.55); }
.image-gallery img { aspect-ratio: 1/1; object-fit: cover; }
.image-gallery figcaption {
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: var(--bg-card-2);
}

/* ===== Content ===== */
.content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  margin: 32px 0;
  box-shadow: var(--shadow);
}
.content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  color: var(--gold-bright);
  margin: 32px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-elev);
  font-weight: 700;
}
.content h2:first-child { margin-top: 0; }
.content h3 {
  color: #fff;
  margin: 22px 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
}
.content p { margin-bottom: 16px; color: var(--text); }
.content ul, .content ol { margin: 10px 0 18px 22px; }
.content li { margin-bottom: 8px; color: var(--text); }
.content strong { color: var(--gold-bright); }
.content a { color: var(--gold-bright); border-bottom: 1px dashed var(--gold-soft); }
.content a:hover { color: #fff; }

/* ===== Table ===== */
.table-wrap { overflow-x: auto; margin: 18px 0 24px; border-radius: 10px; border: 1px solid var(--border); }
table {
  width: 100%; border-collapse: collapse; background: var(--bg-card-2);
  font-size: 15px;
}
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
th {
  background: var(--bg-elev);
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  font-size: 13px;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(212,175,55,.05); }

/* ===== CTA Box ===== */
.cta-box {
  background: linear-gradient(135deg, var(--bg-elev), var(--bg-card-2));
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 30px 0;
}
.cta-box h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--gold-bright);
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.cta-box p { color: var(--text-muted); margin-bottom: 18px; }

/* ===== FAQ ===== */
.faq { margin: 24px 0; }
.faq-item {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--gold-bright);
  position: relative;
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%); color: var(--gold);
  font-size: 22px; font-weight: 300; transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-answer { padding: 0 22px 20px; color: var(--text-muted); }

/* ===== Blog Cards ===== */
.blog-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.blog-card .thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-elev), var(--bg-card-2));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: 'Fraunces', serif; font-size: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 {
  font-family: 'Fraunces', serif; font-size: 1.25rem;
  color: #fff; margin-bottom: 10px; line-height: 1.3;
}
.blog-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 14px; flex: 1; }
.blog-card .meta {
  font-size: 13px; color: var(--text-dim);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}
.blog-card .read-more {
  align-self: flex-start; color: var(--gold-bright); font-weight: 700;
  border-bottom: 1px solid var(--gold-soft); padding-bottom: 2px;
}

/* ===== Article (blog post) ===== */
.article-meta {
  color: var(--text-dim); font-size: 14px; margin-bottom: 8px;
  letter-spacing: 1px; text-transform: uppercase;
}
.article-image {
  margin: 24px 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-card-2);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: 'Fraunces', serif;
  font-size: 1.1rem; padding: 24px; text-align: center;
}

/* ===== Footer ===== */
.site-footer {
  background: #03110a;
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
  margin-top: 48px;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.site-footer h4 {
  color: var(--gold-bright);
  font-family: 'Fraunces', serif;
  margin-bottom: 12px; font-size: 17px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--gold-bright); }
.copyright {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}

/* ===== AMP minimal styles supplement ===== */

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .image-gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .content { padding: 24px 20px; }
  .nav { gap: 0; }
  .nav a { padding: 6px 10px; font-size: 14px; }
  th, td { padding: 10px 12px; font-size: 14px; }
}
