/*
Theme Name: MNF Beauty
Theme URI:
Author: RJ
Author URI:
Description: Lekki, własny motyw WordPress dla salonów beauty i klinik kosmetologicznych.
Version: 0.1.0
Requires at least: 6.6
Requires PHP: 8.1
Text Domain: mnf-beauty
*/

/* =========================================================
   MNF BEAUTY
   Główny arkusz stylów motywu
   Autor: RJ
   ========================================================= */

:root {
    --mnf-color-bg: #f8f5f1;
    --mnf-color-surface: #ffffff;
    --mnf-color-text: #221f1c;
    --mnf-color-text-light: #6f6963;
    --mnf-color-accent: #b99470;
    --mnf-color-accent-dark: #927153;
    --mnf-color-border: #e7dfd7;

    --mnf-font-body: Arial, Helvetica, sans-serif;
    --mnf-font-heading: Georgia, "Times New Roman", serif;

    --mnf-container: 1240px;

    --mnf-radius-sm: 8px;
    --mnf-radius-md: 16px;
    --mnf-radius-lg: 28px;

    --mnf-space-xs: 8px;
    --mnf-space-sm: 16px;
    --mnf-space-md: 24px;
    --mnf-space-lg: 40px;
    --mnf-space-xl: 64px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--mnf-color-bg);
    color: var(--mnf-color-text);
    font-family: var(--mnf-font-body);
    font-size: 16px;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: var(--mnf-font-heading);
    font-weight: 400;
    line-height: 1.15;
}

.mnf-container {
    width: min(
        calc(100% - 40px),
        var(--mnf-container)
    );
    margin-inline: auto;
}

main {
    width: min(
        calc(100% - 40px),
        var(--mnf-container)
    );
    margin: 80px auto;
}

main h1 {
    margin-bottom: 12px;
    font-size: clamp(42px, 7vw, 76px);
}

main p {
    margin: 0;
    color: var(--mnf-color-text-light);
    font-size: 18px;
}
