/* Fusion Padel - Base */

@font-face {
  font-family: 'Vegos';
  src: url('../fonts/Vegos.woff2') format('woff2'), url('../fonts/Vegos.woff') format('woff');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Thunder';
  src: url('../fonts/Thunder.woff2') format('woff2'), url('../fonts/Thunder.woff') format('woff');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* must be on html AND body to prevent horizontal scroll on real mobile */
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  min-width: 0;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--color-lime);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 100;
  padding: var(--space-2) var(--space-4);
  background: var(--color-lime);
  color: var(--color-lime-text);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: top var(--duration) var(--ease);
}
.skip-link:focus { top: var(--space-4); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (min-width: 48em) {
  .section-title { font-size: var(--text-4xl); }
}
