/* ========================================
   ECOREG Site Styles
   Additional site-specific styles
   ======================================== */

/* Page Content */
.page-content {
  width: 100%;
  min-height: 300px;
  padding: var(--spacing-lg);
  background: var(--color-white);
  border-radius: 8px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .page-content {
    padding: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .page-content {
    padding: var(--spacing-sm);
  }
}

/* Loading State */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.scroll-top-btn {
  position: fixed;
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #14497c;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1100;
}

.scroll-top-btn--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  background: #0f3a64;
}

@media (max-width: 480px) {
  .scroll-top-btn {
    width: 42px;
    height: 42px;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
