/*
 * Jan Roofer - Company Footer Styles
 * Version: 1.2.2
 */

/* --- Hlavní kontejner patičky --- */
.jan-roofer-footer-container {
    background-color: #ffffff;
    color: #333333;
    padding: 60px 40px 20px 40px;
    font-size: 16px;
    line-height: 1.6;
    border-top: 1px solid #eeeeee;
}

/* --- Třísloupcový layout --- */
.jr-footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 20px;
}

.jr-footer-col {
    flex: 1;
    min-width: 250px;
}

/* --- Stylování obsahu --- */
.jr-footer-col h4 {
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.95em;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.jr-footer-col p,
.jr-footer-col address {
    margin: 0;
    font-style: normal;
    color: #555555;
}

.jr-footer-col a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.jr-footer-col a:hover {
    color: #0056b3; /* Jemná modrá pro interakci */
    text-decoration: underline;
}

/* --- NOVÉ: Poznámka přes celou šířku --- */
.jr-footer-wide-note {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
    padding-top: 25px;
    border-top: 1px solid #eeeeee;
    color: #666666;
    font-size: 0.95em;
    line-height: 1.7;
}

.jr-footer-wide-note strong {
    color: #222222;
}

/* --- Tlačítko pro klientský portál (Světlý, decentní design) --- */
.jr-portal-button {
    display: inline-block;
    background-color: #f8f9fa; /* Velmi světle šedá */
    color: #333333;
    padding: 10px 22px;
    border: 1px solid #dddddd; /* Jemné ohraničení */
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
    margin-top: 15px;
    transition: all 0.2s ease-in-out;
}

.jr-portal-button:hover {
    background-color: #f0f0f0; /* Mírné ztmavnutí při najetí */
    border-color: #cccccc;
    color: #000000;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Velmi jemný stín */
}

/* --- Spodní lišta s copyrightem --- */
.jr-footer-bottom-bar {
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
    color: #888888;
    flex-wrap: wrap;
    gap: 15px;
}

.jr-footer-bottom-bar a {
    color: #888888;
}

.jr-footer-bottom-bar a:hover {
    color: #333333;
}

/* --- Responzivita --- */
@media (max-width: 768px) {
    .jan-roofer-footer-container {
        padding: 40px 20px;
    }

    .jr-footer-main,
    .jr-footer-bottom-bar,
    .jr-footer-wide-note {
        flex-direction: column;
        text-align: center;
    }

    .jr-footer-col {
        margin-bottom: 20px;
    }
}