:root {
    --background-primary: #FFE4E6;
    --background-second: #FFCCD2;
    --text-dark: #333333;
    --theme-color: #E01280;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
    background-color: var(--background-primary);
    color: var(--text-dark);
    transition: background-color 0.3s ease, color 0.3s ease;
}
.section {
    padding: 80px 20px;
    text-align: center;
}

/* SPINNER */

.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none; /* Hidden by default */
}
.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top: 6px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* FOOTER */

.site-footer {
  background: black;
  color: #ccc;
  font-size: 0.85rem;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer a {
  color: var(--theme-color);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer a:hover {
  color: #fff;
}
.divider {
  color: #444;
}

@media (max-width: 768px) {
  .site-footer {
    display: none;
  }
}
