/* ===== Universal Footer - lepet.sk ===== */
/* Tropical nature theme for parrot encyclopedia */

.lepet-footer {
    background: linear-gradient(160deg, #0f1f15 0%, #1a332a 50%, #152820 100%);
    color: #e0e8e2;
    padding: 50px 0 0;
    margin-top: 30px;
    position: relative;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.lepet-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2E7D32, #66BB6A, #FFD54F, #66BB6A, #2E7D32);
}

.lepet-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px 35px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
}

/* Top section: logo + social */
.lepet-footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(102, 187, 106, 0.15);
}

.lepet-footer-brand-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lepet-footer-brand-left img {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
    transition: transform 0.3s;
}

.lepet-footer-brand-left img:hover {
    transform: scale(1.08);
}

.lepet-footer-brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.lepet-footer-brand-text span {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(224, 232, 226, 0.6);
    letter-spacing: 0;
    margin-top: 2px;
}

.lepet-footer-social {
    display: flex;
    gap: 10px;
}

.lepet-footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 187, 106, 0.12);
    border: 1px solid rgba(102, 187, 106, 0.2);
    border-radius: 10px;
    color: #66BB6A;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.lepet-footer-social a:hover {
    background: #2E7D32;
    border-color: #2E7D32;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

/* Navigation columns */
.lepet-footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.lepet-footer-col h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #66BB6A;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(102, 187, 106, 0.2);
}

.lepet-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lepet-footer-col ul li {
    margin-bottom: 6px;
}

.lepet-footer-col ul li a {
    color: rgba(224, 232, 226, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s;
    display: inline-block;
    padding: 3px 0;
}

.lepet-footer-col ul li a:hover {
    color: #FFD54F;
}

.lepet-footer-col ul li a i {
    display: none;
}

/* Contact / address */
.lepet-footer-address {
    font-style: normal;
    color: rgba(224, 232, 226, 0.75);
    font-size: 0.9rem;
    line-height: 2;
}

.lepet-footer-address i {
    color: #66BB6A;
    width: 20px;
    margin-right: 8px;
    font-size: 0.85rem;
}

.lepet-footer-address a {
    color: rgba(224, 232, 226, 0.75);
    text-decoration: none;
    transition: color 0.25s;
}

.lepet-footer-address a:hover {
    color: #FFD54F;
}

/* Bottom bar */
.lepet-footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 25px;
    border-top: 1px solid rgba(102, 187, 106, 0.12);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(224, 232, 226, 0.4);
}

.lepet-footer-bottom a {
    color: #66BB6A;
    text-decoration: none;
    transition: color 0.25s;
}

.lepet-footer-bottom a:hover {
    color: #FFD54F;
}

/* Scroll to top */
.lepet-footer-scrolltop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: #1a332a;
    border: 2px solid #66BB6A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 1000;
    color: #66BB6A;
    font-size: 1.1rem;
}

.lepet-footer-scrolltop.visible {
    opacity: 1;
    transform: translateY(0);
}

.lepet-footer-scrolltop:hover {
    background: #2E7D32;
    border-color: #2E7D32;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .lepet-footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .lepet-footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .lepet-footer {
        padding: 35px 0 0;
    }

    .lepet-footer-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lepet-footer-scrolltop {
        bottom: 15px;
        right: 15px;
        width: 38px;
        height: 38px;
    }
}

/* ===== Cookie Consent ===== */
.cc_banner-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    font-family: 'Inter', system-ui, sans-serif;
}

.cc_banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    background: linear-gradient(160deg, #0f1f15 0%, #1a332a 80%);
    border-top: 3px solid #2E7D32;
    padding: 18px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cc_message {
    color: rgba(224, 232, 226, 0.85);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    max-width: 650px;
    order: 1;
}

.cc_more_info {
    color: #66BB6A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s;
}

.cc_more_info:hover {
    color: #FFD54F;
}

.cc_btn_accept_all {
    display: inline-block;
    background: #2E7D32;
    color: #fff;
    border: none;
    padding: 9px 24px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s, transform 0.15s;
    white-space: nowrap;
    order: 2;
}

.cc_btn_accept_all:hover {
    background: #388E3C;
    transform: translateY(-1px);
}

.cc_logo {
    display: none;
}

@media (max-width: 600px) {
    .cc_banner {
        flex-direction: column;
        text-align: center;
        padding: 14px 16px;
        gap: 12px;
    }

    .cc_message {
        font-size: 0.8rem;
    }

    .cc_btn_accept_all {
        width: 100%;
        text-align: center;
        padding: 11px 20px;
    }
}

/* ===== Share Buttons ===== */
.lp-share {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lp-share.visible {
    opacity: 1;
    pointer-events: auto;
}

.lp-share-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #1a332a;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    transition: background 0.2s, transform 0.3s;
}

.lp-share-toggle:hover {
    background: #2E7D32;
}

.lp-share-toggle.open {
    transform: rotate(90deg);
    background: #2E7D32;
}

.lp-share-panel {
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
}

.lp-share-panel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lp-share-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 50%;
    border: none;
    padding: 0;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lp-share-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.lp-share-x {
    font-weight: 700;
    font-size: 15px;
}

.lp-share-fb { background: #1877F2; }
.lp-share-tw { background: #000; }
.lp-share-wa { background: #25D366; }
.lp-share-pi { background: #E60023; }
.lp-share-rd { background: #FF4500; }
.lp-share-em { background: #1a332a; }
.lp-share-cp { background: #2E7D32; }

@media (max-width: 768px) {
    .lp-share {
        right: 14px;
        bottom: 65px;
    }

    .lp-share-toggle {
        width: 42px;
        height: 42px;
    }

    .lp-share-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .lp-share {
        right: 12px;
        bottom: 60px;
    }

    .lp-share-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lp-share-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}
