/* =========================
   Genel Ayarlar
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   Header ve Logo
========================= */
header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  position: relative;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #1a237e;
}

.logo span {
  color: #616161;
}

/* =========================
   Menü
========================= */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1a237e;
}

/* Hamburger Buton */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1a237e;
}

/* =========================
   Hero
========================= */
.hero {
  background: linear-gradient(to right, #e0f2ff, #ffffff);
  padding: 60px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

/* CTA Butonu */
.cta-button {
  padding: 12px 24px;
  background-color: #1a237e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0d154c;
}

/* =========================
   Form
========================= */
.form-container {
  background-color: #fff;
  padding: 40px 20px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  border-radius: 10px;
}

.form-container label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  text-align: left;
}

.form-container input,
.form-container select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form-container button {
  padding: 12px 24px;
  background-color: #1a237e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-container button:hover {
  background-color: #0d154c;
}

#sonuc {
  margin-top: 20px;
  font-weight: bold;
  color: #1a237e;
}

/* =========================
   Promo Banner
========================= */
.promo-banner {
  background-color: #fffde7;
  padding: 30px 20px;
  margin: 30px 0;
}

.promo-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.promo-content img {
  max-width: 300px;
  border-radius: 8px;
}

.promo-text {
  max-width: 500px;
}

.promo-text h2 {
  color: #1a237e;
  margin-bottom: 15px;
}

.promo-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #1a237e;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

.reklam-etiketi {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

/* =========================
   Info
========================= */
.info {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.info h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.info p {
  font-size: 16px;
}

/* =========================
   Sticky Bar
========================= */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #f9fbe7;
  color: #333;
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  border-top: 1px solid #ccc;
  z-index: 9999;
}

.sticky-bar a {
  color: #1a237e;
  font-weight: 600;
  text-decoration: underline;
  margin-left: 10px;
}

.sticky-reklam-label {
  font-size: 11px;
  color: #777;
  margin-left: 10px;
}

/* =========================
   WhatsApp Butonu
========================= */
.whatsapp-button {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button img {
  width: 60px;
  height: 60px;
}

/* =========================
   Footer
========================= */
footer {
  background-color: #1a237e;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.6;
}

footer a {
  color: #ffeb3b; /* Link rengi (sarı) */
  font-weight: 600;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* =========================
   Yasal Uyarı Barı
========================= */
.legal-notice-bar {
  background: #f1f1f1;
  color: #333;
  font-size: 13px;
  padding: 10px 15px;
  text-align: center;
  border-top: 1px solid #ddd;
}

.legal-notice-bar a {
  color: #1a237e;
  font-weight: 600;
  text-decoration: underline;
}

/* =========================
   Responsive - Mobil Menü
========================= */
@media (max-width: 768px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: left;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px;
    color: #1a237e;
    background: #fff;
    border-bottom: 1px solid #eee;
    font-weight: 600;
  }

  .nav-links a:hover {
    background: #e3f2fd;
  }
}
/* =========================
   Canlı Döviz ve Altın Bölümü
   ========================= */
#canli-kurlar {
  text-align: center;
  margin: 40px 0;
  padding: 30px 10px;
  background: #f9fafc;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
#canli-kurlar h2 {
  font-size: 1.8em;
  color: #222;
  margin-bottom: 25px;
  font-weight: 600;
}
#kurlar {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
.kur-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px 25px;
  min-width: 150px;
  font-size: 18px;
  transition: all 0.3s ease;
}
.kur-card strong {
  color: #0077cc;
}
.kur-card:nth-child(3) strong {
  color: #d48806; /* Gram altın için altın sarısı ton */
}
.kur-card:hover {
  background: #eef5ff;
  border-color: #0077cc;
  transform: translateY(-3px);
}
