/**
 * FOOTER STYLES
 * Style dla stopki strony
 * Zawiera: logo, linki, media społecznościowe, opcje silnika
 */

footer {
    box-sizing: border-box;
    position: relative;
    margin-top: 120px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    height: 100px;
    color: #939393;
}
/* 
 * TŁO STOPKI
 * Plik graficzny: footer-bg.png
 * 
 * Po podmianie grafiki z PSD, dostosuj:
 * - height: 606px; (wysokość nowej grafiki)
 * - background-position: center bottom; (lub inne jeśli potrzeba)
 */
footer:before {
    content: '';
    height: 606px; /* ⚠️ DOSTOSUJ do wysokości nowej grafiki */
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: -1;
    position: absolute;
    background-position: center bottom; /* ⚠️ DOSTOSUJ pozycję jeśli potrzeba */
    background-repeat: no-repeat;
    background-image: url(../../../images/greendark/footer-bg.png);
}
/* 
 * LOGO W STOPCE
 * Plik graficzny: logo-footer.png
 * 
 * Po podmianie grafiki z PSD, dostosuj:
 * - width: 254px; (szerokość nowej grafiki)
 * - height: 165px; (wysokość nowej grafiki)
 * - padding-top: 95px; (dostosuj pozycję tekstu jeśli potrzeba)
 */
footer .site-logo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../../../images/greendark/logo-footer.png);
    background-repeat: no-repeat;
    width: 254px; /* ⚠️ DOSTOSUJ do szerokości nowej grafiki */
    height: 165px; /* ⚠️ DOSTOSUJ do wysokości nowej grafiki */
    padding-top: 95px; /* ⚠️ DOSTOSUJ jeśli potrzeba */
    box-sizing: border-box;
    text-align: center;
}
footer .left {
    float: left;
    padding-top: 41px;
}
footer .right {
    text-align: right;
}
footer .right h1 {
    margin-top: 41px;
}
footer .engine h1 {
    margin-top: 0;
    margin-bottom: 0;
}
footer .up {
    position: absolute;
    height: 178px;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
}
footer .right h1 a {
    color: #fe6c00;
    font-weight: bold;
}
footer .right h1 a:hover {
    color: rgb(229, 128, 52);
}
footer .footer-table > div .inline-media {
    position: relative;
    margin-left: 5px;
}
footer .footer-table > div .inline-media > a {
    height: 32px;
    min-width: 32px;
    text-align: center;
    color: #fff;
    padding: 9px;
    border-radius: 3px;
    box-sizing: border-box;
    display: inline-block;
    margin-left: -4px;
    margin-right: 15px;
}
footer .footer-table > div .inline-media > a {
    transition: transform 0.3s ease-in-out;
}
footer .footer-table > div .inline-media > a:hover {
    z-index: 10!important;
    transform: scale(2);
}
footer .footer-table > div .inline-media > a.fb {
    background: #3d599b;
}
footer .footer-table > div .inline-media > a.tw {
    background: #00abee;
}
footer .footer-table > div .inline-media > a.gp {
    background: #dc422b;
}
footer .footer-table > div .inline-media > a.st {
    background: #222222;
}
footer .footer-table > div .inline-media > a.yt {
    background: #ff021e;
}
footer .engine-options {
    margin-bottom: 5px;
    display: none; /* Ukryj wybór języka i szablonu */
}
footer .engine-options > div {
    display: inline-block;
}
footer .engine-options > div select {
    margin-right: 30px;
    font-size: 9.75pt;
    color: rgb(123, 188, 11);
    cursor: pointer;
    padding: 10px 9px;
    background: #111210;
    max-width: 130px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
}
footer .engine-options > div select.selected {} footer .engine-options > div input[type=submit] {
    display: none;
}
footer a {
    color: #939393;
}
footer a:hover {
    color: #747272;
}
footer .engine h1,
footer .right h1 {
    font-size: 14px;
    font-weight: normal;
    color: #939393;
}
footer .theme h1 a {
    color: #f15921;
    font-weight: bold;
}
footer .theme h1 a:hover {
    color: #e27952;
}
footer .up .button {
    height: 50px;
    width: 50px;
    text-align: center;
    margin-top: 60px;
    box-sizing: border-box;
    cursor: pointer;
    font-family: fontawesome;
    color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 0px 20px;
    font-size: 25px;
    padding: 15px 0px;
    border-radius: 50%;
    border-bottom: 1px solid rgb(18, 68, 186);
    transition: color, background 0.3s ease-in-out;
    background: linear-gradient(rgb(45, 104, 193) 0%, rgb(25, 105, 225) 100%);
}
footer .up .button:hover {
    background: #1c2029;
}
footer .up .button:before {
    content: "\f077";
    font-size: 18px;
}

