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

:root {
    --primario: #18233D;
    --secondario: #6595C2;
    --grigio: #EDEDED;
    --bianco: #fff;
	--blu: #4784F3;
}

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

body {
    margin: 0;
    min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

a {
    color: inherit;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

hgroup{
    display: flex;
    flex-direction: column;
    gap: .8em;
    margin-bottom: .3em;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

figure {
    margin: 0; line-height: 0; display: block; padding: 0; border: 0;
}


:root {
    /* Colori brand */
    --color-black: #000000;
    --color-dark: #5D5D64;
    --color-dark-gray: #1a1a1a;
    --color-gray: #999999;
    --color-gray-light: #e5e5e5;
    --color-white: #ffffff;
    --color-off-white: #f5f5f5;
    --color-accent: #73b1d1;
    --color-accent-hover: #5fa3c8;
    --color-meta: #c4a574;

    /* Tipografia */
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.5rem;
    --fs-xl: 2rem;
    --fs-2xl: 2.5rem;
    --fs-3xl: 3.5rem;

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Layout */
    --container-max: 1280px;
    --container-padding: clamp(1.25rem, 4vw, 3rem);
    --header-height: 5rem;
    --section-padding-y: clamp(3rem, 8vw, 6rem);

    /* Transizioni */
    --transition: 0.3s ease;
}


body {
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--fw-bold);
    line-height: 1.2;
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

.text-serif {
    font-family: var(--font-serif);
}

.text-muted {
    color: var(--color-gray);
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.text-meta {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-meta);
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
	background-color: var(--primario);
    color: var(--bianco);
	padding: 1em 2em;
}

.site_logo {
    width: 300px;
    height: auto;
    padding: 10px;
}
header nav ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
	gap: 1em;
}

