/* ===== Jungle Jim's Glass Theme Override ===== */

/* Page background enhancement */
body {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

/* Dark overlay for better contrast */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: -1;
}

/* Glass cards */
.card,
.social-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    transition: all 0.3s ease;
}

.card:hover,
.social-card:hover {
    transform: translateY(-6px) scale(1.02);
    background: rgba(255, 255, 255, 0.14);
}

/* Card titles */
.card h3,
.social-card h3 {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Social logo images */
.card img,
.social-card img {
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.6));
}

/* Footer sticky style */
footer {
    margin-top: auto;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

/* Buttons */
button,
a.button {
    background: linear-gradient(135deg, #ff7a00, #ffb347);
    color: #000;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    transition: all 0.25s ease;
}

button:hover,
a.button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.4);
}

/* Smooth fade in */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}