/* --- VARIABILI --- */
:root {
    --apedomus-orange: #f39200;
    --apedomus-purple: #6b2d91;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    margin: 0;
}

/* --- NAVBAR --- */
.logo-nav {
    height: 45px !important;
    width: auto;
}

/* --- CARD --- */
.custom-card {
    position: relative;
    margin-top: 50px;
    border-radius: 15px;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #ffffff;
    height: 100%;
}

.card-icon-top {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #ffffff;
    z-index: 10;
}

.card-icon-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

/* --- BOTTONI --- */
.btn-apedomus {
    font-weight: bold;
    padding: 12px 35px;
    border-radius: 6px;
    text-transform: uppercase;
    border: none;
    color: #ffffff !important;
}
.btn-purple-fill { background-color: var(--apedomus-purple); }
.btn-orange-fill { background-color: var(--apedomus-orange); }

/* --- FOOTER PROFESSIONALE (FONT RIDOTTO) --- */
footer {
    background-color: #1a1d21 !important;
    border-top: 4px solid var(--apedomus-orange);
    color: #ffffff !important;
    padding-top: 40px;
    padding-bottom: 20px;
}

/* Rimuove linee residue */
footer hr, 
footer .border-top {
    display: none !important;
}

/* Titoli delle colonne piccoli e in grassetto */
footer h6 {
    color: #ffffff !important;
    font-size: 0.8rem !important; /* Ridotto */
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Testi delle info (indirizzi, email, telefoni) molto piccoli */
footer p, footer li, footer span {
    color: #e0e0e0 !important;
    font-size: 0.72rem !important; /* Molto piccolo ed elegante */
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Testo del copyright in fondo */
.copyright-text {
    color: #b0b0b0 !important;
    font-size: 0.68rem !important; /* Il più piccolo di tutti */
    margin-top: 30px;
    display: block;
    opacity: 0.8;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .logo-nav { height: 35px !important; }
    footer { text-align: center; }
}