/* BASE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background-color: #181818;
  color: #f5f5f5;
  line-height: 1.7;
  font-size: 16px;
}

/* HEADER */
header {
  text-align: center;
  padding: 50px 20px;
  background-color: #202020;
  border-bottom: 1px solid #2a2a2a;
}

header h1 {
  font-size: 48px;
  letter-spacing: 2px;
  font-weight: 700;
}

header h2 {
  font-size: 20px;
  color: #cfcfcf;
  margin-top: 8px;
}

/* SECTIONS */
section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

/* HEADINGS ONLY CENTERED */
section h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
}

/* SOCIAL BUTTONS */
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}

.social-buttons a {
  display: block;
  padding: 16px 0;
  background-color: #262626;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.social-buttons a:hover {
  background-color: #333333;
  transform: translateY(-1px);
}

/* PRODUCTS GRID */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.product {
  padding: 28px;
  background-color: #262626;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

.product:hover {
  background-color: #333333;
}

/* DONATE BUTTON */
.center-container {
  display: flex;
  justify-content: center; /* centers the Ko-Fi button */
}

button, .donate-button {
  display: inline-block;
  padding: 14px 26px;
  background-color: #111111; /* almost black */
  color: #ffffff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover, .donate-button:hover {
  background-color: #222222; /* slightly lighter dark gray */
}

/* CONTACT FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%; /* full width of container */
}

input,
textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #333333;
  background-color: #1f1f1f;
  color: #ffffff;
  font-size: 16px;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

textarea {
  min-height: 120px;
}

button {
  padding: 12px;
  background-color: #3b82f6;
  border: none;
  color: #ffffff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}

button:hover {
  background-color: #2563eb;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 50px 20px;
  background-color: #202020;
  color: #bdbdbd;
  font-size: 14px;
}

