/*
Theme Name: AlicanteExplora Theme
Author: Diego
Version: 4.0
*/

/* =========================
   VARIABLES
========================= */

:root {
  --ax-bg:#f5f7fb;
  --ax-card:#ffffff;
  --ax-text:#172033;
  --ax-muted:#657087;
  --ax-border:#e4e8f0;
  --ax-primary:#ff8a1c;
  --ax-primary-dark:#e87405;
  --ax-blue:#0b3a67;
  --ax-soft-blue:#eef6ff;
  --ax-green:#16a765;
  --ax-radius:22px;
  --ax-shadow:0 14px 40px rgba(15,35,70,.08);
  --ax-shadow-soft:0 8px 24px rgba(15,35,70,.06);
}

/* =========================
   RESET / BASE
========================= */

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--ax-bg);
  color: var(--ax-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

/* =========================
   ELEMENTOS BASE
========================= */

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* =========================
   CONTENEDOR GLOBAL
========================= */

.ax-container {
  max-width: 1180px;
  width: calc(100% - 32px);
  margin: 0 auto;
}

/* =========================
   UTILIDADES
========================= */

.ax-text-center {
  text-align: center;
}

.ax-hidden {
  display: none;
}

/* =========================
   RESPONSIVE BASE
========================= */

@media (max-width: 980px) {
  .ax-container {
    width: calc(100% - 28px);
  }
}

@media (max-width: 640px) {
  .ax-container {
    width: calc(100% - 22px);
  }
}