/* ========================================
   Tzuzoo Rescue - Shared Styles
   ======================================== */

:root {
    /* Brand Colors from Reference */
    --primary-green: #7ED321;
    --secondary-green: #6BB517;
    --primary-purple: #8E44AD;
    --secondary-purple: #9B59B6;
    --accent-purple: #663399;
    --background-white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-medium: #555555;
    --text-light: #777777;
    --border-light: #E8E8E8;
    --shadow-light: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ─── Hero Social Icons (top-right) ─── */
.hero-social {
    position: absolute;
    top: 24px;
    right: 32px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    border: 2px solid rgba(255,255,255,0.35);
}

.hero-social a:hover {
    transform: scale(1.12);
    background: var(--primary-green);
    border-color: var(--primary-green);
}

@media (max-width: 768px) {
    .hero-social {
        top: 12px;
        right: 12px;
        gap: 8px;
    }
    .hero-social a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

/* ─── Footer Social Icons ─── */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.footer-social a:hover {
    transform: scale(1.1);
    background: var(--primary-green);
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}
