/*
 * Theme Name:  Ammos Retreat
 * Theme URI:   https://ammos-kefalonia.com
 * Author:      Harmonia Digital
 * Author URI:  https://harmoniadigital.gr
 * Description: Custom classic theme for Ammos Retreat Kefalonia — airy, minimal, boutique.
 * Version:     1.0.0
 * License:     GPL-2.0-or-later
 * Text Domain: ammos
 */

@import url("assets/css/tokens.css");

/* ─── Reset & base ─────────────────────────────────────────────────────────── */

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--step-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── Headings ──────────────────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  margin-block: 0 0.5em;
  color: var(--text);
}

h1 { font-size: var(--step-hero); }
h2 { font-size: var(--step-h2); }
h3 { font-size: var(--step-h3); }
h4 { font-size: var(--step-body); }

/* ─── Links ─────────────────────────────────────────────────────────────────── */

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease;
}

a:hover, a:focus-visible {
  color: var(--accent-dk);
}

/* ─── Images & media ────────────────────────────────────────────────────────── */

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

/* ─── Layout utilities ──────────────────────────────────────────────────────── */

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

.section {
  padding-block: var(--section-y);
}

/* ─── Accessibility ─────────────────────────────────────────────────────────── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--step-small);
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 0.75rem;
  left: 0.75rem;
}
