/* General Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #fff;
}

/* Navbar */
.navbar {
  background: black;
}

.navbar a {
  color: white;
}

.logo-img {
  height: auto;
  max-width: 150px;
  object-fit: contain;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-weight: bold;
  font-size: 2rem;
}

.hero p {
  font-size: 1rem;
}

.billiard-img {
  max-width: 100%;
  height: auto;
}

/* Pricelist Section */
#pricelist {
  text-align: center;
}

.price-card {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.price {
  font-size: 24px;
  font-weight: bold;
  color: #ffcc00;
}

/* Contact Section */
.contact-card {
  background: #222;
  padding: 15px 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.contact-card i {
  font-size: 30px;
}

.contact-card:hover {
  background: #ffcc00;
  color: black;
}

/* Footer */
.footer {
  background: black;
  color: white;
  text-align: center;
  padding: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .contact-card {
    flex-direction: column;
  }
}
