/* Reset & base */
body {
  margin: 0; padding: 0; background: #f9fafb; color: #333; font-family: Arial, sans-serif; padding-bottom: 56px; /* bottom nav height */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #2563eb; /* Tailwind blue-600 */
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #111827; /* Tailwind gray-900 */
}
p.price {
  font-size: 1.75rem;
  font-weight: 600;
  color: #dc2626; /* Tailwind red-600 */
  margin-top: 0; margin-bottom: 1.5rem;
}
.container {
  max-width: 1120px;
  margin: 40px auto 40px auto;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.image-wrapper {
  flex: 1 1 300px;
  max-width: 350px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.image-wrapper:hover {
  transform: scale(1.05);
}
.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #f0f0f0;
}
.content {
  flex: 2 1 400px;
  color: #4b5563; /* Tailwind gray-700 */
  line-height: 1.7;
  white-space: pre-wrap;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}
/* Donation button */
.donate-button {
  display: inline-block;
  background-color: #0070ba;
  color: #fff;
  padding: 14px 32px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: 0 8px 20px rgba(0,112,186,0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 2rem auto;
  text-align: center;
}
.donate-button:hover {
  background-color: #005c99;
  transform: scale(1.05);
}
/* Header desktop */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 9999;
}
header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  user-select: none;
}
nav.desktop-nav {
  display: flex;
  gap: 1.5rem;
}
nav.desktop-nav a {
  font-weight: 500;
  color: #4b5563;
  font-size: 1rem;
}
nav.desktop-nav a:hover {
  color: #2563eb;
}
/* Hide mobile nav on desktop */
@media (min-width: 768px) {
  nav.mobile-nav {
    display: none;
  }
}
/* Hide desktop nav on mobile */
@media (max-width: 767px) {
  nav.desktop-nav {
    display: none;
  }
  header {
    justify-content: center;
  }
  header .logo {
    font-size: 1.25rem;
  }
}

/* Mobile bottom nav */
nav.mobile-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  height: 56px;
  background: white;
  border-top: 1px solid #d1d5db;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
  z-index: 10000;
  font-size: 10px;
  color: #4b5563;
}
nav.mobile-nav a {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: inherit;
  transition: color 0.3s ease;
}
nav.mobile-nav a:hover {
  color: #2563eb;
}
nav.mobile-nav svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
