/* File: css/TheLivingItaly_084130.css */
/* Main styles, CSS variables, and basic reset. */

/* --- CSS Variables --- */
:root {
    --TheLivingItaly-primary-color: #0D47A1;    /* Deep Blue */
    --TheLivingItaly-secondary-color: #FFC107; /* Lemon Yellow */
    --TheLivingItaly-light-color: #FFFFFF;     /* White */
    --TheLivingItaly-light-gray-color: #f5f5f5; /* Light Grey BG */
    --TheLivingItaly-dark-color: #212121;      /* Text Black */
    --TheLivingItaly-text-muted: #6c757d;      /* Muted Text */

    --TheLivingItaly-font-header: 'Montserrat', sans-serif;
    --TheLivingItaly-font-body: 'Lato', sans-serif;

    --TheLivingItaly-border-radius: 8px;
}

/* --- Basic Reset & Global Styles --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--TheLivingItaly-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--TheLivingItaly-dark-color);
    background-color: var(--TheLivingItaly-light-color);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    user-select: none; /* As per directive */
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--TheLivingItaly-font-header);
    font-weight: 700;
    line-height: 1.2;
    color: var(--TheLivingItaly-primary-color);
}

a {
    color: var(--TheLivingItaly-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--TheLivingItaly-secondary-color);
}

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

/* --- Utility Classes --- */
.TheLivingItaly-font-header {
    font-family: var(--TheLivingItaly-font-header);
}

.TheLivingItaly-font-body {
    font-family: var(--TheLivingItaly-font-body);
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.mb-5 { margin-bottom: 3rem; }
.text-center { text-align: center; }