/* Reset/Temel */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

:root{
  --bg: #f7f7f8;
  --text: #222;
  --muted: #666;
  --brand: #f5c842;    /* altın sarısı */
  --brand-dark: #e0b03b;
  --ink: #0f0f12;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 14px;
}

body{
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(90deg, #f6d772, var(--brand));
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.brand{
  color: #321700;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .2px;
}

.top-nav a{
  color: #321700;
  text-decoration: none;
  margin-left: 18px;
  font-weight: 600;
  opacity: .9;
}
.top-nav a:hover{ opacity: 1; text-decoration: underline; }

/* Reklaam/Summary sütunu */
.ads{
  max-width: 1120px;
  margin: 32px auto;
  padding: 0 20px;
}
.ads h2{
  font-size: clamp(22px, 3.8vw, 36px);
  margin: 0 0 14px;
}

.ad-card{
  display: block;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  margin: 12px 0;
  color: var(--ink);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.ad-card:hover{ transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,.12); }

.ad-badge{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #6a4700;
  background: #ffe59c;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.ad-title{ font-weight: 700; }
.ad-text{ color: var(--muted); margin: 2px 0 8px; }
.ad-cta{ color: #0b63ce; font-weight: 600; }

/* HERO */
.hero{
  position: relative;
  margin: 22px auto 28px;
  max-width: 1120px;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;

  /* Foto + overlay  (görsel değiştirilebilir) */
  background:
    linear-gradient( rgba(0,0,0,.45), rgba(0,0,0,.45) ),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero__content{
  padding: clamp(24px, 6vw, 64px) 20px;
}

.hero h1{
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.15;
  margin: 0 0 10px;
  text-shadow: 0 3px 12px rgba(0,0,0,.35);
  font-weight: 800;
}

.lead{
  color: #f1f3f6;
  font-size: clamp(16px, 2.4vw, 20px);
  margin: 0 0 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.cta{
  display: inline-block;
  background: var(--brand);
  color: #1d1200;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(245,200,66,.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.cta:hover{ transform: translateY(-2px); background: var(--brand-dark); box-shadow: 0 12px 30px rgba(224,176,59,.45); }

.checks{
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  color: #e9edf3;
  font-size: 15px;
}
.checks li{ margin: 6px 0; }

/* Steps + Quick book */
.steps{
  max-width: 1120px;
  margin: 10px auto 40px;
  padding: 0 20px;
  text-align: center;
}
.steps h2{ font-size: clamp(22px, 3.8vw, 32px); margin-bottom: 8px; }
.steps ol{
  margin: 0 auto 16px;
  padding-left: 18px;
  text-align: left;
  max-width: 560px;
}

.quick-book{
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.quick-book label{
  display: grid;
  gap: 6px;
  text-align: left;
}
.quick-book select,
.quick-book input{
  height: 44px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 0 12px;
  background: #fff;
}
.quick-book button{
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: var(--brand);
  color: #1d1200;
  font-weight: 700;
  cursor: pointer;
}
.demo-note{ color: var(--muted); margin-top: 8px; }

@media (min-width: 720px){
  .quick-book{
    grid-template-columns: 2fr 1.3fr 1.3fr auto;
    align-items: end;
  }
}

/* Footer */
footer{
  margin-top: 40px;
  background: #1f1f23;
  color: #cfcfd6;
  padding: 18px 0;
}
footer a{ color: #e6e6ff; text-decoration: none; }
footer a:hover{ text-decoration: underline; }
