/* Sayfa boyutları */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

/* Ana konteyner */
.intro-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Mobilde alt alta */
@media (max-width: 768px) {
  .intro-container {
    flex-direction: column;
  }
}

/* Panel düzeni */
.intro-panel {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  padding: 20px;
}

/* Arka plan renkleri */
.intro-left  { background-color: #1845BA; }
.intro-right { background-color: #000000; }

/* Hover efekti */
.intro-panel:hover {
  opacity: 0.85;
}

/* Logolar */
.logo {
  max-width: 60%;
  max-height: 60%;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}

/* Slogan görselleri */
.slogan-img {
  max-width: 70%;
  height: auto;
  margin-bottom: 24px;
}

/* Mobil slogan görsel ayarı */
@media (max-width: 768px) {
  .slogan-img {
    max-width: 80%;
  }
}

/* Ortak buton stili */
.btn,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 600;
  width: 220px;
  height: 50px;
  background: transparent;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border-radius: 30px;
  border: 2px solid currentColor;
}

/* Hover efekti */
.btn:hover {
  background: linear-gradient(90deg, rgba(249,217,118,0.08), rgba(222,155,28,0.08));
}

/* Sol panel (Akva Grup): beyaz yazı, beyaz çerçeve */
.intro-left .btn {
  color: #ffffff;
  border: 2px solid #ffffff;
}

/* Sağ panel (Akva Gold): altın yazı ve çerçeve */
.intro-right .btn {
  color: #fbc15f;
  border: 2px solid #fbc15f;
}
