/* Genel reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Header */
header {
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  color: white;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.email {
  font-size: 16px;
  font-weight: normal;
  color: white;
}

/* Container */
.container {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* Box style */
.box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  transition: transform 0.6s ease; /* hover effect için */
  overflow: hidden;
}

/* Hover Zoom Effect */
.box:hover {
  transform: scale(1.05);
}

/* Placeholder background */
.left {
  background-image: url("slide2.jpg");
}
.right {
  background-image: url("slide1.jpg");
}


.content h2 {
  font-size: 32px;
  font-weight: bold;
}
.content p {
  margin-top: 10px;
  font-size: 18px;
}

.bottom-title {
  margin-top: 20px;
  font-size: 44px;
  font-weight: ;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .bottom-title {
    font-size: 20px;
  }
}

/* Responsive: Telefon */
@media (max-width: 600px) {
  .container {
    flex-direction: column;
  }

  .box {
    height: 50vh;
  }

  header {
    flex-direction: column;
    gap: 10px;
    top: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
  }

  .bottom-title {
    font-size: 18px;
  }
}


.btn-detaylar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border:1px solid #fff;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  margin-top:20px;
}

/* Sağdaki ok işareti */
.btn-detaylar span {
  font-size: 18px;
  transition: transform 0.3s ease; 
}
.btn-detaylar span:hover {
  color: #000;
}

/* Hover efekti */
.btn-detaylar:hover {
  transform: scale(1.05);
  background-color: #cddc39; /* yeşilimsi ton */
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  border:1px solid #cddc39; color: #000;
}

.btn-detaylar:hover span {
  transform: translateX(4px); /* ok sağa kayar */ 
}