/*
 * base.css
 * Reset, tipografia globale, classi utility generiche.
 */

/* ── Tipografia globale ─────────────────────────────── */
* {
    font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}
p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-align: center;
    color: #333;
    line-height: 28px;
}

/* ── Layout base ────────────────────────────────────── */
body {
    overflow-x: hidden;
}
.main-container {
    padding: 10px 15px;
}
section {
    float: left;
    width: 100%;
}
.full {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}
.center {
    float: left;
    width: 100%;
}
.cont {
    float: left;
    width: 100%;
    min-height: auto;
    background: #fff;
    position: relative;
    margin-top: 35px;
}

/* ── Colori di sfondo (classi utility) ──────────────── */
.deepskyblue  { background-image: url(../images/img/sfondi/sfondo01.jpg); }
.skyblue      { background-image: url(../images/img/sfondi/sfondo02.jpg); }
.skyblue02    { background-image: url(../images/img/sfondi/sfondo03.jpg); }
.skyblue03    { background-image: url(../images/img/sfondi/sfondo04.jpg); }
.darkerskyblue{ background-image: url(../images/img/sfondi/sfondo06.jpg); }
.color-yellow { color: #ffcb05; }

/* ── Liste generiche ────────────────────────────────── */
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ── Bottoni ────────────────────────────────────────── */
.btn {
    float: left;
    background: #d8302f;
    color: #fff;
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 50px;
    margin-top: 5px;
    font-weight: 500;
    transition: ease all 1s;
}
.btn:hover,
.btn:focus {
    background: #111;
    color: #fff !important;
    transition: ease all 1s;
}
.btn.btn-primary.btn-lg {
    float: left;
    background: #1c72ce;
    font-size: 15px;
    text-transform: uppercase;
    min-width: 160px;
    height: 50px;
    border-radius: 5px;
}
.btn.btn-primary.btn-lg:hover,
.btn.btn-primary.btn-lg:focus {
    background: #d8302f;
}
button.button {
    background: #1c72ce;
    color: #fff;
    border: none;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

/* ── Heading principale sezione ─────────────────────── */
h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
}
.p {
    padding-top: 125px;
    text-align: center;
}
.p a {
    text-decoration: underline;
}

/* ── Heading widget ─────────────────────────────────── */
.main-heading {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-bottom: 35px;
}
.main-heading p {
    color: #363636;
    line-height: normal;
    margin-top: 0;
}
section.main-heading h2 {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 25px;
    line-height: 21px;
    font-weight: 600;
    color: #222;
    padding: 0;
    margin: 0;
    position: relative;
}
section.main-heading h2::after {
    width: 50px;
    height: 4px;
    background: #d8302f;
    margin: 15px auto 0;
    display: block;
    position: relative;
    content: "";
}
.main-heading.sytle-2 h2 {
    position: relative;
    display: inline-block;
    padding: 0 20px;
    text-transform: capitalize;
    font-weight: 600;
    color: #111;
    line-height: 21px;
    font-size: 30px;
}
.main-heading.sytle-2 h2::before,
.main-heading.sytle-2 h2::after {
    display: none !important;
    content: none !important;
}
.main-heading.sytle-2 p {
    margin-top: 15px;
}
.main-heading-holder {
    text-align: center;
    padding-bottom: 0;
    padding-top: 30px;
    float: left;
    width: 100%;
}
.theme-padding.middle-bg {
    float: left;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../images/sport-mate.png);
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    box-shadow: 0 0 100px -80px rgba(0,0,0,.8);
    min-height: 515px;
}

/* ── Dark section ───────────────────────────────────── */
.dark-section {
    float: left;
    width: 100%;
    background: #000;
    margin-top: 50px;
    min-height: auto;
    padding: 50px 0;
    color: #fff;
}
section.main-heading .dark-section h2 {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 30px;
    line-height: 21px;
    font-weight: 600;
    color: #fff;
    padding: 0;
    margin: 0;
    position: relative;
}

/* ── Social icons (globali) ─────────────────────────── */
.social-icons {
    list-style: none;
    float: left;
    width: auto;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}
.social-icons li {
    float: left;
    margin: 0 15px 0 0;
}
.social-icons li a {
    height: 40px;
    width: 40px;
    background: #111979;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    float: left;
}
.social-icons li a:hover,
.social-icons li a:focus {
    border-color: #d8302f;
    background: #d8302f;
    color: #fff !important;
}
.social-icons.style-4 li a {
    height: 40px;
    width: 40px;
    background: none;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 100%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
}

/* ── About us ───────────────────────────────────────── */
.aboutus h3 {
    font-size: 22px;
    padding: 0;
    text-align: left;
    font-weight: 500;
    margin-bottom: 10px;
}
.icon-list {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    color: #363636;
    line-height: 28px;
}

/* ── Breadcrumb ─────────────────────────────────────── */
.breadcrumb {
    padding: 11px 0;
    margin-bottom: 0;
    list-style: none;
    background-color: transparent;
    border-radius: 0;
    border: none;
    color: #fff;
    float: right;
}
.breadcrumb li      { color: #fff; }
.breadcrumb li a    { color: #fff; }
.breadcrumb>.active { color: #d8302f; }

/* ── Inner page banner ──────────────────────────────── */
.inner-page-banner {
    float: left;
    width: 100%;
    min-height: 500px;
    background-image: url(../images/img/sfondi/sfondo10.webp); /* ======= Immagine sotto la NAVBAR in ogni pagina ==========*/
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.inner-information {
    float: left;
    width: 100%;
    margin-top: 250px;
    color: #fff;
    text-align: center;
}
.inner-information h3 {
    margin: 0;
    color: #fff;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
}
.inner-information h3::after {
    width: 50px;
    height: 5px;
    background: #ffcb05;
    margin: 0 auto;
    position: relative;
    padding: 0;
    content: "";
    display: block;
}
.inner-information-text {
    float: left;
    width: 100%;
    background: #111;
    color: #fff;
}
.inner-information-text h3 {
    color: #fff;
    margin: 0;
    padding: 10px 0;
    float: left;
    text-transform: uppercase;
}

/* ── Tabelle generiche ──────────────────────────────── */
.table {
    color: #111;
    margin-bottom: 15px;
    background: #fff;
}
.table th {
    color: #111;
    font-weight: 700;
    text-align: center !important;
    vertical-align: middle !important;
    padding: 14px 10px;
}
.table td {
    color: #111;
    vertical-align: middle !important;
    text-align: center !important;
    padding: 14px 10px;
}

/* ── Divisori sezione (a2-divider / a2-separator) ───── */
.a2-divider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 10px 0;
    width: 100%;
    text-align: center;
}
.a2-divider::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 50%;
    height: 2px;
    background: #e00000;
    transform: translateY(-50%);
    z-index: 1;
}
.a2-divider span {
    position: relative;
    z-index: 2;
    background: #0a1f44;
    padding: 5px 15px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}
.a2-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
    width: 100%;
}
.a2-separator::before,
.a2-separator::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0b9444);
}
.a2-separator::after {
    background: linear-gradient(90deg, #0b9444, transparent);
}
.a2-separator span {
    padding: 0 15px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    color: #0b9444;
    text-transform: uppercase;
    white-space: nowrap;
    background: #fff;
}

/* ── Section title ──────────────────────────────────── */
.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
}
