/* ===========================
   FOOTER
   =========================== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-secondary);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.08em;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.footer-nav a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-subtle);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-socials {
    display: flex;
    gap: 24px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.2s ease;
    opacity: 0.85;
    color: var(--text-primary);
}

.footer-social-icon:hover {
    opacity: 1;
    transform: scale(1.15);
}

.footer-social-icon svg,
.footer-social-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer-social-icon img[alt="iNaturalist"] {
    width: 40px;
    height: 40px;
}

.footer-copy {
    font-size: 0.8125rem;
    color: var(--text-subtle);
    opacity: 0.7;
}

/* ===========================
   DEVELOPER DEDICATION
   =========================== */
.dev-dedication {
    margin-top: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, background 0.3s ease;
}

[data-theme="light"] .dev-dedication {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dev-dedication:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .dev-dedication:hover {
    background: rgba(0, 0, 0, 0.04);
}

.dev-dedication-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-subtle);
    margin-bottom: 4px;
}

.dev-dedication-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-decoration: none;
    display: inline-block;
}

.animated-name {
    background: linear-gradient(
        to right,
        #ff3b30,
        #ff9500,
        #4cd964,
        #5ac8fa,
        #007aff,
        #5856d6,
        #ff2d55,
        #ff3b30
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.dev-dedication-links {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.dev-dedication-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.dev-dedication-link i {
    font-size: 14px;
}

.dev-dedication-link:hover {
    color: var(--accent);
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .dev-dedication-links {
        flex-direction: column;
        gap: 12px;
    }
}
