/* -------------------------------
   VisitPiemonte – Style Theme
   ------------------------------- */

:root {
    --vp-primary: rgb(75, 48, 72); /* Pantone 518 C */
    --vp-accent: rgb(255, 88, 93); /* Pantone 178 C */
    --vp-highlight: rgb(119, 159, 181); /* Pantone 2206 C */
    --vp-gold: rgb(184, 157, 24); /* Pantone 457 C */
    --vp-sand: rgb(200, 130, 66); /* Pantone 722 C */
    --vp-light-bg: #f8f9fa;
    --vp-font: 'PT Serif', serif;
}

/* Base Layout */
body {
    font-family: var(--vp-font);
    font-size: 1rem;
    background-color: var(--vp-light-bg);
    color: #212529;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5 {
    color: var(--vp-primary);
    font-weight: bold;
    margin-bottom: 1rem;
}

a {
    color: var(--vp-accent);
    text-decoration: none;
}

    a:hover {
        color: var(--vp-primary);
        text-decoration: underline;
    }

/* Buttons */
.btn-primary {
    background-color: var(--vp-primary);
    border-color: var(--vp-primary);
}

    .btn-primary:hover {
        background-color: var(--vp-accent);
        border-color: var(--vp-accent);
    }

.btn-outline-primary {
    color: var(--vp-primary);
    border-color: var(--vp-primary);
}

    .btn-outline-primary:hover {
        background-color: var(--vp-primary);
        color: white;
    }

/* DevExtreme integration */
.dx-theme-material .dx-button {
    border-radius: 8px;
    font-family: var(--vp-font);
    font-weight: 500;
}

.dx-theme-material .dx-texteditor {
    font-family: var(--vp-font);
    border-radius: 6px;
}

.dx-theme-material .dx-datagrid {
    font-family: var(--vp-font);
}

.dx-theme-material .dx-toolbar .dx-toolbar-item .dx-button {
    background-color: var(--vp-highlight);
    border-color: var(--vp-highlight);
}

/* Forms */
form label {
    font-weight: 600;
    color: var(--vp-primary);
}

form input, form select, form textarea {
    border-radius: 6px;
}

/* Navbar adjustments (in caso usi ancora Bootstrap override) */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

    .navbar .nav-link {
        font-weight: 500;
    }

/* Spacing utilities */
.section-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #7b2e1d; /* Rosso mattone VisitPiemonte */
    font-family: "Segoe UI", sans-serif;
}



/* Footer (se necessario) */
footer {
    margin-top: 4rem;
    padding: 2rem 0;
    background-color: #eee;
    color: var(--vp-primary);
    text-align: center;
    font-size: 0.9rem;
}
.main-title {
    font-family: "Segoe UI", sans-serif;
    color: #444;
}
#faqAnswer {
    font-size: 1rem;
    padding: 1rem;
    border-left: 4px solid #7b2e1d;
    background-color: #f9f9f9;
    color: #333;
}
