/* Return to Home Button Styles */
.return-home {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--light-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    z-index: 999;
    text-decoration: none;
}

.return-home i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.return-home-text {
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.return-home:hover {
    background-color: var(--blue-accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.return-top {
    background-color: var(--blue-accent);
}

.home-page-hidden {
    display: none;
}

@media (max-width: 768px) {
    .return-home {
        bottom: 80px; /* Adjust for mobile nav */
        width: 50px;
        height: 50px;
    }
    
    .return-home i {
        font-size: 1.2rem;
        margin-bottom: 1px;
    }
    
    .return-home-text {
        font-size: 0.6rem;
    }
}