/* style.css */

/* Base */
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Headings */
h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  background-color: #ec4899;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #db2777;
}

/* Cards */
.card {
  background-color: #8A3C6D;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  color: white;
}
.card .address {
  color: #d1d5db;
  font-size: 0.875rem;
}

/* Footer */
footer {
  background-color: #000;
  text-align: center;
  padding: 3rem 1rem;
  border-top: 1px solid #374151;
}
footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
footer .social-icons a {
  color: white;
  transition: color 0.3s ease;
}
footer .social-icons a:hover {
  color: #ec4899;
}

/* Responsive */
@media (max-width: 640px) {
  h2 {
    font-size: 1.75rem;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .card {
    padding: 1rem;
  }
}
