/* Additional styles for Naamhoroscoop theme */

/* Override and extend base styles */

body {
  background-image:
    url('https://cdn.pixabay.com/photo/2017/08/30/12/45/starry-sky-2695569_1280.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  color: #e9e7ff;
}

.hero {
  background: rgba(110, 87, 165, 0.3);
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(217, 184, 108, 0.4);
  padding: 60px 20px 40px;
  margin-bottom: 40px;
}

.hero input[type="text"] {
  font-size: 1.3rem;
  font-family: "Playfair Display", serif;
  border: 2px solid #d9b86c;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: border-color 0.3s ease;
}

.hero input[type="text"]:focus {
  border-color: #fff;
  outline: none;
}

.cards .card img {
  border-bottom: 2px solid #d9b86c;
}

.cards .card .title {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  color: #d9b86c;
}

.btn {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 6px 18px rgba(217, 184, 108, 0.5);
}

.share .btn.fb {
  background-color: #3b5998;
  color: #fff;
  border-color: #3b5998;
}

.share .btn.wa {
  background-color: #25d366;
  color: #fff;
  border-color: #25d366;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .hero input[type="text"] {
    font-size: 1.1rem;
  }
  .btn {
    font-size: 0.9rem;
  }
}