/* ============================================================
 * Paradise Sips — Base reset & shared keyframes
 * Brand tokens, body styling, buttons, cards live in tropical.css
 * ============================================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* Shared animation used by .section fade-in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(216, 239, 227, 0.4);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ffb627 0%, #f59e0b 100%);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
* {
  scrollbar-width: thin;
  scrollbar-color: #ffb627 rgba(216, 239, 227, 0.4);
}
