/* Additional styles for Tawakkul e.V. website */

/* Custom button styles */
.btn-primary {
  display: inline-block;
  background-color: #0288d1;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #0056b3;
  text-decoration: none;
}

/* Custom list styles for specific pages */
.custom-list li {
  margin-bottom: 1rem;
  padding: 0.5rem;
  list-style-type: none;
}

.custom-list li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: #0288d1;
}

/* Bank details styling */
.bank-details {
  border-left: 5px solid #0288d1;
  padding-left: 10px;
  margin-top: 1rem;
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 0.25rem;
}

/* Event card styling */
.event-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive table */
.table-responsive {
  overflow-x: auto;
}

/* Quote styling */
blockquote.styled {
  border-left: 4px solid #0288d1;
  padding-left: 1rem;
  font-style: italic;
  margin: 1.5rem 0;
}

blockquote.styled cite {
  display: block;
  font-weight: bold;
  margin-top: 0.5rem;
  color: #0288d1;
}
