/* Sadece ekran kadar görünen sabit arkaplan */
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* SADECE EKRAN KADAR */
  background: url("../images/background-boxring.jpg") no-repeat center center;
  background-size: cover;
  z-index: -2;
}

/* Siyah karartma */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* yine sadece ekran kadar */
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.7rem; 
  }
}



.hero h1 span {
  color: #ffcc00;
}

.hero h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: .7rem;
  line-height: 1.2;
  color: azure;
}

.hero p {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.7;
}

.hero-card {
  background-color: rgba(28, 28, 28, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 8px;
  /* max-width: 800px; */
  /* margin-top: 2rem; */
}





.contact-link {
  color: #ffcc00;
  font-weight: 500;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
  color: #ffd84d; /* hafif açılmış sarı */
}


