﻿/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--grigio-freddo);
    color: var(--testo);
    line-height: 1.6;
}

p {
    color: #2b3b4a;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

/* TITOLI */
h1, h2, h3 {
    font-weight: 800;
    color: var(--blu-scuro);
}
/* MODALE SCELTA SEDE */
#branchModal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

    /* CONTENITORE */
    #branchModal .branch-modal-content {
        background: white;
        padding: 40px 50px;
        border-radius: 18px;
        text-align: center;
        max-width: 420px;
        width: 90%;
    }

/* LOGO */
.branch-logo {
    width: 200px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* TITOLO */
#branchModal .branch-modal-content h2 {
    color: var(--blu-scuro);
    font-weight: 800;
    margin-bottom: 25px;
}

/* BOTTONI */
.branch-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.branch-btn {
    padding: 12px 25px;
    border-radius: 10px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    background: var(--blu-scuro);
    color: white;
    transition: 0.2s;
}

    .branch-btn:hover {
        background: var(--rosso-alba);
    }
