/* ============================================
   SUPPORT & SOCIAL SHARING COMPONENTS
   Non-intrusive, professional design
   ============================================ */

/* ====== Buy Me a Coffee Section ====== */
.support-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 32px;
  background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
  border: 2px solid #ffd700;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.support-content {
  text-align: center;
}

.support-icon {
  font-size: 48px;
  margin-bottom: 16px;
  animation: coffee-steam 2s ease-in-out infinite;
}

@keyframes coffee-steam {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.support-title {
  font-size: 24px;
  font-weight: 700;
  color: #8b4513;
  margin-bottom: 12px;
  font-family: "Charter", Georgia, serif;
}

.support-text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.support-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ffdd00 0%, #ffa500 100%);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.support-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 165, 0, 0.4);
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
}

.support-note {
  margin-top: 16px;
  font-size: 13px;
  color: #999;
  font-style: italic;
}

/* ====== Article Footer Support Card (Mobile/Bottom) ====== */
.support-card {
  background: linear-gradient(to bottom right, #ffffff, #fffdf0);
  border: 1px solid #e2e8f0;
  border-top: 4px solid #ffdd00;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 60px auto 40px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  max-width: 680px;
}

.support-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 700;
}

.support-card p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.btn-coffee {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ffdd00;
  color: #000000;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 221, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-coffee:hover {
  background: #ffea00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 221, 0, 0.4);
}

/* ====== Social Sharing Section ====== */
.social-sharing {
  max-width: 800px;
  margin: 40px auto;
  padding: 24px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.sharing-header {
  text-align: center;
  margin-bottom: 20px;
}

.sharing-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.sharing-subtitle {
  font-size: 14px;
  color: #666;
}

.sharing-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.share-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* LinkedIn */
.share-linkedin {
  background: #0077b5;
  color: white;
}

.share-linkedin:hover {
  background: #006399;
  border-color: #0077b5;
}

/* Twitter/X */
.share-twitter {
  background: #1da1f2;
  color: white;
}

.share-twitter:hover {
  background: #1a8cd8;
  border-color: #1da1f2;
}

/* Medium */
.share-medium {
  background: #000;
  color: white;
}

.share-medium:hover {
  background: #333;
  border-color: #000;
}

/* Copy Link */
.share-copy {
  background: #f0f0f0;
  color: #333;
  border: 2px solid #ddd;
}

.share-copy:hover {
  background: #e0e0e0;
  border-color: #999;
}

.share-copy.copied {
  background: #4caf50;
  color: white;
  border-color: #4caf50;
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  .support-section {
    margin: 40px 20px;
    padding: 24px;
  }

  .support-title {
    font-size: 20px;
  }

  .support-button {
    width: 100%;
    justify-content: center;
  }

  .sharing-buttons {
    flex-direction: column;
  }

  .share-button {
    width: 100%;
    justify-content: center;
  }
}

/* ====== Alternative: Minimal Footer Style ====== */
.support-footer {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  background: #f8f9fa;
  border-radius: 8px;
}

.support-footer p {
  margin-bottom: 16px;
  color: #666;
  font-size: 15px;
}

.support-footer-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #ffdd00;
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.support-footer-button:hover {
  background: #ffa500;
  transform: scale(1.05);
}

/* ====== Right Sidebar (Support) ====== */
.right-sidebar {
  position: fixed;
  top: 200px;
  right: calc(50% - 360px - 80px); /* Symmetric to left sidebar */
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 100;
}

@media (max-width: 1240px) {
  .right-sidebar {
    right: 20px;
  }
}

@media (max-width: 1024px) {
  .right-sidebar {
    display: none;
  }
}
