@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #f8f7f3, #d4af37);
  color: #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
}

/* Forklift Arka Plan */
.background {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.forklift {
  position: absolute;
  bottom: 10px;
  right: -200px;
  width: 180px;
  opacity: 0.25;
  animation: forkliftMove 25s linear infinite;
}

@keyframes forkliftMove {
  0% { right: -200px; transform: rotateY(0deg); }
  50% { right: calc(100% - 150px); transform: rotateY(0deg); }
  51% { transform: rotateY(180deg); }
  100% { right: -200px; transform: rotateY(180deg); }
}

/* İçerik Kutusu */
.container {
  max-width: 600px;
  background: #ffffffcc;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.logo {
  width: 130px;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.2rem;
  color: #2b2b2b;
  font-weight: 700;
}

h2 {
  font-size: 1.4rem;
  color: #d4af37;
  margin-top: 10px;
}

.desc {
  font-size: 1rem;
  color: #555;
  margin: 20px 0;
  line-height: 1.6;
}

/* Geri Sayım */
#countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

#countdown div {
  background: #2b2b2b;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  width: 65px;
}

#countdown span {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

#countdown small {
  font-size: 0.8rem;
}

/* İletişim */
.contact {
  font-size: 1.1rem;
  margin: 20px 0 10px;
}

.contact a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.contact a:hover {
  color: #d4af37;
}

/* Butonlar */
.buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.buttons a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  transition: 0.3s;
}

.whatsapp {
  background-color: #25D366;
}

.whatsapp:hover {
  background-color: #1ebe5d;
}

.email {
  background-color: #444;
}

.email:hover {
  background-color: #000;
}

footer {
  font-size: 0.9rem;
  color: #777;
  margin-top: 20px;
}

/* Mobil Uyumluluk */
@media (max-width: 600px) {
  .container {
    padding: 20px 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .desc {
    font-size: 0.95rem;
  }

  #countdown div {
    width: 55px;
    padding: 8px;
  }

  .forklift {
    width: 120px;
    opacity: 0.2;
  }
}
