/*
Theme Name: ANIRO
Theme URI:
Author: UDI
Author URI:
Description: Custom theme for ANIRO website with ACF Flexible Content sections.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: Private
Text Domain: aniro
*/

/* Design tokens moved to tokens.css (handle site-tokens) */

/* ========================================
   Reset & Base
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--aniro-font-body);
    color: var(--aniro-color-dark);
    background-color: var(--aniro-color-bg);
    line-height: 1.6;
}

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

a {
    color: var(--aniro-color-primary);
    text-decoration: none;
}

/* ========================================
   Container
   ======================================== */
.container {
    max-width: var(--aniro-container-width);
    margin: 0 auto;
    padding: 0 var(--aniro-container-padding);
}
